twbs--bootstrap/scss/_type.scss

107 lines
1.4 KiB
SCSS
Raw Permalink Normal View History

//
// Headings
//
.h1 {
@extend h1;
}
.h2 {
@extend h2;
}
.h3 {
@extend h3;
}
.h4 {
@extend h4;
}
.h5 {
@extend h5;
}
.h6 {
@extend h6;
}
.lead {
@include font-size($lead-font-size);
font-weight: $lead-font-weight;
}
2011-05-04 01:09:25 +00:00
2015-08-10 04:17:27 +00:00
// Type display classes
@each $display, $font-size in $display-font-sizes {
.display-#{$display} {
@include font-size($font-size);
font-family: $display-font-family;
font-style: $display-font-style;
font-weight: $display-font-weight;
line-height: $display-line-height;
}
2015-08-10 04:17:27 +00:00
}
//
// Emphasis
//
.small {
@extend small;
}
2014-03-07 08:10:46 +00:00
.mark {
@extend mark;
2014-03-07 08:10:46 +00:00
}
//
2012-07-05 22:11:54 +00:00
// Lists
//
.list-unstyled {
@include list-unstyled();
2011-05-04 01:09:25 +00:00
}
// Inline turns list items into inline-block
.list-inline {
@include list-unstyled();
}
.list-inline-item {
display: inline-block;
&:not(:last-child) {
margin-right: $list-inline-padding;
}
2012-10-26 07:47:55 +00:00
}
2011-05-04 01:09:25 +00:00
//
// Misc
//
// Builds on `abbr`
.initialism {
@include font-size($initialism-font-size);
2015-03-01 22:11:22 +00:00
text-transform: uppercase;
}
// Blockquotes
.blockquote {
margin-bottom: $blockquote-margin-y;
@include font-size($blockquote-font-size);
> :last-child {
margin-bottom: 0;
}
}
.blockquote-footer {
margin-top: -$blockquote-margin-y;
margin-bottom: $blockquote-margin-y;
@include font-size($blockquote-footer-font-size);
color: $blockquote-footer-color;
&::before {
content: "\2014\00A0"; // em dash, nbsp
}
}