You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
479 B
39 lines
479 B
* { |
|
box-sizing: border-box; |
|
} |
|
|
|
body { |
|
margin: 0; |
|
font-family: $font-family-serif; |
|
font-size: #{$base-font-size}px; |
|
} |
|
|
|
h1, |
|
h2, |
|
h3, |
|
h4, |
|
h5, |
|
h6 { |
|
font-family: $font-family-sans-serif; |
|
} |
|
|
|
h1 { |
|
font-size: em(30); |
|
font-weight: 600; |
|
text-transform: uppercase; |
|
letter-spacing: em(2); |
|
line-height: (36/30); |
|
margin: 0; |
|
} |
|
|
|
h2 { |
|
font-size: em(16); |
|
font-weight: normal; |
|
line-height: (30/16); |
|
margin: 0; |
|
} |
|
|
|
a { |
|
color: $brand-primary; |
|
text-decoration: none; |
|
}
|
|
|