ssg/index.css

20 lines
315 B
CSS
Raw Permalink Normal View History

2023-11-25 08:12:52 -05:00
:root {
--text-color: #f7f7f7;
--bg-color: #19232f;
}
@media (prefers-color-scheme: light) {
:root {
--text-color: #222430;
--bg-color: #f7f7f7;
}
}
@media only screen and (min-width: 768px) {
.container {
display: grid;
grid-template-columns: 2.75fr 1.25fr;
margin-top: 2rem;
}
}