abtmtr-v4/views/styles/style.css

19 lines
358 B
CSS
Raw Normal View History

2024-02-02 16:20:25 +00:00
@import url("./myapp.css");
2024-01-30 17:23:45 +00:00
2024-02-29 06:07:29 +00:00
html:not(.base) {
2024-01-30 17:23:45 +00:00
background: url("/assets/bg.jpg");
background-position: center;
background-size: cover;
background-attachment: fixed;
2024-02-29 06:07:29 +00:00
}
2024-01-31 02:33:58 +00:00
:root {
--background-color: hsla(var(--base-color), 15%, 0.9);
}
@media (prefers-color-scheme: light) {
:root {
--background-color: hsla(var(--base-color), 80%, 0.9);
}
2024-01-30 17:23:45 +00:00
}