2016-12-13 03:13:38 +00:00
|
|
|
h1 {
|
2017-01-09 05:29:00 +00:00
|
|
|
color : $color_heading;
|
|
|
|
font-family : $heading-font;
|
|
|
|
font-size : 2.25em;
|
|
|
|
font-weight : 300;
|
2017-01-09 22:11:49 +00:00
|
|
|
//mobile
|
2017-01-18 04:59:40 +00:00
|
|
|
@include nav-small{
|
2017-01-09 22:11:49 +00:00
|
|
|
font-size : 1.8em;
|
|
|
|
}
|
2016-12-13 03:13:38 +00:00
|
|
|
}
|
2017-01-09 05:29:00 +00:00
|
|
|
|
2016-12-13 03:13:38 +00:00
|
|
|
h2 {
|
2017-01-09 05:29:00 +00:00
|
|
|
color : $color_heading;
|
|
|
|
font-family : $heading-font;
|
|
|
|
font-size : 1.75em;
|
|
|
|
font-weight : 300;
|
2017-01-09 22:11:49 +00:00
|
|
|
//mobile
|
2017-01-18 04:59:40 +00:00
|
|
|
@include nav-small{
|
2017-01-09 22:11:49 +00:00
|
|
|
font-size : 1.4em;
|
|
|
|
}
|
2016-12-13 03:13:38 +00:00
|
|
|
}
|
2017-01-09 05:29:00 +00:00
|
|
|
|
2016-12-13 03:13:38 +00:00
|
|
|
h3 {
|
2017-01-09 05:29:00 +00:00
|
|
|
color : $color_heading;
|
|
|
|
font-family : $heading-font;
|
|
|
|
font-size : 1.25em;
|
|
|
|
font-weight : 300;
|
2017-01-09 22:11:49 +00:00
|
|
|
//mobile
|
2017-01-18 04:59:40 +00:00
|
|
|
@include nav-small{
|
2017-01-09 22:11:49 +00:00
|
|
|
font-size : 1.2em;
|
|
|
|
}
|
2016-12-13 03:13:38 +00:00
|
|
|
}
|
2017-01-09 05:29:00 +00:00
|
|
|
|
2016-12-13 03:13:38 +00:00
|
|
|
h4 {
|
2017-01-09 05:29:00 +00:00
|
|
|
color : $color_paragraph;
|
|
|
|
font-family : $heading-font;
|
|
|
|
font-size : 1.25em;
|
|
|
|
font-weight : 300;
|
|
|
|
line-height : 1.4em;
|
2017-01-09 22:11:49 +00:00
|
|
|
//mobile
|
2017-01-18 04:59:40 +00:00
|
|
|
@include nav-small{
|
2017-01-09 22:11:49 +00:00
|
|
|
font-size : 1.2em;
|
|
|
|
line-height : 1.6em;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
//mobile
|
2017-01-18 04:59:40 +00:00
|
|
|
@include nav-small{
|
2017-01-09 22:11:49 +00:00
|
|
|
line-height : 1.6em;
|
|
|
|
}
|
|
|
|
|
2016-12-13 03:13:38 +00:00
|
|
|
}
|
2017-01-09 05:29:00 +00:00
|
|
|
|
|
|
|
li,
|
|
|
|
ol,
|
|
|
|
p,
|
|
|
|
ul {
|
|
|
|
color : $color_paragraph;
|
|
|
|
font-family : $main-font;
|
|
|
|
font-weight : 300;
|
2017-01-09 22:11:49 +00:00
|
|
|
list-style-type: none;
|
2016-12-13 03:13:38 +00:00
|
|
|
}
|
2017-01-09 05:29:00 +00:00
|
|
|
|
2017-01-09 22:11:49 +00:00
|
|
|
|
2016-12-13 03:13:38 +00:00
|
|
|
small {
|
2017-01-09 05:29:00 +00:00
|
|
|
@extend %uppercase;
|
|
|
|
color : $color_gray;
|
|
|
|
font-family : $main-font;
|
|
|
|
font-size : 65%;
|
2016-09-20 18:33:17 +00:00
|
|
|
}
|
|
|
|
|
2017-01-09 05:29:00 +00:00
|
|
|
li {
|
|
|
|
// indent for li
|
|
|
|
margin-left : 1.6em;
|
2017-01-18 04:59:40 +00:00
|
|
|
|
|
|
|
@include nav-small {
|
|
|
|
margin-left : initial;
|
|
|
|
}
|
2017-01-07 00:03:24 +00:00
|
|
|
}
|
2017-01-09 05:29:00 +00:00
|
|
|
|
2016-12-13 03:13:38 +00:00
|
|
|
hr {
|
2017-01-09 05:29:00 +00:00
|
|
|
width : 150px;
|
|
|
|
height : 1px;
|
|
|
|
margin-top : 6px;
|
|
|
|
margin-bottom : 6px;
|
|
|
|
border : 0;
|
|
|
|
background : linear-gradient(
|
|
|
|
to right,
|
|
|
|
$color_hr 0,
|
|
|
|
$color_link 100%
|
|
|
|
);
|
|
|
|
background-color : $color_hr;
|
|
|
|
filter : progid:dximagetransform.microsoft.gradient(startcolorstr='$color_hr', endcolorstr='$color_link', gradienttype=1 );
|
2016-09-20 18:33:17 +00:00
|
|
|
}
|
|
|
|
|
2017-01-09 05:29:00 +00:00
|
|
|
// Font Colors//
|
2016-12-13 03:13:38 +00:00
|
|
|
|
|
|
|
.t-dk {
|
2017-01-09 05:29:00 +00:00
|
|
|
color : $color_heading;
|
2016-12-13 03:13:38 +00:00
|
|
|
}
|
2017-01-09 05:29:00 +00:00
|
|
|
|
2016-12-13 03:13:38 +00:00
|
|
|
.t-white {
|
2017-01-09 05:29:00 +00:00
|
|
|
color : $color_white;
|
2016-12-13 03:13:38 +00:00
|
|
|
}
|
2017-01-09 05:29:00 +00:00
|
|
|
|
2016-12-13 03:13:38 +00:00
|
|
|
.t-blue {
|
2017-01-09 05:29:00 +00:00
|
|
|
color : $color_link;
|
2016-12-13 03:13:38 +00:00
|
|
|
}
|
2017-01-09 05:29:00 +00:00
|
|
|
|
2016-12-13 03:13:38 +00:00
|
|
|
.t-transparent {
|
2017-01-09 05:29:00 +00:00
|
|
|
opacity : 0.6;
|
2016-12-13 03:13:38 +00:00
|
|
|
}
|
2017-01-09 05:29:00 +00:00
|
|
|
|
2017-01-07 00:03:24 +00:00
|
|
|
.t-purple {
|
2017-01-09 05:29:00 +00:00
|
|
|
color : $color_purple;
|
2017-01-07 00:03:24 +00:00
|
|
|
}
|