23 lines
489 B
CSS
23 lines
489 B
CSS
html,
|
|
body {
|
|
margin: 0;
|
|
}
|
|
|
|
* {
|
|
font-family: Averta;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
code {
|
|
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Averta';
|
|
src: local('Averta'), url(./assets/fonts/Averta.woff) format('woff');
|
|
/* other formats include: 'woff2', 'truetype, 'opentype',
|
|
'embedded-opentype', and 'svg' */
|
|
}
|