51 lines
No EOL
740 B
SCSS
51 lines
No EOL
740 B
SCSS
@import url('https://fonts.googleapis.com/css?family=Poppins:400, 600');
|
|
|
|
html {
|
|
font-size: var(--base-font-size);
|
|
}
|
|
|
|
body {
|
|
font-family: 'Poppins', sans-serif;
|
|
font-weight: 400;
|
|
line-height: 1.45;
|
|
}
|
|
|
|
p {
|
|
margin-bottom: 1.25em;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5 {
|
|
margin: 2.75rem 0 1rem;
|
|
font-family: 'Poppins', sans-serif;
|
|
font-weight: 600;
|
|
line-height: 1.15;
|
|
}
|
|
|
|
h1 {
|
|
margin-top: 0;
|
|
font-size: 1.802em;
|
|
}
|
|
|
|
h2 {font-size: 1.602em;}
|
|
|
|
h3 {font-size: 1.424em;}
|
|
|
|
h4 {font-size: 1.266em;}
|
|
|
|
h5 {font-size: 1.125em;}
|
|
|
|
small {font-size: 0.889em;}
|
|
|
|
strong {
|
|
font-weight: 600;
|
|
}
|
|
|
|
blockquote {
|
|
border-left: 4px solid var(--border-color);
|
|
padding-left: calc(var(--space) / 2);
|
|
color: var(--title-color);
|
|
}
|
|
|
|
em {
|
|
font-style: italic;
|
|
} |