50 lines
959 B
CSS
50 lines
959 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-purple {
|
|
background-color: #432257;
|
|
}
|
|
|
|
@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;
|
|
} |