inspec/www/source/stylesheets/_typography.scss

119 lines
1.7 KiB
SCSS
Raw Normal View History

h1 {
color : $color_heading;
font-family : $heading-font;
font-size : 2.25em;
font-weight : 300;
2017-01-09 22:11:49 +00:00
//mobile
@include nav-small{
2017-01-09 22:11:49 +00:00
font-size : 1.8em;
}
}
h2 {
color : $color_heading;
font-family : $heading-font;
font-size : 1.75em;
font-weight : 300;
2017-01-09 22:11:49 +00:00
//mobile
@include nav-small{
2017-01-09 22:11:49 +00:00
font-size : 1.4em;
}
}
h3 {
color : $color_heading;
font-family : $heading-font;
font-size : 1.25em;
font-weight : 300;
2017-01-09 22:11:49 +00:00
//mobile
@include nav-small{
2017-01-09 22:11:49 +00:00
font-size : 1.2em;
}
}
h4 {
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
@include nav-small{
2017-01-09 22:11:49 +00:00
font-size : 1.2em;
line-height : 1.6em;
}
}
p {
//mobile
@include nav-small{
2017-01-09 22:11:49 +00:00
line-height : 1.6em;
}
}
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;
}
2017-01-09 22:11:49 +00:00
small {
@extend %uppercase;
color : $color_gray;
font-family : $main-font;
font-size : 65%;
2016-09-20 18:33:17 +00:00
}
li {
// indent for li
margin-left : 1.6em;
@include nav-small {
margin-left : initial;
}
2017-01-07 00:03:24 +00:00
}
hr {
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
}
// Font Colors//
.t-dk {
color : $color_heading;
}
.t-white {
color : $color_white;
}
.t-blue {
color : $color_link;
}
.t-transparent {
opacity : 0.6;
}
2017-01-07 00:03:24 +00:00
.t-purple {
color : $color_purple;
2017-01-07 00:03:24 +00:00
}