Increase font size a bit on mobile
This commit is contained in:
parent
254d3922c6
commit
9f05c40fa4
1 changed files with 27 additions and 6 deletions
33
style.css
33
style.css
|
@ -23,12 +23,6 @@ h3 {
|
|||
line-height: 1.2
|
||||
}
|
||||
|
||||
@media print {
|
||||
body {
|
||||
max-width: none
|
||||
}
|
||||
}
|
||||
|
||||
code {
|
||||
background: #202020
|
||||
}
|
||||
|
@ -41,3 +35,30 @@ pre {
|
|||
wrap {
|
||||
word-wrap: break-word
|
||||
}
|
||||
|
||||
@media (max-device-width: 1200px) {
|
||||
h1 {
|
||||
line-height: 1.2;
|
||||
font-size: 40px;
|
||||
}
|
||||
|
||||
h2 {
|
||||
line-height: 1.2;
|
||||
font-size: 30px;
|
||||
}
|
||||
|
||||
body {
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
pre,
|
||||
code {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
@media print {
|
||||
body {
|
||||
max-width: none
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue