Files
11ty-blog/wwwroot/css/site.mobile.css
Tommy Parnell 68dbc23793 ok it works
2023-11-06 18:14:03 -05:00

36 lines
522 B
CSS

@media screen and (max-width: 768px) {
h1 {
font-size: 2.6rem;
}
h2 {
font-size: 2.4rem;
}
h3 {
font-size: 2.2rem;
}
h4 {
font-size: 2rem;
}
h5 {
font-size: 1.8rem;
}
.rootbox {
display: grid;
grid-template-areas: "a" "c";
grid-template-rows: 3.5rem minmax(calc(100vh - 3.5rem), auto);
grid-template-columns: auto;
}
.navBar {
position: fixed;
width: 100vw;
overflow: scroll;
}
.main-content-wrap {
max-width: calc(100vw - 4rem);
}
}