1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-27 10:18:27 -04:00
jarv.is/components/Layout.module.css
Jake Jarvis 41d2b8c64b
scss ➡️ vanilla css (#727)
* scss isn't worth the technical/mental overhead anymore

* try to translate my old Hugo pygments themes

* update lockfile

* consolidate .hljs classes
2022-01-07 16:17:14 -05:00

19 lines
259 B
CSS

.main {
width: 100%;
padding: 1.5em;
color: var(--text);
background-color: var(--background-inner);
}
.container {
max-width: 865px;
margin: 0 auto;
display: block;
}
@media screen and (max-width: 768px) {
.main {
padding: 1.25em;
}
}