27 lines
478 B
CSS
27 lines
478 B
CSS
|
|
:root {
|
|
--font-heading: 'Open Sans', sans-serif;
|
|
--font-body: 'Open Sans', sans-serif;
|
|
--font-monospace: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
|
|
font-family: var(--font-body);
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6,
|
|
th, dt {
|
|
font-family: var(--font-heading);
|
|
}
|
|
|
|
p, td, dd, figcaption, li, blockquote {
|
|
font-family: var(--font-body);
|
|
}
|
|
|
|
pre, code, samp {
|
|
font-family: var(--font-monospace);
|
|
}
|
|
|
|
a, span,
|
|
b, i, u, q,
|
|
strong, em, mark, cite {
|
|
font-family: inherit;
|
|
}
|