mirror of
https://github.com/seigler/dash-website
synced 2025-07-27 07:16:10 +00:00
49 lines
682 B
SCSS
49 lines
682 B
SCSS
@import "fonts/worksans/bold";
|
|
@import "fonts/worksans/medium";
|
|
@import "fonts/open-sans/regular";
|
|
@import "fonts/open-sans/italic";
|
|
|
|
$font-body: 'Open Sans', Helvetica, Arial, sans-serif;
|
|
$font-heading: 'Work Sans', Helvetica, Arial, sans-serif;
|
|
|
|
body {
|
|
font-family: $font-body;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
p {
|
|
font-size: 14px;
|
|
line-height: 1.5;
|
|
a {
|
|
color: $blue;
|
|
text-decoration: none;
|
|
&:hover {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
}
|
|
|
|
h1, h2, h3 {
|
|
font-family: $font-heading;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 36px;
|
|
line-height: 40px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 22px;
|
|
color: $blue;
|
|
}
|
|
|
|
h3 {
|
|
font-size: 20px;
|
|
color: $black;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: $blue;
|
|
}
|