2016-12-13 03:13:38 +00:00
|
|
|
h1 {
|
2017-02-24 04:46:54 +00:00
|
|
|
color: $color_heading;
|
|
|
|
font-family: $heading-font;
|
|
|
|
font-size: 2.25em;
|
|
|
|
font-weight: 300;
|
|
|
|
|
|
|
|
@include nav-small { //mobile
|
|
|
|
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-02-24 04:46:54 +00:00
|
|
|
color: $color_heading;
|
|
|
|
font-family: $heading-font;
|
|
|
|
font-size: 1.75em;
|
|
|
|
font-weight: 300;
|
|
|
|
|
|
|
|
@include nav-small { //mobile
|
|
|
|
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-02-24 04:46:54 +00:00
|
|
|
color: $color_heading;
|
|
|
|
font-family: $heading-font;
|
|
|
|
font-size: 1.25em;
|
|
|
|
font-weight: 300;
|
|
|
|
|
|
|
|
@include nav-small { //mobile
|
|
|
|
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-02-24 04:46:54 +00:00
|
|
|
color: $color_paragraph;
|
|
|
|
font-family: $heading-font;
|
|
|
|
font-size: 1.25em;
|
|
|
|
font-weight: 300;
|
|
|
|
line-height: 1.4em;
|
|
|
|
|
|
|
|
@include nav-small { //mobile
|
|
|
|
font-size: 1.2em;
|
|
|
|
line-height: 1.6em;
|
|
|
|
}
|
2017-01-09 22:11:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
2017-02-24 04:46:54 +00:00
|
|
|
@include nav-small { //mobile
|
2017-01-09 22:11:49 +00:00
|
|
|
line-height : 1.6em;
|
2017-02-24 04:46:54 +00:00
|
|
|
}
|
2016-12-13 03:13:38 +00:00
|
|
|
}
|
2017-01-09 05:29:00 +00:00
|
|
|
|
|
|
|
li,
|
|
|
|
ol,
|
|
|
|
p,
|
|
|
|
ul {
|
2017-02-24 04:46:54 +00:00
|
|
|
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
|
|
|
|
2016-12-13 03:13:38 +00:00
|
|
|
small {
|
2017-02-24 04:46:54 +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 {
|
2017-02-24 04:46:54 +00:00
|
|
|
margin-left: 1.6em; // indent for li
|
2017-01-18 04:59:40 +00:00
|
|
|
|
|
|
|
@include nav-small {
|
2017-02-24 04:46:54 +00:00
|
|
|
margin-left: initial;
|
2017-01-18 04:59:40 +00:00
|
|
|
}
|
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-02-24 04:46:54 +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 );
|
|
|
|
}
|
2017-01-20 09:15:38 +00:00
|
|
|
|
2017-02-24 04:46:54 +00:00
|
|
|
//Increase Text Margin
|
2017-01-20 09:15:38 +00:00
|
|
|
|
2017-02-24 04:46:54 +00:00
|
|
|
.txt-margin {
|
|
|
|
margin-bottom: 1rem;
|
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-02-24 04:46:54 +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-02-24 04:46:54 +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-02-24 04:46:54 +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-02-24 04:46:54 +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-02-24 04:46:54 +00:00
|
|
|
color: $color_purple !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.t-purple > a { //trigger for side bar LI
|
|
|
|
color: $color_purple !important;
|
2017-01-07 00:03:24 +00:00
|
|
|
}
|
2017-04-03 21:21:15 +00:00
|
|
|
|
|
|
|
.warning {
|
|
|
|
padding: 10px;
|
|
|
|
margin-bottom: 1em;
|
|
|
|
background: $color_lt_yellow;
|
|
|
|
border: 1px solid rgba(255,147,0,0.3);
|
|
|
|
}
|