jekyll-theme-digitalebrain 0.1.5 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/_includes/_footer.html +68 -0
- data/_includes/_head.html +29 -0
- data/_includes/_navbar.html +20 -0
- data/_layouts/default.html +41 -0
- data/_layouts/page.html +39 -0
- data/_layouts/post.html +5 -0
- data/_sass/bootstrap/_alert.scss +51 -0
- data/_sass/bootstrap/_badge.scss +47 -0
- data/_sass/bootstrap/_breadcrumb.scss +41 -0
- data/_sass/bootstrap/_button-group.scss +172 -0
- data/_sass/bootstrap/_buttons.scss +144 -0
- data/_sass/bootstrap/_card.scss +301 -0
- data/_sass/bootstrap/_carousel.scss +235 -0
- data/_sass/bootstrap/_close.scss +34 -0
- data/_sass/bootstrap/_code.scss +56 -0
- data/_sass/bootstrap/_custom-forms.scss +420 -0
- data/_sass/bootstrap/_dropdown.scss +166 -0
- data/_sass/bootstrap/_forms.scss +335 -0
- data/_sass/bootstrap/_functions.scss +86 -0
- data/_sass/bootstrap/_grid.scss +52 -0
- data/_sass/bootstrap/_images.scss +42 -0
- data/_sass/bootstrap/_input-group.scss +159 -0
- data/_sass/bootstrap/_jumbotron.scss +16 -0
- data/_sass/bootstrap/_list-group.scss +115 -0
- data/_sass/bootstrap/_media.scss +8 -0
- data/_sass/bootstrap/_mixins.scss +41 -0
- data/_sass/bootstrap/_modal.scss +168 -0
- data/_sass/bootstrap/_nav.scss +118 -0
- data/_sass/bootstrap/_navbar.scss +299 -0
- data/_sass/bootstrap/_pagination.scss +78 -0
- data/_sass/bootstrap/_popover.scss +183 -0
- data/_sass/bootstrap/_print.scss +124 -0
- data/_sass/bootstrap/_progress.scss +34 -0
- data/_sass/bootstrap/_reboot.scss +482 -0
- data/_sass/bootstrap/_root.scss +19 -0
- data/_sass/bootstrap/_tables.scss +188 -0
- data/_sass/bootstrap/_tooltip.scss +115 -0
- data/_sass/bootstrap/_transitions.scss +22 -0
- data/_sass/bootstrap/_type.scss +125 -0
- data/_sass/bootstrap/_utilities.scss +15 -0
- data/_sass/bootstrap/_variables.scss +930 -0
- data/_sass/bootstrap/bootstrap-grid.scss +32 -0
- data/_sass/bootstrap/bootstrap-reboot.scss +12 -0
- data/_sass/bootstrap/bootstrap.scss +42 -0
- data/_sass/bootstrap/mixins/_alert.scss +13 -0
- data/_sass/bootstrap/mixins/_background-variant.scss +21 -0
- data/_sass/bootstrap/mixins/_badge.scss +12 -0
- data/_sass/bootstrap/mixins/_border-radius.scss +35 -0
- data/_sass/bootstrap/mixins/_box-shadow.scss +5 -0
- data/_sass/bootstrap/mixins/_breakpoints.scss +123 -0
- data/_sass/bootstrap/mixins/_buttons.scss +109 -0
- data/_sass/bootstrap/mixins/_caret.scss +66 -0
- data/_sass/bootstrap/mixins/_clearfix.scss +7 -0
- data/_sass/bootstrap/mixins/_float.scss +11 -0
- data/_sass/bootstrap/mixins/_forms.scss +137 -0
- data/_sass/bootstrap/mixins/_gradients.scss +45 -0
- data/_sass/bootstrap/mixins/_grid-framework.scss +67 -0
- data/_sass/bootstrap/mixins/_grid.scss +52 -0
- data/_sass/bootstrap/mixins/_hover.scss +37 -0
- data/_sass/bootstrap/mixins/_image.scss +36 -0
- data/_sass/bootstrap/mixins/_list-group.scss +21 -0
- data/_sass/bootstrap/mixins/_lists.scss +7 -0
- data/_sass/bootstrap/mixins/_nav-divider.scss +10 -0
- data/_sass/bootstrap/mixins/_pagination.scss +22 -0
- data/_sass/bootstrap/mixins/_reset-text.scss +17 -0
- data/_sass/bootstrap/mixins/_resize.scss +6 -0
- data/_sass/bootstrap/mixins/_screen-reader.scss +33 -0
- data/_sass/bootstrap/mixins/_size.scss +6 -0
- data/_sass/bootstrap/mixins/_table-row.scss +30 -0
- data/_sass/bootstrap/mixins/_text-emphasis.scss +14 -0
- data/_sass/bootstrap/mixins/_text-hide.scss +11 -0
- data/_sass/bootstrap/mixins/_text-truncate.scss +8 -0
- data/_sass/bootstrap/mixins/_transition.scss +13 -0
- data/_sass/bootstrap/mixins/_visibility.scss +7 -0
- data/_sass/bootstrap/utilities/_align.scss +8 -0
- data/_sass/bootstrap/utilities/_background.scss +19 -0
- data/_sass/bootstrap/utilities/_borders.scss +59 -0
- data/_sass/bootstrap/utilities/_clearfix.scss +3 -0
- data/_sass/bootstrap/utilities/_display.scss +38 -0
- data/_sass/bootstrap/utilities/_embed.scss +52 -0
- data/_sass/bootstrap/utilities/_flex.scss +51 -0
- data/_sass/bootstrap/utilities/_float.scss +9 -0
- data/_sass/bootstrap/utilities/_position.scss +37 -0
- data/_sass/bootstrap/utilities/_screenreaders.scss +11 -0
- data/_sass/bootstrap/utilities/_shadows.scss +6 -0
- data/_sass/bootstrap/utilities/_sizing.scss +12 -0
- data/_sass/bootstrap/utilities/_spacing.scss +51 -0
- data/_sass/bootstrap/utilities/_text.scss +58 -0
- data/_sass/bootstrap/utilities/_visibility.scss +11 -0
- data/_sass/style.scss +1569 -0
- metadata +91 -1
@@ -0,0 +1,301 @@
|
|
1
|
+
//
|
2
|
+
// Base styles
|
3
|
+
//
|
4
|
+
|
5
|
+
.card {
|
6
|
+
position: relative;
|
7
|
+
display: flex;
|
8
|
+
flex-direction: column;
|
9
|
+
min-width: 0;
|
10
|
+
word-wrap: break-word;
|
11
|
+
background-color: $card-bg;
|
12
|
+
background-clip: border-box;
|
13
|
+
border: $card-border-width solid $card-border-color;
|
14
|
+
@include border-radius($card-border-radius);
|
15
|
+
|
16
|
+
> hr {
|
17
|
+
margin-right: 0;
|
18
|
+
margin-left: 0;
|
19
|
+
}
|
20
|
+
|
21
|
+
> .list-group:first-child {
|
22
|
+
.list-group-item:first-child {
|
23
|
+
@include border-top-radius($card-border-radius);
|
24
|
+
}
|
25
|
+
}
|
26
|
+
|
27
|
+
> .list-group:last-child {
|
28
|
+
.list-group-item:last-child {
|
29
|
+
@include border-bottom-radius($card-border-radius);
|
30
|
+
}
|
31
|
+
}
|
32
|
+
}
|
33
|
+
|
34
|
+
.card-body {
|
35
|
+
// Enable `flex-grow: 1` for decks and groups so that card blocks take up
|
36
|
+
// as much space as possible, ensuring footers are aligned to the bottom.
|
37
|
+
flex: 1 1 auto;
|
38
|
+
padding: $card-spacer-x;
|
39
|
+
}
|
40
|
+
|
41
|
+
.card-title {
|
42
|
+
margin-bottom: $card-spacer-y;
|
43
|
+
}
|
44
|
+
|
45
|
+
.card-subtitle {
|
46
|
+
margin-top: -($card-spacer-y / 2);
|
47
|
+
margin-bottom: 0;
|
48
|
+
}
|
49
|
+
|
50
|
+
.card-text:last-child {
|
51
|
+
margin-bottom: 0;
|
52
|
+
}
|
53
|
+
|
54
|
+
.card-link {
|
55
|
+
@include hover {
|
56
|
+
text-decoration: none;
|
57
|
+
}
|
58
|
+
|
59
|
+
+ .card-link {
|
60
|
+
margin-left: $card-spacer-x;
|
61
|
+
}
|
62
|
+
}
|
63
|
+
|
64
|
+
//
|
65
|
+
// Optional textual caps
|
66
|
+
//
|
67
|
+
|
68
|
+
.card-header {
|
69
|
+
padding: $card-spacer-y $card-spacer-x;
|
70
|
+
margin-bottom: 0; // Removes the default margin-bottom of <hN>
|
71
|
+
background-color: $card-cap-bg;
|
72
|
+
border-bottom: $card-border-width solid $card-border-color;
|
73
|
+
|
74
|
+
&:first-child {
|
75
|
+
@include border-radius($card-inner-border-radius $card-inner-border-radius 0 0);
|
76
|
+
}
|
77
|
+
|
78
|
+
+ .list-group {
|
79
|
+
.list-group-item:first-child {
|
80
|
+
border-top: 0;
|
81
|
+
}
|
82
|
+
}
|
83
|
+
}
|
84
|
+
|
85
|
+
.card-footer {
|
86
|
+
padding: $card-spacer-y $card-spacer-x;
|
87
|
+
background-color: $card-cap-bg;
|
88
|
+
border-top: $card-border-width solid $card-border-color;
|
89
|
+
|
90
|
+
&:last-child {
|
91
|
+
@include border-radius(0 0 $card-inner-border-radius $card-inner-border-radius);
|
92
|
+
}
|
93
|
+
}
|
94
|
+
|
95
|
+
|
96
|
+
//
|
97
|
+
// Header navs
|
98
|
+
//
|
99
|
+
|
100
|
+
.card-header-tabs {
|
101
|
+
margin-right: -($card-spacer-x / 2);
|
102
|
+
margin-bottom: -$card-spacer-y;
|
103
|
+
margin-left: -($card-spacer-x / 2);
|
104
|
+
border-bottom: 0;
|
105
|
+
}
|
106
|
+
|
107
|
+
.card-header-pills {
|
108
|
+
margin-right: -($card-spacer-x / 2);
|
109
|
+
margin-left: -($card-spacer-x / 2);
|
110
|
+
}
|
111
|
+
|
112
|
+
// Card image
|
113
|
+
.card-img-overlay {
|
114
|
+
position: absolute;
|
115
|
+
top: 0;
|
116
|
+
right: 0;
|
117
|
+
bottom: 0;
|
118
|
+
left: 0;
|
119
|
+
padding: $card-img-overlay-padding;
|
120
|
+
}
|
121
|
+
|
122
|
+
.card-img {
|
123
|
+
width: 100%; // Required because we use flexbox and this inherently applies align-self: stretch
|
124
|
+
@include border-radius($card-inner-border-radius);
|
125
|
+
}
|
126
|
+
|
127
|
+
// Card image caps
|
128
|
+
.card-img-top {
|
129
|
+
width: 100%; // Required because we use flexbox and this inherently applies align-self: stretch
|
130
|
+
@include border-top-radius($card-inner-border-radius);
|
131
|
+
}
|
132
|
+
|
133
|
+
.card-img-bottom {
|
134
|
+
width: 100%; // Required because we use flexbox and this inherently applies align-self: stretch
|
135
|
+
@include border-bottom-radius($card-inner-border-radius);
|
136
|
+
}
|
137
|
+
|
138
|
+
|
139
|
+
// Card deck
|
140
|
+
|
141
|
+
.card-deck {
|
142
|
+
display: flex;
|
143
|
+
flex-direction: column;
|
144
|
+
|
145
|
+
.card {
|
146
|
+
margin-bottom: $card-deck-margin;
|
147
|
+
}
|
148
|
+
|
149
|
+
@include media-breakpoint-up(sm) {
|
150
|
+
flex-flow: row wrap;
|
151
|
+
margin-right: -$card-deck-margin;
|
152
|
+
margin-left: -$card-deck-margin;
|
153
|
+
|
154
|
+
.card {
|
155
|
+
display: flex;
|
156
|
+
// Flexbugs #4: https://github.com/philipwalton/flexbugs#flexbug-4
|
157
|
+
flex: 1 0 0%;
|
158
|
+
flex-direction: column;
|
159
|
+
margin-right: $card-deck-margin;
|
160
|
+
margin-bottom: 0; // Override the default
|
161
|
+
margin-left: $card-deck-margin;
|
162
|
+
}
|
163
|
+
}
|
164
|
+
}
|
165
|
+
|
166
|
+
|
167
|
+
//
|
168
|
+
// Card groups
|
169
|
+
//
|
170
|
+
|
171
|
+
.card-group {
|
172
|
+
display: flex;
|
173
|
+
flex-direction: column;
|
174
|
+
|
175
|
+
// The child selector allows nested `.card` within `.card-group`
|
176
|
+
// to display properly.
|
177
|
+
> .card {
|
178
|
+
margin-bottom: $card-group-margin;
|
179
|
+
}
|
180
|
+
|
181
|
+
@include media-breakpoint-up(sm) {
|
182
|
+
flex-flow: row wrap;
|
183
|
+
// The child selector allows nested `.card` within `.card-group`
|
184
|
+
// to display properly.
|
185
|
+
> .card {
|
186
|
+
// Flexbugs #4: https://github.com/philipwalton/flexbugs#flexbug-4
|
187
|
+
flex: 1 0 0%;
|
188
|
+
margin-bottom: 0;
|
189
|
+
|
190
|
+
+ .card {
|
191
|
+
margin-left: 0;
|
192
|
+
border-left: 0;
|
193
|
+
}
|
194
|
+
|
195
|
+
// Handle rounded corners
|
196
|
+
@if $enable-rounded {
|
197
|
+
&:first-child {
|
198
|
+
@include border-right-radius(0);
|
199
|
+
|
200
|
+
.card-img-top,
|
201
|
+
.card-header {
|
202
|
+
border-top-right-radius: 0;
|
203
|
+
}
|
204
|
+
.card-img-bottom,
|
205
|
+
.card-footer {
|
206
|
+
border-bottom-right-radius: 0;
|
207
|
+
}
|
208
|
+
}
|
209
|
+
|
210
|
+
&:last-child {
|
211
|
+
@include border-left-radius(0);
|
212
|
+
|
213
|
+
.card-img-top,
|
214
|
+
.card-header {
|
215
|
+
border-top-left-radius: 0;
|
216
|
+
}
|
217
|
+
.card-img-bottom,
|
218
|
+
.card-footer {
|
219
|
+
border-bottom-left-radius: 0;
|
220
|
+
}
|
221
|
+
}
|
222
|
+
|
223
|
+
&:only-child {
|
224
|
+
@include border-radius($card-border-radius);
|
225
|
+
|
226
|
+
.card-img-top,
|
227
|
+
.card-header {
|
228
|
+
@include border-top-radius($card-border-radius);
|
229
|
+
}
|
230
|
+
.card-img-bottom,
|
231
|
+
.card-footer {
|
232
|
+
@include border-bottom-radius($card-border-radius);
|
233
|
+
}
|
234
|
+
}
|
235
|
+
|
236
|
+
&:not(:first-child):not(:last-child):not(:only-child) {
|
237
|
+
@include border-radius(0);
|
238
|
+
|
239
|
+
.card-img-top,
|
240
|
+
.card-img-bottom,
|
241
|
+
.card-header,
|
242
|
+
.card-footer {
|
243
|
+
@include border-radius(0);
|
244
|
+
}
|
245
|
+
}
|
246
|
+
}
|
247
|
+
}
|
248
|
+
}
|
249
|
+
}
|
250
|
+
|
251
|
+
|
252
|
+
//
|
253
|
+
// Columns
|
254
|
+
//
|
255
|
+
|
256
|
+
.card-columns {
|
257
|
+
.card {
|
258
|
+
margin-bottom: $card-columns-margin;
|
259
|
+
}
|
260
|
+
|
261
|
+
@include media-breakpoint-up(sm) {
|
262
|
+
column-count: $card-columns-count;
|
263
|
+
column-gap: $card-columns-gap;
|
264
|
+
orphans: 1;
|
265
|
+
widows: 1;
|
266
|
+
|
267
|
+
.card {
|
268
|
+
display: inline-block; // Don't let them vertically span multiple columns
|
269
|
+
width: 100%; // Don't let their width change
|
270
|
+
}
|
271
|
+
}
|
272
|
+
}
|
273
|
+
|
274
|
+
|
275
|
+
//
|
276
|
+
// Accordion
|
277
|
+
//
|
278
|
+
|
279
|
+
.accordion {
|
280
|
+
.card:not(:first-of-type):not(:last-of-type) {
|
281
|
+
border-bottom: 0;
|
282
|
+
border-radius: 0;
|
283
|
+
}
|
284
|
+
|
285
|
+
.card:not(:first-of-type) {
|
286
|
+
.card-header:first-child {
|
287
|
+
border-radius: 0;
|
288
|
+
}
|
289
|
+
}
|
290
|
+
|
291
|
+
.card:first-of-type {
|
292
|
+
border-bottom: 0;
|
293
|
+
border-bottom-right-radius: 0;
|
294
|
+
border-bottom-left-radius: 0;
|
295
|
+
}
|
296
|
+
|
297
|
+
.card:last-of-type {
|
298
|
+
border-top-left-radius: 0;
|
299
|
+
border-top-right-radius: 0;
|
300
|
+
}
|
301
|
+
}
|
@@ -0,0 +1,235 @@
|
|
1
|
+
// Notes on the classes:
|
2
|
+
//
|
3
|
+
// 1. The .carousel-item-left and .carousel-item-right is used to indicate where
|
4
|
+
// the active slide is heading.
|
5
|
+
// 2. .active.carousel-item is the current slide.
|
6
|
+
// 3. .active.carousel-item-left and .active.carousel-item-right is the current
|
7
|
+
// slide in its in-transition state. Only one of these occurs at a time.
|
8
|
+
// 4. .carousel-item-next.carousel-item-left and .carousel-item-prev.carousel-item-right
|
9
|
+
// is the upcoming slide in transition.
|
10
|
+
|
11
|
+
.carousel {
|
12
|
+
position: relative;
|
13
|
+
}
|
14
|
+
|
15
|
+
.carousel-inner {
|
16
|
+
position: relative;
|
17
|
+
width: 100%;
|
18
|
+
overflow: hidden;
|
19
|
+
}
|
20
|
+
|
21
|
+
.carousel-item {
|
22
|
+
position: relative;
|
23
|
+
display: none;
|
24
|
+
align-items: center;
|
25
|
+
width: 100%;
|
26
|
+
@include transition($carousel-transition);
|
27
|
+
backface-visibility: hidden;
|
28
|
+
perspective: 1000px;
|
29
|
+
}
|
30
|
+
|
31
|
+
.carousel-item.active,
|
32
|
+
.carousel-item-next,
|
33
|
+
.carousel-item-prev {
|
34
|
+
display: block;
|
35
|
+
}
|
36
|
+
|
37
|
+
.carousel-item-next,
|
38
|
+
.carousel-item-prev {
|
39
|
+
position: absolute;
|
40
|
+
top: 0;
|
41
|
+
}
|
42
|
+
|
43
|
+
.carousel-item-next.carousel-item-left,
|
44
|
+
.carousel-item-prev.carousel-item-right {
|
45
|
+
transform: translateX(0);
|
46
|
+
|
47
|
+
@supports (transform-style: preserve-3d) {
|
48
|
+
transform: translate3d(0, 0, 0);
|
49
|
+
}
|
50
|
+
}
|
51
|
+
|
52
|
+
.carousel-item-next,
|
53
|
+
.active.carousel-item-right {
|
54
|
+
transform: translateX(100%);
|
55
|
+
|
56
|
+
@supports (transform-style: preserve-3d) {
|
57
|
+
transform: translate3d(100%, 0, 0);
|
58
|
+
}
|
59
|
+
}
|
60
|
+
|
61
|
+
.carousel-item-prev,
|
62
|
+
.active.carousel-item-left {
|
63
|
+
transform: translateX(-100%);
|
64
|
+
|
65
|
+
@supports (transform-style: preserve-3d) {
|
66
|
+
transform: translate3d(-100%, 0, 0);
|
67
|
+
}
|
68
|
+
}
|
69
|
+
|
70
|
+
|
71
|
+
//
|
72
|
+
// Alternate transitions
|
73
|
+
//
|
74
|
+
|
75
|
+
.carousel-fade {
|
76
|
+
.carousel-item {
|
77
|
+
opacity: 0;
|
78
|
+
transition-duration: .6s;
|
79
|
+
transition-property: opacity;
|
80
|
+
}
|
81
|
+
|
82
|
+
.carousel-item.active,
|
83
|
+
.carousel-item-next.carousel-item-left,
|
84
|
+
.carousel-item-prev.carousel-item-right {
|
85
|
+
opacity: 1;
|
86
|
+
}
|
87
|
+
|
88
|
+
.active.carousel-item-left,
|
89
|
+
.active.carousel-item-right {
|
90
|
+
opacity: 0;
|
91
|
+
}
|
92
|
+
|
93
|
+
.carousel-item-next,
|
94
|
+
.carousel-item-prev,
|
95
|
+
.carousel-item.active,
|
96
|
+
.active.carousel-item-left,
|
97
|
+
.active.carousel-item-prev {
|
98
|
+
transform: translateX(0);
|
99
|
+
|
100
|
+
@supports (transform-style: preserve-3d) {
|
101
|
+
transform: translate3d(0, 0, 0);
|
102
|
+
}
|
103
|
+
}
|
104
|
+
}
|
105
|
+
|
106
|
+
|
107
|
+
//
|
108
|
+
// Left/right controls for nav
|
109
|
+
//
|
110
|
+
|
111
|
+
.carousel-control-prev,
|
112
|
+
.carousel-control-next {
|
113
|
+
position: absolute;
|
114
|
+
top: 0;
|
115
|
+
bottom: 0;
|
116
|
+
// Use flex for alignment (1-3)
|
117
|
+
display: flex; // 1. allow flex styles
|
118
|
+
align-items: center; // 2. vertically center contents
|
119
|
+
justify-content: center; // 3. horizontally center contents
|
120
|
+
width: $carousel-control-width;
|
121
|
+
color: $carousel-control-color;
|
122
|
+
text-align: center;
|
123
|
+
opacity: $carousel-control-opacity;
|
124
|
+
// We can't have a transition here because WebKit cancels the carousel
|
125
|
+
// animation if you trip this while in the middle of another animation.
|
126
|
+
|
127
|
+
// Hover/focus state
|
128
|
+
@include hover-focus {
|
129
|
+
color: $carousel-control-color;
|
130
|
+
text-decoration: none;
|
131
|
+
outline: 0;
|
132
|
+
opacity: .9;
|
133
|
+
}
|
134
|
+
}
|
135
|
+
.carousel-control-prev {
|
136
|
+
left: 0;
|
137
|
+
@if $enable-gradients {
|
138
|
+
background: linear-gradient(90deg, rgba($black, .25), rgba($black, .001));
|
139
|
+
}
|
140
|
+
}
|
141
|
+
.carousel-control-next {
|
142
|
+
right: 0;
|
143
|
+
@if $enable-gradients {
|
144
|
+
background: linear-gradient(270deg, rgba($black, .25), rgba($black, .001));
|
145
|
+
}
|
146
|
+
}
|
147
|
+
|
148
|
+
// Icons for within
|
149
|
+
.carousel-control-prev-icon,
|
150
|
+
.carousel-control-next-icon {
|
151
|
+
display: inline-block;
|
152
|
+
width: $carousel-control-icon-width;
|
153
|
+
height: $carousel-control-icon-width;
|
154
|
+
background: transparent no-repeat center center;
|
155
|
+
background-size: 100% 100%;
|
156
|
+
}
|
157
|
+
.carousel-control-prev-icon {
|
158
|
+
background-image: $carousel-control-prev-icon-bg;
|
159
|
+
}
|
160
|
+
.carousel-control-next-icon {
|
161
|
+
background-image: $carousel-control-next-icon-bg;
|
162
|
+
}
|
163
|
+
|
164
|
+
|
165
|
+
// Optional indicator pips
|
166
|
+
//
|
167
|
+
// Add an ordered list with the following class and add a list item for each
|
168
|
+
// slide your carousel holds.
|
169
|
+
|
170
|
+
.carousel-indicators {
|
171
|
+
position: absolute;
|
172
|
+
right: 0;
|
173
|
+
bottom: 10px;
|
174
|
+
left: 0;
|
175
|
+
z-index: 15;
|
176
|
+
display: flex;
|
177
|
+
justify-content: center;
|
178
|
+
padding-left: 0; // override <ol> default
|
179
|
+
// Use the .carousel-control's width as margin so we don't overlay those
|
180
|
+
margin-right: $carousel-control-width;
|
181
|
+
margin-left: $carousel-control-width;
|
182
|
+
list-style: none;
|
183
|
+
|
184
|
+
li {
|
185
|
+
position: relative;
|
186
|
+
flex: 0 1 auto;
|
187
|
+
width: $carousel-indicator-width;
|
188
|
+
height: $carousel-indicator-height;
|
189
|
+
margin-right: $carousel-indicator-spacer;
|
190
|
+
margin-left: $carousel-indicator-spacer;
|
191
|
+
text-indent: -999px;
|
192
|
+
background-color: rgba($carousel-indicator-active-bg, .5);
|
193
|
+
|
194
|
+
// Use pseudo classes to increase the hit area by 10px on top and bottom.
|
195
|
+
&::before {
|
196
|
+
position: absolute;
|
197
|
+
top: -10px;
|
198
|
+
left: 0;
|
199
|
+
display: inline-block;
|
200
|
+
width: 100%;
|
201
|
+
height: 10px;
|
202
|
+
content: "";
|
203
|
+
}
|
204
|
+
&::after {
|
205
|
+
position: absolute;
|
206
|
+
bottom: -10px;
|
207
|
+
left: 0;
|
208
|
+
display: inline-block;
|
209
|
+
width: 100%;
|
210
|
+
height: 10px;
|
211
|
+
content: "";
|
212
|
+
}
|
213
|
+
}
|
214
|
+
|
215
|
+
.active {
|
216
|
+
background-color: $carousel-indicator-active-bg;
|
217
|
+
}
|
218
|
+
}
|
219
|
+
|
220
|
+
|
221
|
+
// Optional captions
|
222
|
+
//
|
223
|
+
//
|
224
|
+
|
225
|
+
.carousel-caption {
|
226
|
+
position: absolute;
|
227
|
+
right: ((100% - $carousel-caption-width) / 2);
|
228
|
+
bottom: 20px;
|
229
|
+
left: ((100% - $carousel-caption-width) / 2);
|
230
|
+
z-index: 10;
|
231
|
+
padding-top: 20px;
|
232
|
+
padding-bottom: 20px;
|
233
|
+
color: $carousel-caption-color;
|
234
|
+
text-align: center;
|
235
|
+
}
|
@@ -0,0 +1,34 @@
|
|
1
|
+
.close {
|
2
|
+
float: right;
|
3
|
+
font-size: $close-font-size;
|
4
|
+
font-weight: $close-font-weight;
|
5
|
+
line-height: 1;
|
6
|
+
color: $close-color;
|
7
|
+
text-shadow: $close-text-shadow;
|
8
|
+
opacity: .5;
|
9
|
+
|
10
|
+
@include hover-focus {
|
11
|
+
color: $close-color;
|
12
|
+
text-decoration: none;
|
13
|
+
opacity: .75;
|
14
|
+
}
|
15
|
+
|
16
|
+
// Opinionated: add "hand" cursor to non-disabled .close elements
|
17
|
+
&:not(:disabled):not(.disabled) {
|
18
|
+
cursor: pointer;
|
19
|
+
}
|
20
|
+
}
|
21
|
+
|
22
|
+
// Additional properties for button version
|
23
|
+
// iOS requires the button element instead of an anchor tag.
|
24
|
+
// If you want the anchor version, it requires `href="#"`.
|
25
|
+
// See https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile
|
26
|
+
|
27
|
+
// stylelint-disable property-no-vendor-prefix, selector-no-qualifying-type
|
28
|
+
button.close {
|
29
|
+
padding: 0;
|
30
|
+
background-color: transparent;
|
31
|
+
border: 0;
|
32
|
+
-webkit-appearance: none;
|
33
|
+
}
|
34
|
+
// stylelint-enable
|
@@ -0,0 +1,56 @@
|
|
1
|
+
// Inline and block code styles
|
2
|
+
code,
|
3
|
+
kbd,
|
4
|
+
pre,
|
5
|
+
samp {
|
6
|
+
font-family: $font-family-monospace;
|
7
|
+
}
|
8
|
+
|
9
|
+
// Inline code
|
10
|
+
code {
|
11
|
+
font-size: $code-font-size;
|
12
|
+
color: $code-color;
|
13
|
+
word-break: break-word;
|
14
|
+
|
15
|
+
// Streamline the style when inside anchors to avoid broken underline and more
|
16
|
+
a > & {
|
17
|
+
color: inherit;
|
18
|
+
}
|
19
|
+
}
|
20
|
+
|
21
|
+
// User input typically entered via keyboard
|
22
|
+
kbd {
|
23
|
+
padding: $kbd-padding-y $kbd-padding-x;
|
24
|
+
font-size: $kbd-font-size;
|
25
|
+
color: $kbd-color;
|
26
|
+
background-color: $kbd-bg;
|
27
|
+
@include border-radius($border-radius-sm);
|
28
|
+
@include box-shadow($kbd-box-shadow);
|
29
|
+
|
30
|
+
kbd {
|
31
|
+
padding: 0;
|
32
|
+
font-size: 100%;
|
33
|
+
font-weight: $nested-kbd-font-weight;
|
34
|
+
@include box-shadow(none);
|
35
|
+
}
|
36
|
+
}
|
37
|
+
|
38
|
+
// Blocks of code
|
39
|
+
pre {
|
40
|
+
display: block;
|
41
|
+
font-size: $code-font-size;
|
42
|
+
color: $pre-color;
|
43
|
+
|
44
|
+
// Account for some code outputs that place code tags in pre tags
|
45
|
+
code {
|
46
|
+
font-size: inherit;
|
47
|
+
color: inherit;
|
48
|
+
word-break: normal;
|
49
|
+
}
|
50
|
+
}
|
51
|
+
|
52
|
+
// Enable scrollable blocks of code
|
53
|
+
.pre-scrollable {
|
54
|
+
max-height: $pre-scrollable-max-height;
|
55
|
+
overflow-y: scroll;
|
56
|
+
}
|