Increase font size a bit on mobile

This commit is contained in:
askiiart 2023-08-28 09:30:40 -05:00
parent 254d3922c6
commit 9f05c40fa4
No known key found for this signature in database
GPG key ID: 66BA0F77DCABF974

View file

@ -23,12 +23,6 @@ h3 {
line-height: 1.2 line-height: 1.2
} }
@media print {
body {
max-width: none
}
}
code { code {
background: #202020 background: #202020
} }
@ -40,4 +34,31 @@ pre {
wrap { wrap {
word-wrap: break-word word-wrap: break-word
}
@media (max-device-width: 1200px) {
h1 {
line-height: 1.2;
font-size: 40px;
}
h2 {
line-height: 1.2;
font-size: 30px;
}
body {
font-size: 20px;
}
pre,
code {
font-size: 16px;
}
}
@media print {
body {
max-width: none
}
} }