2015-04-18 14:13:45 -04:00
|
|
|
//
|
2013-11-30 17:58:35 -05:00
|
|
|
// Headings
|
2015-04-18 14:13:45 -04:00
|
|
|
//
|
2019-04-30 04:00:34 -04:00
|
|
|
.h1 {
|
|
|
|
@extend h1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.h2 {
|
|
|
|
@extend h2;
|
|
|
|
}
|
|
|
|
|
|
|
|
.h3 {
|
|
|
|
@extend h3;
|
|
|
|
}
|
|
|
|
|
|
|
|
.h4 {
|
|
|
|
@extend h4;
|
|
|
|
}
|
|
|
|
|
|
|
|
.h5 {
|
|
|
|
@extend h5;
|
|
|
|
}
|
2013-11-30 17:58:35 -05:00
|
|
|
|
2019-04-30 04:00:34 -04:00
|
|
|
.h6 {
|
|
|
|
@extend h6;
|
2013-11-30 17:58:35 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-01-25 02:35:34 -05:00
|
|
|
.lead {
|
2019-02-07 17:32:05 -05:00
|
|
|
@include font-size($lead-font-size);
|
2015-08-14 02:18:32 -04:00
|
|
|
font-weight: $lead-font-weight;
|
2012-01-25 02:35:34 -05:00
|
|
|
}
|
2011-05-03 21:09:25 -04:00
|
|
|
|
2015-08-10 00:17:27 -04:00
|
|
|
// Type display classes
|
2020-04-14 07:57:11 -04:00
|
|
|
@each $display, $font-size in $display-font-sizes {
|
|
|
|
.display-#{$display} {
|
|
|
|
@include font-size($font-size);
|
|
|
|
font-weight: $display-font-weight;
|
|
|
|
line-height: $display-line-height;
|
|
|
|
}
|
2015-08-10 00:17:27 -04:00
|
|
|
}
|
|
|
|
|
2015-04-18 14:13:45 -04:00
|
|
|
//
|
|
|
|
// Emphasis
|
|
|
|
//
|
2014-04-26 02:30:50 -04:00
|
|
|
.small {
|
2019-04-30 04:00:34 -04:00
|
|
|
@extend small;
|
2014-04-26 02:30:50 -04:00
|
|
|
}
|
2012-10-31 13:46:04 -04:00
|
|
|
|
2014-03-07 03:10:46 -05:00
|
|
|
.mark {
|
2019-04-30 04:00:34 -04:00
|
|
|
@extend mark;
|
2014-03-07 03:10:46 -05:00
|
|
|
}
|
|
|
|
|
2015-04-18 14:13:45 -04:00
|
|
|
//
|
2012-07-05 18:11:54 -04:00
|
|
|
// Lists
|
2015-04-18 14:13:45 -04:00
|
|
|
//
|
2013-03-27 18:42:11 -04:00
|
|
|
|
|
|
|
.list-unstyled {
|
2019-07-24 02:41:18 -04:00
|
|
|
@include list-unstyled();
|
2011-05-03 21:09:25 -04:00
|
|
|
}
|
2013-10-26 09:13:34 -04:00
|
|
|
|
2013-03-27 18:42:11 -04:00
|
|
|
// Inline turns list items into inline-block
|
|
|
|
.list-inline {
|
2019-07-24 02:41:18 -04:00
|
|
|
@include list-unstyled();
|
2015-11-02 19:53:28 -05:00
|
|
|
}
|
|
|
|
.list-inline-item {
|
|
|
|
display: inline-block;
|
2015-12-08 02:31:02 -05:00
|
|
|
|
|
|
|
&:not(:last-child) {
|
|
|
|
margin-right: $list-inline-padding;
|
|
|
|
}
|
2012-10-26 03:47:55 -04:00
|
|
|
}
|
2011-05-03 21:09:25 -04:00
|
|
|
|
2014-02-22 15:13:11 -05:00
|
|
|
|
2015-04-18 14:13:45 -04:00
|
|
|
//
|
2014-02-22 15:13:11 -05:00
|
|
|
// Misc
|
2015-04-18 14:13:45 -04:00
|
|
|
//
|
2015-04-16 21:39:45 -04:00
|
|
|
|
2015-04-18 14:13:45 -04:00
|
|
|
// Builds on `abbr`
|
2013-11-30 19:18:07 -05:00
|
|
|
.initialism {
|
2019-08-22 04:14:42 -04:00
|
|
|
@include font-size($initialism-font-size);
|
2015-03-01 17:11:22 -05:00
|
|
|
text-transform: uppercase;
|
2012-02-19 15:24:06 -05:00
|
|
|
}
|
2011-10-17 17:17:29 -04:00
|
|
|
|
2015-04-18 14:13:45 -04:00
|
|
|
// Blockquotes
|
|
|
|
.blockquote {
|
2020-06-12 17:26:37 -04:00
|
|
|
margin-bottom: $blockquote-margin-y;
|
2019-02-07 17:32:05 -05:00
|
|
|
@include font-size($blockquote-font-size);
|
2020-06-12 17:26:37 -04:00
|
|
|
|
|
|
|
> :last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2015-11-03 04:17:21 -05:00
|
|
|
}
|
2015-04-18 14:13:45 -04:00
|
|
|
|
2015-11-03 04:17:21 -05:00
|
|
|
.blockquote-footer {
|
2020-06-12 17:26:37 -04:00
|
|
|
margin-top: -$blockquote-margin-y;
|
|
|
|
margin-bottom: $blockquote-margin-y;
|
|
|
|
@include font-size($blockquote-footer-font-size);
|
|
|
|
color: $blockquote-footer-color;
|
2015-04-18 14:13:45 -04:00
|
|
|
|
2015-11-03 04:17:21 -05:00
|
|
|
&::before {
|
2018-08-14 04:38:57 -04:00
|
|
|
content: "\2014\00A0"; // em dash, nbsp
|
2015-04-18 14:13:45 -04:00
|
|
|
}
|
|
|
|
}
|