loremGem 0.2.0
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 +7 -0
- data/.gitattributes +14 -0
- data/.gitignore +24 -0
- data/.travis.yml +17 -0
- data/CHANGELOG.md +37 -0
- data/CODE_OF_CONDUCT.md +49 -0
- data/Gemfile +12 -0
- data/LICENSE Bootstrap +21 -0
- data/LICENSE Lorem.txt +21 -0
- data/README.md +35 -0
- data/Rakefile +80 -0
- data/assets/javascript/bootstrap/alert.js +177 -0
- data/assets/javascript/bootstrap/button.js +166 -0
- data/assets/javascript/bootstrap/carousel.js +507 -0
- data/assets/javascript/bootstrap/collapse.js +366 -0
- data/assets/javascript/bootstrap/dropdown.js +488 -0
- data/assets/javascript/bootstrap/modal.js +584 -0
- data/assets/javascript/bootstrap/popover.js +205 -0
- data/assets/javascript/bootstrap/scrollspy.js +318 -0
- data/assets/javascript/bootstrap/tab.js +250 -0
- data/assets/javascript/bootstrap/tooltip.js +673 -0
- data/assets/javascript/bootstrap/util.js +131 -0
- data/assets/javascript/bootstrap-sprockets.js +11 -0
- data/assets/javascript/bootstrap.js +3926 -0
- data/assets/javascript/bootstrap.min.js +6 -0
- data/assets/javascript/lorem.js +24044 -0
- data/assets/stylesheets/_bootstrap-grid.scss +32 -0
- data/assets/stylesheets/_bootstrap-reboot.scss +12 -0
- data/assets/stylesheets/_bootstrap.scss +42 -0
- data/assets/stylesheets/bootstrap/_alert.scss +51 -0
- data/assets/stylesheets/bootstrap/_badge.scss +47 -0
- data/assets/stylesheets/bootstrap/_breadcrumb.scss +41 -0
- data/assets/stylesheets/bootstrap/_button-group.scss +172 -0
- data/assets/stylesheets/bootstrap/_buttons.scss +144 -0
- data/assets/stylesheets/bootstrap/_card.scss +301 -0
- data/assets/stylesheets/bootstrap/_carousel.scss +236 -0
- data/assets/stylesheets/bootstrap/_close.scss +34 -0
- data/assets/stylesheets/bootstrap/_code.scss +48 -0
- data/assets/stylesheets/bootstrap/_custom-forms.scss +421 -0
- data/assets/stylesheets/bootstrap/_dropdown.scss +166 -0
- data/assets/stylesheets/bootstrap/_forms.scss +335 -0
- data/assets/stylesheets/bootstrap/_functions.scss +86 -0
- data/assets/stylesheets/bootstrap/_grid.scss +52 -0
- data/assets/stylesheets/bootstrap/_images.scss +42 -0
- data/assets/stylesheets/bootstrap/_input-group.scss +158 -0
- data/assets/stylesheets/bootstrap/_jumbotron.scss +16 -0
- data/assets/stylesheets/bootstrap/_list-group.scss +115 -0
- data/assets/stylesheets/bootstrap/_media.scss +8 -0
- data/assets/stylesheets/bootstrap/_mixins.scss +41 -0
- data/assets/stylesheets/bootstrap/_modal.scss +168 -0
- data/assets/stylesheets/bootstrap/_nav.scss +118 -0
- data/assets/stylesheets/bootstrap/_navbar.scss +299 -0
- data/assets/stylesheets/bootstrap/_pagination.scss +78 -0
- data/assets/stylesheets/bootstrap/_popover.scss +183 -0
- data/assets/stylesheets/bootstrap/_print.scss +141 -0
- data/assets/stylesheets/bootstrap/_progress.scss +34 -0
- data/assets/stylesheets/bootstrap/_reboot.scss +480 -0
- data/assets/stylesheets/bootstrap/_root.scss +19 -0
- data/assets/stylesheets/bootstrap/_tables.scss +188 -0
- data/assets/stylesheets/bootstrap/_tooltip.scss +115 -0
- data/assets/stylesheets/bootstrap/_transitions.scss +22 -0
- data/assets/stylesheets/bootstrap/_type.scss +125 -0
- data/assets/stylesheets/bootstrap/_utilities.scss +15 -0
- data/assets/stylesheets/bootstrap/_variables.scss +929 -0
- data/assets/stylesheets/bootstrap/mixins/_alert.scss +13 -0
- data/assets/stylesheets/bootstrap/mixins/_background-variant.scss +21 -0
- data/assets/stylesheets/bootstrap/mixins/_badge.scss +12 -0
- data/assets/stylesheets/bootstrap/mixins/_border-radius.scss +35 -0
- data/assets/stylesheets/bootstrap/mixins/_box-shadow.scss +5 -0
- data/assets/stylesheets/bootstrap/mixins/_breakpoints.scss +123 -0
- data/assets/stylesheets/bootstrap/mixins/_buttons.scss +109 -0
- data/assets/stylesheets/bootstrap/mixins/_caret.scss +66 -0
- data/assets/stylesheets/bootstrap/mixins/_clearfix.scss +7 -0
- data/assets/stylesheets/bootstrap/mixins/_float.scss +11 -0
- data/assets/stylesheets/bootstrap/mixins/_forms.scss +147 -0
- data/assets/stylesheets/bootstrap/mixins/_gradients.scss +45 -0
- data/assets/stylesheets/bootstrap/mixins/_grid-framework.scss +67 -0
- data/assets/stylesheets/bootstrap/mixins/_grid.scss +52 -0
- data/assets/stylesheets/bootstrap/mixins/_hover.scss +37 -0
- data/assets/stylesheets/bootstrap/mixins/_image.scss +36 -0
- data/assets/stylesheets/bootstrap/mixins/_list-group.scss +21 -0
- data/assets/stylesheets/bootstrap/mixins/_lists.scss +7 -0
- data/assets/stylesheets/bootstrap/mixins/_nav-divider.scss +10 -0
- data/assets/stylesheets/bootstrap/mixins/_pagination.scss +22 -0
- data/assets/stylesheets/bootstrap/mixins/_reset-text.scss +17 -0
- data/assets/stylesheets/bootstrap/mixins/_resize.scss +6 -0
- data/assets/stylesheets/bootstrap/mixins/_screen-reader.scss +33 -0
- data/assets/stylesheets/bootstrap/mixins/_size.scss +6 -0
- data/assets/stylesheets/bootstrap/mixins/_table-row.scss +30 -0
- data/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss +14 -0
- data/assets/stylesheets/bootstrap/mixins/_text-hide.scss +13 -0
- data/assets/stylesheets/bootstrap/mixins/_text-truncate.scss +8 -0
- data/assets/stylesheets/bootstrap/mixins/_transition.scss +13 -0
- data/assets/stylesheets/bootstrap/mixins/_visibility.scss +7 -0
- data/assets/stylesheets/bootstrap/utilities/_align.scss +8 -0
- data/assets/stylesheets/bootstrap/utilities/_background.scss +19 -0
- data/assets/stylesheets/bootstrap/utilities/_borders.scss +59 -0
- data/assets/stylesheets/bootstrap/utilities/_clearfix.scss +3 -0
- data/assets/stylesheets/bootstrap/utilities/_display.scss +38 -0
- data/assets/stylesheets/bootstrap/utilities/_embed.scss +52 -0
- data/assets/stylesheets/bootstrap/utilities/_flex.scss +51 -0
- data/assets/stylesheets/bootstrap/utilities/_float.scss +9 -0
- data/assets/stylesheets/bootstrap/utilities/_position.scss +37 -0
- data/assets/stylesheets/bootstrap/utilities/_screenreaders.scss +11 -0
- data/assets/stylesheets/bootstrap/utilities/_shadows.scss +6 -0
- data/assets/stylesheets/bootstrap/utilities/_sizing.scss +12 -0
- data/assets/stylesheets/bootstrap/utilities/_spacing.scss +51 -0
- data/assets/stylesheets/bootstrap/utilities/_text.scss +58 -0
- data/assets/stylesheets/bootstrap/utilities/_visibility.scss +11 -0
- data/assets/stylesheets/lorem.css +23980 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/lib/loremGem/engine.rb +12 -0
- data/lib/loremGem/version.rb +4 -0
- data/lib/loremGem.rb +74 -0
- data/loremGem.gemspec +50 -0
- data/tasks/updater/js.rb +68 -0
- data/tasks/updater/logger.rb +57 -0
- data/tasks/updater/network.rb +103 -0
- data/tasks/updater/scss.rb +26 -0
- data/tasks/updater.rb +67 -0
- data/test/dummy_rails/README.rdoc +3 -0
- data/test/dummy_rails/Rakefile +6 -0
- data/test/dummy_rails/app/assets/images/.keep +0 -0
- data/test/dummy_rails/app/assets/javascripts/application.js +7 -0
- data/test/dummy_rails/app/assets/stylesheets/application.sass +4 -0
- data/test/dummy_rails/app/controllers/application_controller.rb +5 -0
- data/test/dummy_rails/app/controllers/pages_controller.rb +4 -0
- data/test/dummy_rails/app/helpers/application_helper.rb +2 -0
- data/test/dummy_rails/app/views/layouts/application.html.erb +14 -0
- data/test/dummy_rails/app/views/pages/root.html.slim +58 -0
- data/test/dummy_rails/config/application.rb +34 -0
- data/test/dummy_rails/config/boot.rb +5 -0
- data/test/dummy_rails/config/environment.rb +5 -0
- data/test/dummy_rails/config/environments/development.rb +23 -0
- data/test/dummy_rails/config/environments/production.rb +82 -0
- data/test/dummy_rails/config/environments/test.rb +38 -0
- data/test/dummy_rails/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy_rails/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy_rails/config/initializers/inflections.rb +16 -0
- data/test/dummy_rails/config/initializers/mime_types.rb +5 -0
- data/test/dummy_rails/config/initializers/secret_token.rb +18 -0
- data/test/dummy_rails/config/initializers/session_store.rb +3 -0
- data/test/dummy_rails/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy_rails/config/locales/en.yml +3 -0
- data/test/dummy_rails/config/locales/es.yml +3 -0
- data/test/dummy_rails/config/routes.rb +3 -0
- data/test/dummy_rails/config.ru +4 -0
- data/test/dummy_rails/log/.keep +0 -0
- data/test/gemfiles/rails_4_2.gemfile +7 -0
- data/test/gemfiles/rails_5_0.gemfile +8 -0
- data/test/gemfiles/rails_5_1.gemfile +8 -0
- data/test/rails_test.rb +24 -0
- data/test/support/dummy_rails_integration.rb +29 -0
- data/test/support/reporting.rb +27 -0
- data/test/test_helper.rb +35 -0
- data/test/test_helper_rails.rb +6 -0
- metadata +480 -0
|
@@ -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,236 @@
|
|
|
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
|
+
cursor: pointer;
|
|
193
|
+
background-color: rgba($carousel-indicator-active-bg, .5);
|
|
194
|
+
|
|
195
|
+
// Use pseudo classes to increase the hit area by 10px on top and bottom.
|
|
196
|
+
&::before {
|
|
197
|
+
position: absolute;
|
|
198
|
+
top: -10px;
|
|
199
|
+
left: 0;
|
|
200
|
+
display: inline-block;
|
|
201
|
+
width: 100%;
|
|
202
|
+
height: 10px;
|
|
203
|
+
content: "";
|
|
204
|
+
}
|
|
205
|
+
&::after {
|
|
206
|
+
position: absolute;
|
|
207
|
+
bottom: -10px;
|
|
208
|
+
left: 0;
|
|
209
|
+
display: inline-block;
|
|
210
|
+
width: 100%;
|
|
211
|
+
height: 10px;
|
|
212
|
+
content: "";
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.active {
|
|
217
|
+
background-color: $carousel-indicator-active-bg;
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
|
|
222
|
+
// Optional captions
|
|
223
|
+
//
|
|
224
|
+
//
|
|
225
|
+
|
|
226
|
+
.carousel-caption {
|
|
227
|
+
position: absolute;
|
|
228
|
+
right: ((100% - $carousel-caption-width) / 2);
|
|
229
|
+
bottom: 20px;
|
|
230
|
+
left: ((100% - $carousel-caption-width) / 2);
|
|
231
|
+
z-index: 10;
|
|
232
|
+
padding-top: 20px;
|
|
233
|
+
padding-bottom: 20px;
|
|
234
|
+
color: $carousel-caption-color;
|
|
235
|
+
text-align: center;
|
|
236
|
+
}
|
|
@@ -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,48 @@
|
|
|
1
|
+
// Inline code
|
|
2
|
+
code {
|
|
3
|
+
font-size: $code-font-size;
|
|
4
|
+
color: $code-color;
|
|
5
|
+
word-break: break-word;
|
|
6
|
+
|
|
7
|
+
// Streamline the style when inside anchors to avoid broken underline and more
|
|
8
|
+
a > & {
|
|
9
|
+
color: inherit;
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
// User input typically entered via keyboard
|
|
14
|
+
kbd {
|
|
15
|
+
padding: $kbd-padding-y $kbd-padding-x;
|
|
16
|
+
font-size: $kbd-font-size;
|
|
17
|
+
color: $kbd-color;
|
|
18
|
+
background-color: $kbd-bg;
|
|
19
|
+
@include border-radius($border-radius-sm);
|
|
20
|
+
@include box-shadow($kbd-box-shadow);
|
|
21
|
+
|
|
22
|
+
kbd {
|
|
23
|
+
padding: 0;
|
|
24
|
+
font-size: 100%;
|
|
25
|
+
font-weight: $nested-kbd-font-weight;
|
|
26
|
+
@include box-shadow(none);
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
// Blocks of code
|
|
31
|
+
pre {
|
|
32
|
+
display: block;
|
|
33
|
+
font-size: $code-font-size;
|
|
34
|
+
color: $pre-color;
|
|
35
|
+
|
|
36
|
+
// Account for some code outputs that place code tags in pre tags
|
|
37
|
+
code {
|
|
38
|
+
font-size: inherit;
|
|
39
|
+
color: inherit;
|
|
40
|
+
word-break: normal;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
// Enable scrollable blocks of code
|
|
45
|
+
.pre-scrollable {
|
|
46
|
+
max-height: $pre-scrollable-max-height;
|
|
47
|
+
overflow-y: scroll;
|
|
48
|
+
}
|