Files
2024-05-19 13:15:53 +10:00

51 lines
974 B
CSS

:root {
/* Dark theme */
--dark-background: #fafafa;
--dark-foregeound: #808080;
/* Light theme */
--light-background: #fafafa;
--light-foregeound: #808080;
/* Defaults */
--current-background: var(--light-background);
--current-foreground: var(--light-foregeound);
}
@media (prefers-color-scheme: dark) {
:root {
--current-background: var(--dark-background);
--current-foreground: var(--dark-foregeound);
}
}
body {
background-color: var(--current-background);
color: var(--current-foreground);
}
html {
font-size: 14px;
}
.bg-blue {
background-color: #1c8098;
}
@media (min-width: 768px) {
html {
font-size: 16px;
}
}
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}
html {
position: relative;
min-height: 100%;
}
body {
margin-bottom: 60px;
}