website/assets/sass/general.scss

34 lines
555 B
SCSS
Raw Normal View History

2022-09-28 21:43:45 +00:00
body {
// font-family: 'Trebuchet MS', Tahoma,sans-serif;
2022-10-14 18:56:56 +00:00
// 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;
2022-09-28 21:43:45 +00:00
}
2022-10-14 18:56:56 +00:00