css: make text scale more nicely to screen sizes
parent
8f8eed4760
commit
1eda00be69
|
@ -13,6 +13,29 @@
|
|||
margin: 0 auto;
|
||||
}
|
||||
|
||||
|
||||
@media (max-width:89em)
|
||||
{
|
||||
html
|
||||
{
|
||||
font-size: 0.95em;
|
||||
}
|
||||
}
|
||||
@media (min-width:90em)
|
||||
{
|
||||
html
|
||||
{
|
||||
font-size: 1.05em;
|
||||
}
|
||||
}
|
||||
@media (min-width:100em)
|
||||
{
|
||||
html
|
||||
{
|
||||
font-size: 1.1em;
|
||||
}
|
||||
}
|
||||
|
||||
html
|
||||
{
|
||||
background: #280b22;
|
||||
|
|
Loading…
Reference in New Issue