website/custom.css

49 lines
1.5 KiB
CSS

.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;
}