10 lines
106 B
CSS
10 lines
106 B
CSS
|
html {
|
||
|
font-size: 1.3rem;
|
||
|
}
|
||
|
|
||
|
@media (max-width: 1000px) {
|
||
|
html {
|
||
|
font-size: 3rem;
|
||
|
}
|
||
|
}
|