araozu.dev/style.css

35 lines
484 B
CSS
Raw Normal View History

2023-11-18 01:52:14 +00:00
@tailwind base;
@tailwind components;
@tailwind utilities;
2023-11-24 03:22:27 +00:00
:root {
--c-bg: #191a1d;
--c-on-bg: white;
}
@media (prefers-color-scheme: light) {
:root {
--c-bg: white;
--c-on-bg: black;
}
}
html {
font-size: 20px;
}
body {
background-color: var(--c-bg);
color: var(--c-on-bg);
font-family: 'Fira Mono', monospace;
}
.scroll-container {
scroll-snap-type: y mandatory;
}
.scroll-container > div {
scroll-snap-align: start;
}