2022-05-21 21:31:56 +00:00
|
|
|
|
2022-11-18 20:10:41 +00:00
|
|
|
// Standard
|
2022-11-19 16:36:31 +00:00
|
|
|
html { font-size: 13px; }
|
2022-05-21 21:31:56 +00:00
|
|
|
|
2022-11-18 20:10:41 +00:00
|
|
|
// Smartphone, portrait
|
2022-11-19 16:36:31 +00:00
|
|
|
@media screen and (min-width:320px) { html { font-size: 13px; } }
|
2022-11-19 13:00:13 +00:00
|
|
|
// Smartphone, html
|
2022-11-19 16:36:31 +00:00
|
|
|
@media screen and (min-width:480px) { html { font-size: 13px; } }
|
2022-11-18 20:10:41 +00:00
|
|
|
// Tablet, portrait
|
2022-11-19 16:36:31 +00:00
|
|
|
@media screen and (min-width:600px) { html { font-size: 13px; } }
|
2022-11-18 20:10:41 +00:00
|
|
|
// Tablet, landscape
|
2022-11-19 16:36:31 +00:00
|
|
|
@media screen and (min-width:801px) { html { font-size: 13px; } }
|
2022-11-18 20:10:41 +00:00
|
|
|
// Big screen and landscape tablets, laptop and desktop
|
2022-11-19 16:36:31 +00:00
|
|
|
@media screen and (min-width:1025px) { html { font-size: 14px; } }
|
2022-11-18 20:10:41 +00:00
|
|
|
// Hi-res laptop and desktop
|
2022-11-19 16:36:31 +00:00
|
|
|
@media screen and (min-width:1281px) { html { font-size: 14px; } }
|