16 lines
336 B
SCSS
16 lines
336 B
SCSS
@import 'normalize.css';
|
|
|
|
*,
|
|
*:before,
|
|
*:after {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI',
|
|
Roboto, 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
|
font-size: 1rem;
|
|
font-weight: 400;
|
|
line-height: 1.5;
|
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
}
|