29 lines
828 B
CSS
29 lines
828 B
CSS
|
|
/* ============================================================================
|
||
|
|
TYPOGRAPHY - Fonts & Text Styles
|
||
|
|
============================================================================ */
|
||
|
|
|
||
|
|
/* Font Imports */
|
||
|
|
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Source+Sans+Pro:wght@400;600&family=Inter:wght@400;500;600;700&display=swap');
|
||
|
|
|
||
|
|
/* 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;
|
||
|
|
}
|
||
|
|
}
|