33 lines
555 B
SCSS
33 lines
555 B
SCSS
body {
|
|
// font-family: 'Trebuchet MS', Tahoma,sans-serif;
|
|
// font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
|
|
font-family: "Open Sans","Segoe UI",HelveticaNeue-Light,"Helvetica Neue Light","Helvetica Neue",Helvetica,Arial,sans-serif;
|
|
margin: 0;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
article {
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 1.75rem;
|
|
color: $secondary;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 1.4rem;
|
|
color: $primary;
|
|
}
|
|
|
|
a {
|
|
color: $primary;
|
|
}
|
|
a:hover {
|
|
opacity: 0.8;
|
|
}
|
|
|
|
|