feat(uti): Compiled CSS
[csit.git] / resources / tools / dash / app / pal / static / sass / bootstrap / _type.scss
1 //
2 // Headings
3 //
4 .h1 {
5   @extend h1;
6 }
7
8 .h2 {
9   @extend h2;
10 }
11
12 .h3 {
13   @extend h3;
14 }
15
16 .h4 {
17   @extend h4;
18 }
19
20 .h5 {
21   @extend h5;
22 }
23
24 .h6 {
25   @extend h6;
26 }
27
28
29 .lead {
30   @include font-size($lead-font-size);
31   font-weight: $lead-font-weight;
32 }
33
34 // Type display classes
35 @each $display, $font-size in $display-font-sizes {
36   .display-#{$display} {
37     @include font-size($font-size);
38     font-family: $display-font-family;
39     font-style: $display-font-style;
40     font-weight: $display-font-weight;
41     line-height: $display-line-height;
42   }
43 }
44
45 //
46 // Emphasis
47 //
48 .small {
49   @extend small;
50 }
51
52 .mark {
53   @extend mark;
54 }
55
56 //
57 // Lists
58 //
59
60 .list-unstyled {
61   @include list-unstyled();
62 }
63
64 // Inline turns list items into inline-block
65 .list-inline {
66   @include list-unstyled();
67 }
68 .list-inline-item {
69   display: inline-block;
70
71   &:not(:last-child) {
72     margin-right: $list-inline-padding;
73   }
74 }
75
76
77 //
78 // Misc
79 //
80
81 // Builds on `abbr`
82 .initialism {
83   @include font-size($initialism-font-size);
84   text-transform: uppercase;
85 }
86
87 // Blockquotes
88 .blockquote {
89   margin-bottom: $blockquote-margin-y;
90   @include font-size($blockquote-font-size);
91
92   > :last-child {
93     margin-bottom: 0;
94   }
95 }
96
97 .blockquote-footer {
98   margin-top: -$blockquote-margin-y;
99   margin-bottom: $blockquote-margin-y;
100   @include font-size($blockquote-footer-font-size);
101   color: $blockquote-footer-color;
102
103   &::before {
104     content: "\2014\00A0"; // em dash, nbsp
105   }
106 }