fix css on other devices

This commit is contained in:
askiiart 2024-11-20 08:44:44 -06:00
parent acfbf0bc88
commit 7bbe3d807b
Signed by untrusted user who does not match committer: askiiart
GPG key ID: EA85979611654C30

View file

@ -82,28 +82,6 @@ code {
.force-word-wrap pre code { .force-word-wrap pre code {
white-space: normal; white-space: normal;
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;
}
}
@media print {
body {
max-width: none
}
} }
footer { footer {
@ -148,3 +126,25 @@ img {
background-color: #047baa; background-color: #047baa;
color: #fff; color: #fff;
} }
@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;
}
}
@media print {
body {
max-width: none
}
}