Convert serif fonts to sans serif

This commit is contained in:
CryptoGrampy 2022-02-22 12:10:08 -06:00
parent 749815fa36
commit ecead2a2f3
2 changed files with 142 additions and 141 deletions

View file

@ -178,7 +178,7 @@ p.table-title {
.newsbyte h4, h4.stat { .newsbyte h4, h4.stat {
font-size: 18px; font-size: 18px;
font-family: Georgia, 'Times New Roman', Times, serif; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
font-weight: 700; font-weight: 700;
@media (max-width: 480px) { @media (max-width: 480px) {
font-size: 16px; font-size: 16px;

View file

@ -9,7 +9,7 @@
} }
body { body {
font-family: Georgia, 'Times New Roman', Times, serif; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
letter-spacing: 0.01em; letter-spacing: 0.01em;
-webkit-font-smoothing: antialiased; -webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
@ -27,14 +27,14 @@ h1 {
font-size: 2.25em; /* 36px/16px */ font-size: 2.25em; /* 36px/16px */
line-height: 1.3333em; /* 48px/36px */ line-height: 1.3333em; /* 48px/36px */
padding: 0.33335em 0; /* 12px/36px * 2 (Use padding instead of margin to maintain proximity with paragraph) */ padding: 0.33335em 0; /* 12px/36px * 2 (Use padding instead of margin to maintain proximity with paragraph) */
font-family: Arial, Helvetica, sans-serif; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
} }
h2 { h2 {
font-size: 1.5em; /* 24px/16px */ font-size: 1.5em; /* 24px/16px */
line-height: 1.5em; /* 24px/24px */ line-height: 1.5em; /* 24px/24px */
padding: 1em 0 0 0; /* 12px/24px * 2, only top (Use padding instead of margin to maintain proximity with paragwithph) */ padding: 1em 0 0 0; /* 12px/24px * 2, only top (Use padding instead of margin to maintain proximity with paragwithph) */
font-family: Arial, Helvetica, sans-serif; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
@media (max-width: 480px) { @media (max-width: 480px) {
font-size: 1.6rem; font-size: 1.6rem;
} }
@ -44,7 +44,7 @@ h3 {
font-size: 1.3em; /* 18px/16px */ font-size: 1.3em; /* 18px/16px */
line-height: 1.7em; /* 24px/18px */ line-height: 1.7em; /* 24px/18px */
padding: 0.66667em 0; /* 12px/18px * 2 (Use padding instead of margin to maintain proximity with paragraph) */ padding: 0.66667em 0; /* 12px/18px * 2 (Use padding instead of margin to maintain proximity with paragraph) */
font-family: Arial, Helvetica, sans-serif; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
} }
.hted-head th { .hted-head th {
@ -55,7 +55,7 @@ h4, h5, h6 {
font-size: 1.125em; /* 18px/16px */ font-size: 1.125em; /* 18px/16px */
line-height: 1.7em; /* 24px/18px */ line-height: 1.7em; /* 24px/18px */
padding: 0.66667em 0; /* 12px/18px * 2 (Use padding instead of margin to maintain proximity with paragraph) */ padding: 0.66667em 0; /* 12px/18px * 2 (Use padding instead of margin to maintain proximity with paragraph) */
font-family: Arial, Helvetica, sans-serif; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
} }
h5 { h5 {
@ -144,3 +144,4 @@ blockquote {
} }
} }