1
Fork 0
mirror of https://github.com/RGBCube/rgbcube.github.io synced 2025-07-24 23:47:42 +00:00

Add media queries to scale better

This commit is contained in:
RGBCube 2023-12-19 19:06:47 +03:00
parent b58a28342f
commit afd2c3634c
No known key found for this signature in database

View file

@ -16,6 +16,18 @@ html {
font-size: 450%; font-size: 450%;
} }
@media screen and (max-width: 400px) {
html {
font-size: 200%;
}
}
@media screen and (max-width: 800px) and (min-width: 400px) {
html {
font-size: 300%;
}
}
a { a {
color: #000000; color: #000000;
text-decoration-line: none; text-decoration-line: none;