19 lines
No EOL
327 B
CSS
19 lines
No EOL
327 B
CSS
:root {
|
|
--accent: #ed333b;
|
|
--accent-bg: #bab3ab;
|
|
--bg: #f6f5f4;
|
|
}
|
|
|
|
/* this is because two_factor prints forms as_tables -_- */
|
|
table:not(.table) tr,
|
|
table:not(.table) th,
|
|
table:not(.table) td {
|
|
background-color: var(--bg);
|
|
border: 0;
|
|
}
|
|
|
|
|
|
/* hide "hidden" things in flexbox */
|
|
[hidden] {
|
|
display: none;
|
|
} |