2016-12-13 03:13:38 +00:00
|
|
|
h1 {
|
|
|
|
font-family: $heading-font;
|
|
|
|
font-size: 36px;
|
|
|
|
color: $color_heading;
|
2017-01-06 08:06:40 +00:00
|
|
|
font-weight: 300;
|
2016-12-13 03:13:38 +00:00
|
|
|
}
|
|
|
|
h2 {
|
|
|
|
font-family: $heading-font;
|
|
|
|
font-size: 30px;
|
|
|
|
color: $color_heading;
|
2017-01-06 08:06:40 +00:00
|
|
|
font-weight: 300;
|
2016-12-13 03:13:38 +00:00
|
|
|
}
|
|
|
|
h3 {
|
|
|
|
font-family: $heading-font;
|
|
|
|
font-size: 20px;
|
|
|
|
color: $color_heading;
|
2017-01-06 08:06:40 +00:00
|
|
|
font-weight: 300;
|
2016-12-13 03:13:38 +00:00
|
|
|
}
|
|
|
|
h4 {
|
|
|
|
font-family: $heading-font;
|
|
|
|
font-size: 20px;
|
|
|
|
color: $color_paragraph;
|
2017-01-06 08:06:40 +00:00
|
|
|
line-height: 1.4em;
|
|
|
|
font-weight: 300;
|
2016-12-13 03:13:38 +00:00
|
|
|
}
|
2017-01-06 08:06:40 +00:00
|
|
|
p, ol, ul, li {
|
2016-12-13 03:13:38 +00:00
|
|
|
font-family: $main-font;
|
|
|
|
color: $color_paragraph;
|
|
|
|
font-weight: 300;
|
|
|
|
}
|
|
|
|
small {
|
|
|
|
font-family: $main-font;
|
|
|
|
font-size: 65%;
|
|
|
|
color: $color_gray;
|
|
|
|
@extend %uppercase;
|
2016-09-20 18:33:17 +00:00
|
|
|
}
|
|
|
|
|
2016-12-13 03:13:38 +00:00
|
|
|
hr {
|
2017-01-06 08:15:39 +00:00
|
|
|
margin-top: 6px;
|
|
|
|
margin-bottom: 6px;
|
2017-01-06 21:21:45 +00:00
|
|
|
width: 150px;
|
2016-12-13 03:13:38 +00:00
|
|
|
border: 0;
|
|
|
|
height: 1px;
|
|
|
|
background-color: $color_hr;
|
|
|
|
background: linear-gradient(to right, $color_hr 0, $color_link 100%);
|
|
|
|
filter: progid:dximagetransform.microsoft.gradient(startcolorstr='$color_hr', endcolorstr='$color_link', gradienttype=1 );
|
2016-09-20 18:33:17 +00:00
|
|
|
}
|
|
|
|
|
2016-12-13 03:13:38 +00:00
|
|
|
//Font Colors//
|
|
|
|
|
|
|
|
.t-dk {
|
|
|
|
color: $color_heading;
|
|
|
|
}
|
|
|
|
.t-white {
|
|
|
|
color: $color_white;
|
|
|
|
}
|
|
|
|
.t-blue {
|
|
|
|
color: $color_link;
|
|
|
|
}
|
|
|
|
.t-transparent {
|
|
|
|
opacity: 0.6;
|
|
|
|
}
|