dash-website/_sass/_typography.scss
2016-07-27 02:08:35 -04:00

39 lines
510 B
SCSS

@import "../fonts/worksans/font.css"; // imports are relative to /assets/css/style.scss
body {
font-family: 'Work Sans', Helvetica, Arial, sans-serif;
line-height: 1.5;
}
p {
font-size: 14px;
line-height: 22px;
a {
color: $blue;
text-decoration: none;
&:hover {
text-decoration: underline;
}
}
}
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;
}