This repository has been archived on 2023-08-02. You can view files and clone it, but cannot push or open issues or pull requests.
qwik-website/styles/scaling.css

71 lines
1.2 KiB
CSS
Raw Normal View History

2021-07-01 22:53:18 +02:00
/*
THIS ALL JUST SCALES THE FONT SO THAT EVERYTHING LOOKS NICE ON ALL SCREENS B)
*/
@media screen and (min-width: 1px) {
:root {
2021-07-25 23:44:54 +02:00
font-size: 12px;
2021-07-01 22:53:18 +02:00
}
}
@media screen and (min-width: 300px) {
:root {
2021-07-25 23:44:54 +02:00
font-size: 13pt;
2021-07-01 22:53:18 +02:00
}
}
@media screen and (min-width: 400px) {
:root {
2021-07-25 23:44:54 +02:00
font-size: 14pt;
2021-07-01 22:53:18 +02:00
}
}
@media screen and (min-width: 500px) {
:root {
2021-07-25 23:44:54 +02:00
font-size: 15pt;
2021-07-01 22:53:18 +02:00
}
}
@media screen and (min-width: 600px) {
:root {
2021-07-25 23:44:54 +02:00
font-size: 16pt;
2021-07-01 22:53:18 +02:00
}
}
@media screen and (min-width: 700px) {
:root {
2021-07-25 23:44:54 +02:00
font-size: 17pt;
2021-07-01 22:53:18 +02:00
}
}
@media screen and (min-width: 802px) {
:root {
2021-07-25 23:44:54 +02:00
font-size: 12pt;
2021-07-01 22:53:18 +02:00
}
}
@media screen and (min-width: 1000px) {
:root {
2021-07-25 23:44:54 +02:00
font-size: 13pt;
2021-07-01 22:53:18 +02:00
}
}
@media screen and (min-width: 1200px) {
:root {
2021-07-25 23:44:54 +02:00
font-size: 14pt;
2021-07-01 22:53:18 +02:00
}
}
@media screen and (min-width: 1500px) {
:root {
2021-07-25 23:44:54 +02:00
font-size: 15pt;
2021-07-01 22:53:18 +02:00
}
}
@media screen and (min-width: 1800px) {
:root {
2021-07-25 23:44:54 +02:00
font-size: 16pt;
2021-07-01 22:53:18 +02:00
}
}
@media screen and (min-width: 2500px) {
:root {
2021-07-25 23:44:54 +02:00
font-size: 17pt;
2021-07-01 22:53:18 +02:00
}
}
@media screen and (min-width: 3000px) {
:root {
2021-07-25 23:44:54 +02:00
font-size: 19pt;
2021-07-01 22:53:18 +02:00
}
2021-07-25 23:44:54 +02:00
}