Move media query to the end of stylesheet

This commit is contained in:
ChronosX88 2022-01-09 18:35:07 +03:00
parent 37ea2122b0
commit 28d7cbaf96
Signed by: ChronosXYZ
GPG Key ID: 085A69A82C8C511A

View File

@ -26,27 +26,6 @@ body {
font-family: PRegular;
}
@media only screen and (max-width: 768px) {
.content {
width: 100vw;
}
.address {
font-size: 160%;
}
.address-desc {
font-size: 140%;
}
.links {
margin-top: 10px;
font-size: 140%;
}
}
a {
color: beige;
}
@ -93,3 +72,24 @@ a:focus-visible {
.links > a {
margin: 10px;
}
@media only screen and (max-width: 768px) {
.content {
width: 60vw;
}
.address {
font-size: 160%;
}
.address-desc {
font-size: 140%;
}
.links {
margin-top: 10px;
font-size: 140%;
}
}