All CSS font-size to % instead of px

This commit is contained in:
the-djmaze 2023-12-11 13:34:23 +01:00
parent c1c851c238
commit c3f7827683
21 changed files with 52 additions and 52 deletions

View file

@ -36,12 +36,12 @@ h1, h2, h3, h4, h5, h6 {
margin: 0.715em 0;
text-rendering: optimizelegibility; // Fix the character spacing for headings
}
h1 { font-size: 36px; }
h2 { font-size: 30px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }
h5 { font-size: 14px; }
h6 { font-size: 12px; }
h1 { font-size: 257%; }
h2 { font-size: 214%; }
h3 { font-size: 171%; }
h4 { font-size: 128%; }
h5 { font-size: 100%; }
h6 { font-size: 85%; }
h4, h5, h6 { line-height: 20px; }