Files
cv-site/static/css/01-foundation/_typography.css
T

28 lines
715 B
CSS
Raw Normal View History

/* ============================================================================
TYPOGRAPHY - Fonts & Text Styles
============================================================================ */
/* NOTE: Fonts are loaded via <link> in index.html for better performance */
/* Base Typography */
body {
font-family: 'Quicksand', 'Source Sans Pro', -apple-system, system-ui, sans-serif;
color: var(--text-secondary);
line-height: 1.5;
font-size: 16px;
font-weight: 400;
font-smoothing: antialiased;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* Links */
a {
color: var(--accent-blue);
text-decoration: none;
&:hover {
text-decoration: underline;
}
}