mirror of
https://github.com/zyqunix/tools.git
synced 2025-07-05 22:10:31 +02:00
33 lines
354 B
CSS
33 lines
354 B
CSS
@import url(global.css);
|
|
|
|
h1 {
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 1rem;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.main {
|
|
width: 95%;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 1.6rem;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 1.5rem;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 480px) {
|
|
h1 {
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 1rem;
|
|
}
|
|
}
|