rendered version of b870725 (use libre-chip mirror for CI actions, 2025-06-24)

This commit is contained in:
CI 2025-06-24 22:57:35 +00:00
commit 1a8ebeb481
57 changed files with 19115 additions and 0 deletions

49
src/custom.css Normal file
View file

@ -0,0 +1,49 @@
.subscribe_list_buttons {
gap: .5rem !important;
flex-wrap: wrap !important;
flex-direction: column !important;
align-items: center !important;
display: flex !important;
padding: 1rem !important;
border: solid 1px !important;
border-radius: 0.5rem !important;
border-color: var(--theme-popup-border) !important;
}
.subscribe_list_buttons a {
color: var(--fg) !important;
cursor: pointer !important;
text-align: center !important;
min-height: 1em !important;
margin: 0 0.25em 0 0 !important;
padding: 0.75em 1.5em !important;
text-decoration: none !important;
background: var(--table-header-bg) !important;
border: solid 1px !important;
border-radius: 0.5rem !important;
border-color: var(--theme-popup-border) !important;
width: 50%;
}
.subscribe_list_buttons a.subscribe_list_delete_account {
color: var(--fg) !important;
cursor: pointer !important;
text-align: center !important;
min-height: 1em !important;
margin: 0 0.25em 0 0 !important;
padding: 0.75em 1.5em !important;
text-decoration: none !important;
background: var(--table-header-bg) !important;
border: solid 3px !important;
border-radius: 0.5rem !important;
border-color: var(--warning-border) !important;
width: 50%;
}
.subscribe_list_buttons a:active {
background: var(--theme-hover) !important;
}
.subscribe_list_buttons a:hover {
background: var(--theme-hover) !important;
}