2013-07-15 05:19:46 -04:00
|
|
|
// #Typography
|
|
|
|
// ==================================================
|
2012-09-10 11:39:34 -04:00
|
|
|
|
|
|
|
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
|
|
|
|
font-weight: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
2013-05-17 08:01:58 -04:00
|
|
|
color: $heading_colour;
|
|
|
|
font-family: $heading_font;
|
|
|
|
font-weight: $heading_font_weight;
|
2013-04-23 15:56:43 -04:00
|
|
|
font-size: $heading1_font_size;
|
|
|
|
line-height: $heading1_line_height;
|
|
|
|
margin: $heading1_margin;
|
2012-09-10 11:39:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
2013-05-17 08:01:58 -04:00
|
|
|
color: $heading_colour;
|
|
|
|
font-family: $heading_font;
|
|
|
|
font-weight: $heading_font_weight;
|
2013-04-23 15:56:43 -04:00
|
|
|
font-size: $heading2_font_size;
|
|
|
|
line-height: $heading2_line_height;
|
|
|
|
margin: $heading2_margin;
|
2012-09-10 11:39:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
h3 {
|
2013-05-17 08:01:58 -04:00
|
|
|
color: $heading_colour;
|
|
|
|
font-family: $heading_font;
|
|
|
|
font-weight: $heading_font_weight;
|
2013-04-23 15:56:43 -04:00
|
|
|
font-size: $heading3_font_size;
|
|
|
|
line-height: $heading3_line_height;
|
|
|
|
margin: $heading3_margin;
|
2012-09-10 11:39:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
h4 {
|
2013-05-17 08:01:58 -04:00
|
|
|
color: $heading_colour;
|
|
|
|
font-family: $heading_font;
|
|
|
|
font-weight: $heading_font_weight;
|
2013-04-23 15:56:43 -04:00
|
|
|
font-size: $heading4_font_size;
|
|
|
|
line-height: $heading4_line_height;
|
|
|
|
margin: $heading4_margin;
|
2012-09-10 11:39:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
h5 {
|
2013-05-17 08:01:58 -04:00
|
|
|
color: $heading_colour;
|
|
|
|
font-family: $heading_font;
|
|
|
|
font-weight: $heading_font_weight;
|
2013-04-23 15:56:43 -04:00
|
|
|
font-size: $heading5_font_size;
|
|
|
|
line-height: $heading5_line_height;
|
2012-09-10 11:39:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
h6 {
|
2013-05-17 08:01:58 -04:00
|
|
|
color: $heading_colour;
|
|
|
|
font-family: $heading_font;
|
|
|
|
font-weight: $heading_font_weight;
|
2013-04-23 15:56:43 -04:00
|
|
|
font-size: $heading6_font_size;
|
|
|
|
line-height: $heading6_line_height;
|
2012-09-10 11:39:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.subheader {
|
2013-04-23 15:56:43 -04:00
|
|
|
color: $subheader_colour;
|
2012-09-10 11:39:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
2013-04-23 15:56:43 -04:00
|
|
|
margin: $paragraph_margin;
|
2013-05-30 04:30:45 -04:00
|
|
|
line-height: $paragraph_line_height;
|
2012-09-10 11:39:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
p img {
|
2013-04-23 15:56:43 -04:00
|
|
|
margin: $paragraph_image_margin;
|
2012-09-10 11:39:34 -04:00
|
|
|
}
|
|
|
|
|
2013-05-17 08:01:58 -04:00
|
|
|
.lead {
|
2013-04-23 15:56:43 -04:00
|
|
|
font-size: $paragraph_lead_font_size;
|
|
|
|
line-height: $paragraph_lead_line_height;
|
|
|
|
color: $paragraph_lead_colour;
|
2012-09-10 11:39:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
em {
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
|
|
|
strong {
|
|
|
|
font-weight: bold;
|
2013-04-23 15:56:43 -04:00
|
|
|
color: $strong_colour;
|
2012-09-10 11:39:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
small {
|
|
|
|
font-size: 80%;
|
|
|
|
}
|
|
|
|
|
|
|
|
blockquote, blockquote p {
|
2013-07-15 05:19:46 -04:00
|
|
|
font-size: $blockquote_font_size;
|
|
|
|
line-height: $blockquote_line_height;
|
2013-01-31 13:49:28 -05:00
|
|
|
color: $blockquote_colour;
|
2013-07-15 05:19:46 -04:00
|
|
|
font-style: $blockquote_font_style;
|
2012-09-10 11:39:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
blockquote {
|
2013-04-23 15:56:43 -04:00
|
|
|
margin: $blockquote_margin;
|
|
|
|
padding: $blockquote_padding;
|
2013-01-31 13:49:28 -05:00
|
|
|
border-left: $blockquote_border_left;
|
2012-09-10 11:39:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
blockquote cite {
|
|
|
|
display: block;
|
2013-04-23 15:56:43 -04:00
|
|
|
font-size: $blockquote_cite_font_size;
|
2013-01-31 13:49:28 -05:00
|
|
|
color: $blockquote_cite_colour;
|
2012-09-10 11:39:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
blockquote cite:before {
|
|
|
|
content: "\2014 \0020";
|
|
|
|
}
|
|
|
|
|
|
|
|
blockquote cite a, blockquote cite a:visited, blockquote cite a:visited {
|
2013-01-31 13:49:28 -05:00
|
|
|
color: $blockquote_cite_link_colour;
|
2012-09-10 11:39:34 -04:00
|
|
|
}
|