fix styling for mobile devices

This commit is contained in:
janis
2023-05-23 08:52:57 +02:00
parent 7872038aaf
commit 6f821af7c2

View File

@@ -57,25 +57,24 @@ body {
/* /*
SIZES SIZES
*/ */
.huge { .huge {
font-size: 500%;
}
.small-huge {
font-size: 400%; font-size: 400%;
} }
.small-huge {
font-size: 300%;
}
.biggest { .biggest {
font-size: 325%; font-size: 250%;
} }
.bigger { .bigger {
font-size: 200%; font-size: 175%;
} }
.medium-size { .medium-size {
font-size: 175%; font-size: 150%;
} }
.small-size { .small-size {
@@ -90,6 +89,49 @@ body {
font-size: 60%; font-size: 60%;
} }
.half-width {
width: 50%;
}
@media only screen and (min-width: 1000px) {
.huge {
font-size: 500%;
}
.small-huge {
font-size: 400%;
}
.biggest {
font-size: 325%;
}
.bigger {
font-size: 200%;
}
.medium-size {
font-size: 175%;
}
.small-size {
font-size: 90%;
}
.smaller-size {
font-size: 75%;
}
.smallest-size {
font-size: 60%;
}
.half-width {
width: 70%;
}
}
.very-small { .very-small {
font-size: 30%; font-size: 30%;
font-family: sans-serif; font-family: sans-serif;
@@ -102,8 +144,4 @@ body {
.no-margin { .no-margin {
margin: 0; margin: 0;
}
.half-width {
width: 50%;
} }