jekyll-theme-pga-default 0.1.0 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_includes/component.html +29 -0
- data/_includes/foot.html +3 -0
- data/_includes/head.html +20 -0
- data/_includes/header.html +34 -0
- data/_layouts/default.html +12 -1
- data/_sass/_articles.scss +324 -0
- data/_sass/_buttons.scss +17 -0
- data/_sass/_cards.scss +26 -0
- data/_sass/_components.scss +577 -0
- data/_sass/_font-awesome.scss +2337 -0
- data/_sass/_fonts.scss +0 -0
- data/_sass/_footer.scss +93 -0
- data/_sass/_form.scss +81 -0
- data/_sass/_functions.scss +86 -0
- data/_sass/_header.scss +282 -0
- data/_sass/_highlight.scss +163 -0
- data/_sass/_icons-font.scss +47 -0
- data/_sass/_icons.scss +3 -0
- data/_sass/_jumbotron.scss +90 -0
- data/_sass/_keyframes.scss +23 -0
- data/_sass/_loading.scss +43 -0
- data/_sass/_mixin.scss +63 -0
- data/_sass/_navs.scss +64 -0
- data/_sass/_owl.carousel.scss +368 -0
- data/_sass/_reset.scss +5 -0
- data/_sass/_styleguide.scss +273 -0
- data/_sass/_table.scss +160 -0
- data/_sass/_tiles.scss +196 -0
- data/_sass/_typography.scss +151 -0
- data/_sass/_variables-custom.scss +612 -0
- data/_sass/components/_breadcrumbs.scss +42 -0
- data/_sass/components/_button.scss +17 -0
- data/_sass/components/_footer.scss +92 -0
- data/_sass/components/_header.scss +336 -0
- data/_sass/components/_nav-sidebar.scss +217 -0
- data/assets/fonts/.DS_Store +0 -0
- data/assets/fonts/icomoon/icomoon.eot +0 -0
- data/assets/fonts/icomoon/icomoon.svg +16 -0
- data/assets/fonts/icomoon/icomoon.ttf +0 -0
- data/assets/fonts/icomoon/icomoon.woff +0 -0
- data/assets/images/pga-logo-tm.svg +72 -0
- data/assets/scripts/bootstrap.min.js +7 -0
- data/assets/scripts/jquery-3.3.1.min.js +2 -0
- data/assets/scripts/popper.min.js +5 -0
- metadata +46 -3
@@ -0,0 +1,612 @@
|
|
1
|
+
// Variables
|
2
|
+
//
|
3
|
+
// Variables should follow the `$component-state-property-size` formula for
|
4
|
+
// consistent naming. Ex: $nav-link-disabled-color and $modal-content-box-shadow-xs.
|
5
|
+
//
|
6
|
+
// Color system
|
7
|
+
//
|
8
|
+
// stylelint-disable
|
9
|
+
$white: #fff !default;
|
10
|
+
$gray-100: #f3f3f3 !default;
|
11
|
+
$gray-200: #e2e2e2 !default;
|
12
|
+
$gray-300: #dee2e6 !default;
|
13
|
+
$gray-400: #ced4da !default;
|
14
|
+
$gray-500: #a59f92 !default;
|
15
|
+
$gray-600: #999999 !default;
|
16
|
+
$gray-700: #666666 !default;
|
17
|
+
$gray-800: #908a7e !default;
|
18
|
+
$gray-900: #212529 !default;
|
19
|
+
$black: #000 !default;
|
20
|
+
$grays: ()
|
21
|
+
!default;
|
22
|
+
$grays: map-merge(("100": $gray-100, "200": $gray-200, "300": $gray-300, "400": $gray-400, "500": $gray-500, "600": $gray-600, "700": $gray-700, "800": $gray-800, "900": $gray-900), $grays);
|
23
|
+
$blue: #0082CE !default;
|
24
|
+
$navy: #00234b !default;
|
25
|
+
$blue-grey: #7f91a5 !default;
|
26
|
+
$navy-50: rgba(0, 35, 75, 0.5) !default;
|
27
|
+
$indigo: #6610f2 !default;
|
28
|
+
$pink: #e56252 !default;
|
29
|
+
$purple: #a4447f !default;
|
30
|
+
$blush: #c53b3b !default;
|
31
|
+
$red: #9d2332 !default;
|
32
|
+
$orange: #ce8113 !default;
|
33
|
+
$yellow: #ce8113 !default;
|
34
|
+
$green: #577632 !default;
|
35
|
+
$teal: #337975 !default;
|
36
|
+
$cyan: #17a2b8 !default;
|
37
|
+
$gold: #ab9157 !default;
|
38
|
+
$blue-pale: #6c8cb1 !default;
|
39
|
+
$blue-dark: #243953 !default;
|
40
|
+
$navy-blue: #39516b !default;
|
41
|
+
$gray-darken: #3d3d3d !default;
|
42
|
+
$facebook-color: #546c7e !default;
|
43
|
+
$twitter-color: #889fb0 !default;
|
44
|
+
$google-color: #9d2332 !default;
|
45
|
+
$facebook-hover-color: $navy !default;
|
46
|
+
$twitter-hover-color: $facebook-color !default;
|
47
|
+
$google-hover-color: #731a25 !default;
|
48
|
+
$colors: ()
|
49
|
+
!default;
|
50
|
+
$colors: map-merge(("blue": $blue, "indigo": $indigo, "purple": $purple, "pink": $pink, "blush": $blush, "red": $red, "orange": $orange, "yellow": $yellow, "green": $green, "teal": $teal, "cyan": $cyan, "gold": $gold, "white": $white, "gray": $gray-600, "gray-dark": $gray-800, "gray-darken": $gray-darken, "navy-blue": $navy-blue, "blue-pale": $blue-pale, "blue-dark": $blue-dark), $colors);
|
51
|
+
$primary: $gold !default;
|
52
|
+
$secondary: $navy !default;
|
53
|
+
$success: $green !default;
|
54
|
+
$info: $blue !default;
|
55
|
+
$warning: $yellow !default;
|
56
|
+
$danger: $red !default;
|
57
|
+
$light: $gray-100 !default;
|
58
|
+
$dark: $gray-800 !default;
|
59
|
+
$theme-colors: ()
|
60
|
+
!default;
|
61
|
+
$theme-colors: map-merge(("primary": $primary, "secondary": $secondary, "success": $success, "info": $info, "warning": $warning, "danger": $danger, "light": $light, "dark": $dark, "navy": $navy), $theme-colors); // stylelint-enable
|
62
|
+
// Set a specific jump point for requesting color jumps
|
63
|
+
$theme-color-interval: 8% !default; // The yiq lightness value that determines when the lightness of color changes from "dark" to "light". Acceptable values are between 0 and 255.
|
64
|
+
$yiq-contrasted-threshold: 150 !default; // Customize the light and dark text colors for use in our YIQ color contrast function.
|
65
|
+
$yiq-text-dark: $gray-900 !default;
|
66
|
+
$yiq-text-light: $white !default; // Options
|
67
|
+
//
|
68
|
+
// Quickly modify global styling by enabling or disabling optional features.
|
69
|
+
$enable-caret: true !default;
|
70
|
+
$enable-rounded: true !default;
|
71
|
+
$enable-shadows: false !default;
|
72
|
+
$enable-gradients: false !default;
|
73
|
+
$enable-transitions: true !default;
|
74
|
+
$enable-hover-media-query: false !default;
|
75
|
+
$enable-grid-classes: true !default;
|
76
|
+
$enable-print-styles: true !default; // Spacing
|
77
|
+
//
|
78
|
+
// Control the default styling of most Bootstrap elements by modifying these
|
79
|
+
// variables. Mostly focused on spacing.
|
80
|
+
// You can add more entries to the $spacers map, should you need more variation.
|
81
|
+
$spacer: 1rem !default;
|
82
|
+
$spacers: (
|
83
|
+
0: 0,
|
84
|
+
1: ($spacer * .25),
|
85
|
+
2: ($spacer * .5),
|
86
|
+
3: $spacer,
|
87
|
+
4: ($spacer * 1.5),
|
88
|
+
5: ($spacer * 3)
|
89
|
+
)
|
90
|
+
!default; // This variable affects the `.h-*` and `.w-*` classes.
|
91
|
+
$sizes: (
|
92
|
+
25: 25%,
|
93
|
+
50: 50%,
|
94
|
+
75: 75%,
|
95
|
+
100: 100%
|
96
|
+
)
|
97
|
+
!default; // Body
|
98
|
+
//
|
99
|
+
// Settings for the `<body>` element.
|
100
|
+
$body-bg: $gray-200 !default;
|
101
|
+
$body-color: $gray-700 !default; // Links
|
102
|
+
//
|
103
|
+
// Style anchor elements.
|
104
|
+
$link-color: #546c7e !default;
|
105
|
+
$link-decoration: none !default;
|
106
|
+
$link-hover-color: darken($link-color, 15%) !default;
|
107
|
+
$link-hover-decoration: none !default; // Paragraphs
|
108
|
+
//
|
109
|
+
// Style p element.
|
110
|
+
$paragraph-margin-bottom: 1rem !default; // Grid breakpoints
|
111
|
+
//
|
112
|
+
// Define the minimum dimensions at which your layout will change,
|
113
|
+
// adapting to different screen sizes, for use in media queries.
|
114
|
+
$grid-breakpoints: (
|
115
|
+
xs: 0,
|
116
|
+
sm: 576px,
|
117
|
+
md: 768px,
|
118
|
+
lg: 992px,
|
119
|
+
xl: 1200px
|
120
|
+
)
|
121
|
+
!default;
|
122
|
+
@include _assert-ascending($grid-breakpoints, "$grid-breakpoints");
|
123
|
+
@include _assert-starts-at-zero($grid-breakpoints); // Grid containers
|
124
|
+
//
|
125
|
+
// Define the maximum width of `.container` for different screen sizes.
|
126
|
+
$container-max-widths: (
|
127
|
+
sm: 540px,
|
128
|
+
md: 720px,
|
129
|
+
lg: 960px,
|
130
|
+
xl: 1140px
|
131
|
+
)
|
132
|
+
!default;
|
133
|
+
@include _assert-ascending($container-max-widths, "$container-max-widths"); // Grid columns
|
134
|
+
//
|
135
|
+
// Set the number of columns and specify the width of the gutters.
|
136
|
+
$grid-columns: 12 !default;
|
137
|
+
$grid-gutter-width: 30px !default; // Components
|
138
|
+
//
|
139
|
+
// Define common padding and border radius sizes and more.
|
140
|
+
$line-height-lg: 1.5 !default;
|
141
|
+
$line-height-sm: 1.5 !default;
|
142
|
+
$border-width: 1px !default;
|
143
|
+
$border-color: $gray-200 !default;
|
144
|
+
$border-radius: 0 !default;
|
145
|
+
$border-radius-lg: 0.3rem !default;
|
146
|
+
$border-radius-sm: 0.2rem !default;
|
147
|
+
$component-active-color: $white !default;
|
148
|
+
$component-active-bg: theme-color("primary") !default;
|
149
|
+
$caret-width: 0.3em !default;
|
150
|
+
$transition-base: all 0.2s ease-in-out !default;
|
151
|
+
$transition-fade: opacity 0.15s linear !default;
|
152
|
+
$transition-collapse: height 0.35s ease !default; // Fonts
|
153
|
+
//
|
154
|
+
// Font, line-height, and color for body text, headings, and more.
|
155
|
+
// stylelint-disable value-keyword-case
|
156
|
+
$font-family-sans-serif: "Montserrat", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !default;
|
157
|
+
$font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !default;
|
158
|
+
$font-family-base: $font-family-sans-serif !default;
|
159
|
+
$font-family-heading: 'Playfair Display', serif !default;
|
160
|
+
$font-family-control: "Montserrat", sans-serif !default; // stylelint-enable value-keyword-case
|
161
|
+
$font-size-base: 1rem !default; // Assumes the browser default, typically `16px`
|
162
|
+
$font-size-lg: ($font-size-base * 1.25) !default;
|
163
|
+
$font-size-sm: ($font-size-base * .875) !default;
|
164
|
+
$font-weight-light: 300 !default;
|
165
|
+
$font-weight-normal: 400 !default;
|
166
|
+
$font-weight-bold: 700 !default;
|
167
|
+
$font-weight-base: $font-weight-normal !default;
|
168
|
+
$line-height-base: 2 !default;
|
169
|
+
$h1-font-size: $font-size-base * 2.5 !default;
|
170
|
+
$h2-font-size: $font-size-base * 2 !default;
|
171
|
+
$h3-font-size: $font-size-base * 1.5 !default;
|
172
|
+
$h4-font-size: $font-size-base * 1.25 !default;
|
173
|
+
$h5-font-size: $font-size-base * 1 !default;
|
174
|
+
$h6-font-size: $font-size-base * 0.75 !default;
|
175
|
+
$headings-margin-bottom: ($spacer / 2) !default;
|
176
|
+
$headings-font-family: inherit !default;
|
177
|
+
$headings-font-weight: 500 !default;
|
178
|
+
$headings-line-height: 1.2 !default;
|
179
|
+
$headings-color: inherit !default;
|
180
|
+
$display1-size: 6rem !default;
|
181
|
+
$display2-size: 5.5rem !default;
|
182
|
+
$display3-size: 4.5rem !default;
|
183
|
+
$display4-size: 3.5rem !default;
|
184
|
+
$display1-weight: 300 !default;
|
185
|
+
$display2-weight: 300 !default;
|
186
|
+
$display3-weight: 300 !default;
|
187
|
+
$display4-weight: 300 !default;
|
188
|
+
$display-line-height: $headings-line-height !default;
|
189
|
+
$lead-font-size: ($font-size-base * 0.75) !default;
|
190
|
+
$lead-font-weight: 400 !default;
|
191
|
+
$small-font-size: 80% !default;
|
192
|
+
$text-muted: $gray-600 !default;
|
193
|
+
$blockquote-small-color: $gray-600 !default;
|
194
|
+
$blockquote-font-size: ($font-size-base * 1.25) !default;
|
195
|
+
$hr-border-color: rgba($black, .1) !default;
|
196
|
+
$hr-border-width: $border-width !default;
|
197
|
+
$mark-padding: 0.2em !default;
|
198
|
+
$dt-font-weight: $font-weight-bold !default;
|
199
|
+
$kbd-box-shadow: inset 0 -.1rem 0 rgba($black, .25) !default;
|
200
|
+
$nested-kbd-font-weight: $font-weight-bold !default;
|
201
|
+
$list-inline-padding: 0.5rem !default;
|
202
|
+
$mark-bg: #fcf8e3 !default;
|
203
|
+
$hr-margin-y: $spacer !default; // Tables
|
204
|
+
//
|
205
|
+
// Customizes the `.table` component with basic values, each used across all table variations.
|
206
|
+
$table-cell-padding: 0.5rem 0 !default;
|
207
|
+
$table-cell-padding-sm: 0.3rem !default;
|
208
|
+
$table-bg: $white !default;
|
209
|
+
$table-accent-bg: #fbfbfb !default;
|
210
|
+
$table-hover-bg: #f4f7f8 !default;
|
211
|
+
$table-active-bg: $table-hover-bg !default;
|
212
|
+
$table-border-width: 0 !default;
|
213
|
+
$table-border-color: $white !default;
|
214
|
+
$table-head-bg: $gray-500 !default;
|
215
|
+
$table-head-color: $white !default;
|
216
|
+
$table-dark-bg: $gray-900 !default;
|
217
|
+
$table-dark-accent-bg: rgba($white, .05) !default;
|
218
|
+
$table-dark-hover-bg: rgba($white, .075) !default;
|
219
|
+
$table-dark-border-color: lighten($gray-900, 7.5%) !default;
|
220
|
+
$table-dark-color: $body-bg !default; // Buttons + Forms
|
221
|
+
//
|
222
|
+
// Shared variables that are reassigned to `$input-` and `$btn-` specific variables.
|
223
|
+
$input-btn-padding-y: 0.7825rem !default;
|
224
|
+
$input-btn-padding-x: 1.25rem !default;
|
225
|
+
$input-btn-line-height: 1.2 !default;
|
226
|
+
$input-btn-focus-width: 0.2rem !default;
|
227
|
+
$input-btn-focus-color: rgba(theme-color("primary"), .25) !default;
|
228
|
+
$input-btn-focus-box-shadow: 0 0 0 0 $input-btn-focus-color !default;
|
229
|
+
$input-btn-padding-y-sm: 0.25rem !default;
|
230
|
+
$input-btn-padding-x-sm: 0.5rem !default;
|
231
|
+
$input-btn-line-height-sm: $line-height-sm !default;
|
232
|
+
$input-btn-padding-y-lg: 0.5rem !default;
|
233
|
+
$input-btn-padding-x-lg: 1rem !default;
|
234
|
+
$input-btn-line-height-lg: $line-height-lg !default;
|
235
|
+
$input-btn-border-width: $border-width !default; // Buttons
|
236
|
+
//
|
237
|
+
// For each of Bootstrap's buttons, define text, background, and border color.
|
238
|
+
$btn-padding-y: 0.75rem !default;
|
239
|
+
$btn-padding-x: 1.5rem !default;
|
240
|
+
$btn-line-height: $input-btn-line-height !default;
|
241
|
+
$btn-padding-y-sm: $input-btn-padding-y-sm !default;
|
242
|
+
$btn-padding-x-sm: $input-btn-padding-x-sm !default;
|
243
|
+
$btn-line-height-sm: $input-btn-line-height-sm !default;
|
244
|
+
$btn-padding-y-lg: $input-btn-padding-y-lg !default;
|
245
|
+
$btn-padding-x-lg: $input-btn-padding-x-lg !default;
|
246
|
+
$btn-line-height-lg: $input-btn-line-height-lg !default;
|
247
|
+
$btn-border-width: $input-btn-border-width !default;
|
248
|
+
$btn-font-weight: $font-weight-normal !default;
|
249
|
+
$btn-box-shadow: inset 0 1px 0 rgba($white, .15), 0 1px 1px rgba($black, .075) !default;
|
250
|
+
$btn-focus-width: $input-btn-focus-width !default;
|
251
|
+
$btn-focus-box-shadow: $input-btn-focus-box-shadow !default;
|
252
|
+
$btn-disabled-opacity: 0.65 !default;
|
253
|
+
$btn-active-box-shadow: inset 0 3px 5px rgba($black, .125) !default;
|
254
|
+
$btn-link-disabled-color: $gray-600 !default;
|
255
|
+
$btn-block-spacing-y: 0.5rem !default; // Allows for customizing button radius independently from global border radius
|
256
|
+
$btn-border-radius: 0 !default;
|
257
|
+
$btn-border-radius-lg: $border-radius-lg !default;
|
258
|
+
$btn-border-radius-sm: $border-radius-sm !default;
|
259
|
+
$btn-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out !default; // Forms
|
260
|
+
$input-padding-y: 0.75rem !default;
|
261
|
+
$input-padding-x: $input-btn-padding-x !default;
|
262
|
+
$input-line-height: $input-btn-line-height !default;
|
263
|
+
$input-padding-y-sm: $input-btn-padding-y-sm !default;
|
264
|
+
$input-padding-x-sm: $input-btn-padding-x-sm !default;
|
265
|
+
$input-line-height-sm: $input-btn-line-height-sm !default;
|
266
|
+
$input-padding-y-lg: $input-btn-padding-y-lg !default;
|
267
|
+
$input-padding-x-lg: $input-btn-padding-x-lg !default;
|
268
|
+
$input-line-height-lg: $input-btn-line-height-lg !default;
|
269
|
+
$input-bg: $white !default;
|
270
|
+
$input-disabled-bg: $gray-200 !default;
|
271
|
+
$input-color: $navy !default;
|
272
|
+
$input-border-color: $blue-grey !default;
|
273
|
+
$input-border-width: $input-btn-border-width !default;
|
274
|
+
$input-box-shadow: inset 0 1px 1px rgba($black, .075) !default;
|
275
|
+
$input-border-radius: $border-radius !default;
|
276
|
+
$input-border-radius-lg: $border-radius-lg !default;
|
277
|
+
$input-border-radius-sm: $border-radius-sm !default;
|
278
|
+
$input-focus-bg: $white !default;
|
279
|
+
$input-focus-border-color: $blue !default;
|
280
|
+
$input-focus-color: $input-color !default;
|
281
|
+
$input-focus-width: $input-btn-focus-width !default;
|
282
|
+
$input-focus-box-shadow: none !default;
|
283
|
+
$input-placeholder-color: $gray-600 !default;
|
284
|
+
$input-height-border: $input-btn-border-width * 2 !default;
|
285
|
+
$input-height-inner: ($font-size-base * $input-line-height) + ($input-padding-y * 2) !default;
|
286
|
+
$input-height: calc(#{$input-height-inner}) !default;
|
287
|
+
$input-height-inner-sm: ($font-size-sm * $input-btn-line-height-sm) + ($input-btn-padding-y-sm * 2) !default;
|
288
|
+
$input-height-sm: calc(#{$input-height-inner-sm} + #{$input-height-border}) !default;
|
289
|
+
$input-height-inner-lg: ($font-size-lg * $input-btn-line-height-lg) + ($input-btn-padding-y-lg * 2) !default;
|
290
|
+
$input-height-lg: calc(#{$input-height-inner-lg} + #{$input-height-border}) !default;
|
291
|
+
$input-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out !default;
|
292
|
+
$form-text-margin-top: 0.25rem !default;
|
293
|
+
$form-check-input-gutter: 1.25rem !default;
|
294
|
+
$form-check-input-margin-y: 0.3rem !default;
|
295
|
+
$form-check-input-margin-x: 0.25rem !default;
|
296
|
+
$form-check-inline-margin-x: 0.75rem !default;
|
297
|
+
$form-check-inline-input-margin-x: 0.3125rem !default;
|
298
|
+
$form-group-margin-bottom: 1rem !default;
|
299
|
+
$input-group-addon-color: $input-color !default;
|
300
|
+
$input-group-addon-bg: $gray-200 !default;
|
301
|
+
$input-group-addon-border-color: $input-border-color !default;
|
302
|
+
$custom-control-gutter: 1.5rem !default;
|
303
|
+
$custom-control-spacer-x: 1rem !default;
|
304
|
+
$custom-control-indicator-size: 1rem !default;
|
305
|
+
$custom-control-indicator-bg: $gray-300 !default;
|
306
|
+
$custom-control-indicator-bg-size: 50% 50% !default;
|
307
|
+
$custom-control-indicator-box-shadow: inset 0 0.25rem 0.25rem rgba($black, .1) !default;
|
308
|
+
$custom-control-indicator-disabled-bg: $gray-200 !default;
|
309
|
+
$custom-control-label-disabled-color: $gray-600 !default;
|
310
|
+
$custom-control-indicator-checked-color: $white !default;
|
311
|
+
$custom-control-indicator-checked-bg: theme-color("primary") !default;
|
312
|
+
$custom-control-indicator-checked-box-shadow: none !default;
|
313
|
+
$custom-control-indicator-focus-box-shadow: 0 0 0 1px $body-bg, $input-btn-focus-box-shadow !default;
|
314
|
+
$custom-control-indicator-active-color: $white !default;
|
315
|
+
$custom-control-indicator-active-bg: lighten(theme-color("primary"), 35%) !default;
|
316
|
+
$custom-control-indicator-active-box-shadow: none !default;
|
317
|
+
$custom-checkbox-indicator-border-radius: $border-radius !default;
|
318
|
+
$custom-checkbox-indicator-icon-checked: str-replace(url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='#{$custom-control-indicator-checked-color}' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E"), "#", "%23") !default;
|
319
|
+
$custom-checkbox-indicator-indeterminate-bg: theme-color("primary") !default;
|
320
|
+
$custom-checkbox-indicator-indeterminate-color: $custom-control-indicator-checked-color !default;
|
321
|
+
$custom-checkbox-indicator-icon-indeterminate: str-replace(url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='#{$custom-checkbox-indicator-indeterminate-color}' d='M0 2h4'/%3E%3C/svg%3E"), "#", "%23") !default;
|
322
|
+
$custom-checkbox-indicator-indeterminate-box-shadow: none !default;
|
323
|
+
$custom-radio-indicator-border-radius: 50% !default;
|
324
|
+
$custom-radio-indicator-icon-checked: str-replace(url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='#{$custom-control-indicator-checked-color}'/%3E%3C/svg%3E"), "#", "%23") !default;
|
325
|
+
$custom-select-padding-y: 1.2rem !default;
|
326
|
+
$custom-select-padding-x: 0.75rem !default;
|
327
|
+
$custom-select-height: $input-height !default;
|
328
|
+
$custom-select-indicator-padding: 1rem !default; // Extra padding to account for the presence of the background-image based indicator
|
329
|
+
$custom-select-line-height: $input-btn-line-height !default;
|
330
|
+
$custom-select-color: $input-color !default;
|
331
|
+
$custom-select-disabled-color: $gray-600 !default;
|
332
|
+
$custom-select-bg: $white !default;
|
333
|
+
$custom-select-disabled-bg: $gray-200 !default;
|
334
|
+
$custom-select-bg-size: 8px 10px !default; // In pixels because image dimensions
|
335
|
+
$custom-select-indicator-color: $gray-800 !default;
|
336
|
+
$custom-select-indicator: none !default;
|
337
|
+
$custom-select-border-width: $input-btn-border-width !default;
|
338
|
+
$custom-select-border-color: $input-border-color !default;
|
339
|
+
$custom-select-border-radius: $border-radius !default;
|
340
|
+
$custom-select-focus-border-color: $input-focus-border-color !default;
|
341
|
+
$custom-select-focus-box-shadow: inset 0 1px 2px rgba($black, .075), $input-btn-focus-box-shadow !default;
|
342
|
+
$custom-select-font-size-sm: 75% !default;
|
343
|
+
$custom-select-height-sm: $input-height-sm !default;
|
344
|
+
$custom-select-font-size-lg: 125% !default;
|
345
|
+
$custom-select-height-lg: $input-height-lg !default;
|
346
|
+
$custom-file-height: $input-height !default;
|
347
|
+
$custom-file-focus-border-color: $input-focus-border-color !default;
|
348
|
+
$custom-file-focus-box-shadow: $input-btn-focus-box-shadow !default;
|
349
|
+
$custom-file-padding-y: $input-btn-padding-y !default;
|
350
|
+
$custom-file-padding-x: $input-btn-padding-x !default;
|
351
|
+
$custom-file-line-height: $input-btn-line-height !default;
|
352
|
+
$custom-file-color: $input-color !default;
|
353
|
+
$custom-file-bg: $input-bg !default;
|
354
|
+
$custom-file-border-width: $input-btn-border-width !default;
|
355
|
+
$custom-file-border-color: $input-border-color !default;
|
356
|
+
$custom-file-border-radius: $input-border-radius !default;
|
357
|
+
$custom-file-box-shadow: $input-box-shadow !default;
|
358
|
+
$custom-file-button-color: $custom-file-color !default;
|
359
|
+
$custom-file-button-bg: $input-group-addon-bg !default;
|
360
|
+
$custom-file-text: (
|
361
|
+
en: "Browse"
|
362
|
+
)
|
363
|
+
!default; // Form validation
|
364
|
+
$form-feedback-margin-top: $form-text-margin-top !default;
|
365
|
+
$form-feedback-font-size: $small-font-size !default;
|
366
|
+
$form-feedback-valid-color: theme-color("success") !default;
|
367
|
+
$form-feedback-invalid-color: theme-color("danger") !default; // Dropdowns
|
368
|
+
//
|
369
|
+
// Dropdown menu container and contents.
|
370
|
+
$dropdown-min-width: 10rem !default;
|
371
|
+
$dropdown-padding-y: 0.625rem !default;
|
372
|
+
$dropdown-spacer: 0.125rem !default;
|
373
|
+
$dropdown-bg: $white !default;
|
374
|
+
$dropdown-border-color: transparent !default;
|
375
|
+
$dropdown-border-radius: $border-radius !default;
|
376
|
+
$dropdown-border-width: $border-width !default;
|
377
|
+
$dropdown-divider-bg: $gray-200 !default;
|
378
|
+
$dropdown-box-shadow: 0 0.5rem 1rem rgba($black, .175) !default;
|
379
|
+
$dropdown-link-color: $gray-900 !default;
|
380
|
+
$dropdown-link-hover-color: darken($gray-900, 5%) !default;
|
381
|
+
$dropdown-link-hover-bg: $gray-100 !default;
|
382
|
+
$dropdown-link-active-color: $component-active-color !default;
|
383
|
+
$dropdown-link-active-bg: $component-active-bg !default;
|
384
|
+
$dropdown-link-disabled-color: $gray-600 !default;
|
385
|
+
$dropdown-item-padding-y: 0.4rem !default;
|
386
|
+
$dropdown-item-padding-x: 1.5rem !default;
|
387
|
+
$dropdown-header-color: $gray-600 !default; // Z-index master list
|
388
|
+
//
|
389
|
+
// Warning: Avoid customizing these values. They're used for a bird's eye view
|
390
|
+
// of components dependent on the z-axis and are designed to all work together.
|
391
|
+
$zindex-dropdown: 1000 !default;
|
392
|
+
$zindex-sticky: 1020 !default;
|
393
|
+
$zindex-fixed: 1030 !default;
|
394
|
+
$zindex-modal-backdrop: 1040 !default;
|
395
|
+
$zindex-modal: 1050 !default;
|
396
|
+
$zindex-popover: 1060 !default;
|
397
|
+
$zindex-tooltip: 1070 !default; // Navs
|
398
|
+
$nav-link-padding-y: 0.625rem !default;
|
399
|
+
$nav-link-padding-x: 1.25rem !default;
|
400
|
+
$nav-link-disabled-color: $gray-600 !default;
|
401
|
+
$nav-tabs-border-color: $gray-300 !default;
|
402
|
+
$nav-tabs-border-width: 0 !default;
|
403
|
+
$nav-tabs-border-radius: 0 !default;
|
404
|
+
$nav-tabs-link-hover-border-color: $gray-200 $gray-200 $nav-tabs-border-color !default;
|
405
|
+
$nav-tabs-link-active-color: $white !default;
|
406
|
+
$nav-tabs-link-active-bg: transparent !default;
|
407
|
+
$nav-tabs-link-active-border-color: $gray-300 $gray-300 $nav-tabs-link-active-bg !default;
|
408
|
+
$nav-pills-border-radius: $border-radius !default;
|
409
|
+
$nav-pills-link-active-color: $component-active-color !default;
|
410
|
+
$nav-pills-link-active-bg: $component-active-bg !default; // Navbar
|
411
|
+
$navbar-padding-y: 0 !default;
|
412
|
+
$navbar-padding-x: $spacer !default;
|
413
|
+
$navbar-brand-font-size: $font-size-lg !default; // Compute the navbar-brand padding-y so the navbar-brand will have the same height as navbar-text and nav-link
|
414
|
+
$nav-link-height: ($font-size-base * $line-height-base + $nav-link-padding-y * 2) !default;
|
415
|
+
$navbar-brand-height: $navbar-brand-font-size * $line-height-base !default;
|
416
|
+
$navbar-brand-padding-y: ($nav-link-height - $navbar-brand-height) / 2 !default;
|
417
|
+
$navbar-toggler-padding-y: 0 !default;
|
418
|
+
$navbar-toggler-padding-x: 0 !default;
|
419
|
+
$navbar-toggler-font-size: $font-size-lg !default;
|
420
|
+
$navbar-toggler-border-radius: $btn-border-radius !default;
|
421
|
+
$navbar-dark-color: $white !default;
|
422
|
+
$navbar-dark-hover-color: $white !default;
|
423
|
+
$navbar-dark-active-color: $white !default;
|
424
|
+
$navbar-dark-disabled-color: rgba($white, .25) !default;
|
425
|
+
$navbar-dark-toggler-icon-bg: str-replace(url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='#{$navbar-dark-color}' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"), "#", "%23") !default;
|
426
|
+
$navbar-dark-toggler-border-color: rgba($white, .1) !default;
|
427
|
+
$navbar-light-color: $navy-50 !default;
|
428
|
+
$navbar-light-hover-color: $navy-50 !default;
|
429
|
+
$navbar-light-active-color: $navy-50 !default;
|
430
|
+
$navbar-light-disabled-color: rgba($black, .3) !default;
|
431
|
+
$navbar-light-toggler-icon-bg: str-replace(url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='#{$navbar-light-color}' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"), "#", "%23") !default;
|
432
|
+
$navbar-light-toggler-border-color: rgba($black, .1) !default;
|
433
|
+
$navbar-secondary-color: $navy !default;
|
434
|
+
$navbar-secondary-hover-color: $navy !default;
|
435
|
+
$navbar-secondary-active-color: $navy !default;
|
436
|
+
$navbar-secondary-disabled-color: rgba($black, .3) !default;
|
437
|
+
$navbar-secondary-toggler-icon-bg: str-replace(url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='#{$navbar-light-color}' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"), "#", "%23") !default;
|
438
|
+
$navbar-secondary-toggler-border-color: rgba($black, .1) !default;
|
439
|
+
$navbar-shadow: 0 5px 10px 0 rgba(0, 35, 75, 0.15) !default; // Pagination
|
440
|
+
$pagination-padding-y: 0.5rem !default;
|
441
|
+
$pagination-padding-x: 0.75rem !default;
|
442
|
+
$pagination-padding-y-sm: 0.25rem !default;
|
443
|
+
$pagination-padding-x-sm: 0.5rem !default;
|
444
|
+
$pagination-padding-y-lg: 0.75rem !default;
|
445
|
+
$pagination-padding-x-lg: 1.5rem !default;
|
446
|
+
$pagination-line-height: 1.25 !default;
|
447
|
+
$pagination-color: $link-color !default;
|
448
|
+
$pagination-bg: $white !default;
|
449
|
+
$pagination-border-width: $border-width !default;
|
450
|
+
$pagination-border-color: $gray-300 !default;
|
451
|
+
$pagination-hover-color: $link-hover-color !default;
|
452
|
+
$pagination-hover-bg: $gray-200 !default;
|
453
|
+
$pagination-hover-border-color: $gray-300 !default;
|
454
|
+
$pagination-active-color: $white !default;
|
455
|
+
$pagination-active-bg: theme-color("primary") !default;
|
456
|
+
$pagination-active-border-color: theme-color("primary") !default;
|
457
|
+
$pagination-disabled-color: $gray-600 !default;
|
458
|
+
$pagination-disabled-bg: $white !default;
|
459
|
+
$pagination-disabled-border-color: $gray-300 !default; // Jumbotron
|
460
|
+
$jumbotron-padding: 4rem !default;
|
461
|
+
$jumbotron-bg: $gray-700 !default; // Cards
|
462
|
+
$card-spacer-y: 0.75rem !default;
|
463
|
+
$card-spacer-x: 1.875rem !default;
|
464
|
+
$card-border-width: $border-width !default;
|
465
|
+
$card-border-radius: 0 !default;
|
466
|
+
$card-border-color: rgba($black, .125) !default;
|
467
|
+
$card-inner-border-radius: calc(#{$card-border-radius} - #{$card-border-width}) !default;
|
468
|
+
$card-cap-bg: rgba($black, .03) !default;
|
469
|
+
$card-bg: $white !default;
|
470
|
+
$card-img-overlay-padding: 1.25rem !default;
|
471
|
+
$card-group-margin: ($grid-gutter-width / 2) !default;
|
472
|
+
$card-deck-margin: $card-group-margin !default;
|
473
|
+
$card-columns-count: 3 !default;
|
474
|
+
$card-columns-gap: 1.25rem !default;
|
475
|
+
$card-columns-margin: $card-spacer-y !default; // Tooltips
|
476
|
+
$tooltip-max-width: 200px !default;
|
477
|
+
$tooltip-color: $white !default;
|
478
|
+
$tooltip-bg: $black !default;
|
479
|
+
$tooltip-opacity: 0.9 !default;
|
480
|
+
$tooltip-padding-y: 0.25rem !default;
|
481
|
+
$tooltip-padding-x: 0.5rem !default;
|
482
|
+
$tooltip-margin: 0 !default;
|
483
|
+
$tooltip-arrow-width: 0.8rem !default;
|
484
|
+
$tooltip-arrow-height: 0.4rem !default;
|
485
|
+
$tooltip-arrow-color: $tooltip-bg !default; // Popovers
|
486
|
+
$popover-bg: $white !default;
|
487
|
+
$popover-max-width: 276px !default;
|
488
|
+
$popover-border-width: $border-width !default;
|
489
|
+
$popover-border-color: rgba($black, .2) !default;
|
490
|
+
$popover-box-shadow: 0 0.25rem 0.5rem rgba($black, .2) !default;
|
491
|
+
$popover-header-bg: darken($popover-bg, 3%) !default;
|
492
|
+
$popover-header-color: $headings-color !default;
|
493
|
+
$popover-header-padding-y: 0.5rem !default;
|
494
|
+
$popover-header-padding-x: 0.75rem !default;
|
495
|
+
$popover-body-color: $body-color !default;
|
496
|
+
$popover-body-padding-y: $popover-header-padding-y !default;
|
497
|
+
$popover-body-padding-x: $popover-header-padding-x !default;
|
498
|
+
$popover-arrow-width: 1rem !default;
|
499
|
+
$popover-arrow-height: 0.5rem !default;
|
500
|
+
$popover-arrow-color: $popover-bg !default;
|
501
|
+
$popover-arrow-outer-color: fade-in($popover-border-color, .05) !default; // Badges
|
502
|
+
$badge-font-size: 1.125rem !default;
|
503
|
+
$badge-font-weight: 500 !default;
|
504
|
+
$badge-padding-y: 0.25em !default;
|
505
|
+
$badge-padding-x: 0.55em !default;
|
506
|
+
$badge-border-radius: 0 !default;
|
507
|
+
$badge-pill-padding-x: 0.6em !default; // Use a higher than normal value to ensure completely rounded edges when
|
508
|
+
// customizing padding or font-size on labels.
|
509
|
+
$badge-pill-border-radius: 10rem !default; // Modals
|
510
|
+
// Padding applied to the modal body
|
511
|
+
$modal-inner-padding: 2.5rem !default;
|
512
|
+
$modal-dialog-margin: 0 !default;
|
513
|
+
$modal-dialog-margin-y-sm-up: 1.75rem !default;
|
514
|
+
$modal-title-line-height: $line-height-base !default;
|
515
|
+
$modal-content-bg: $white !default;
|
516
|
+
$modal-content-border-color: rgba($black, .2) !default;
|
517
|
+
$modal-content-border-width: 0 !default;
|
518
|
+
$modal-content-box-shadow-xs: 0 0.25rem 0.5rem rgba($black, .5) !default;
|
519
|
+
$modal-content-box-shadow-sm-up: 0 0.5rem 1rem rgba($black, .5) !default;
|
520
|
+
$modal-backdrop-bg: $navy-50!default;
|
521
|
+
$modal-backdrop-opacity: 1 !default;
|
522
|
+
$modal-header-border-color: $gray-200 !default;
|
523
|
+
$modal-footer-border-color: $modal-header-border-color !default;
|
524
|
+
$modal-header-border-width: 0 !default;
|
525
|
+
$modal-footer-border-width: $modal-header-border-width !default;
|
526
|
+
$modal-header-padding: 1rem !default;
|
527
|
+
$modal-lg: 800px !default;
|
528
|
+
$modal-md: 600px !default;
|
529
|
+
$modal-sm: 300px !default;
|
530
|
+
$modal-transition: transform 0.3s ease-out !default; // Alerts
|
531
|
+
//
|
532
|
+
// Define alert colors, border radius, and padding.
|
533
|
+
$alert-padding-y: 0.75rem !default;
|
534
|
+
$alert-padding-x: 1.25rem !default;
|
535
|
+
$alert-margin-bottom: 1rem !default;
|
536
|
+
$alert-border-radius: $border-radius !default;
|
537
|
+
$alert-link-font-weight: $font-weight-bold !default;
|
538
|
+
$alert-border-width: $border-width !default; // Progress bars
|
539
|
+
$progress-height: 1rem !default;
|
540
|
+
$progress-font-size: ($font-size-base * .75) !default;
|
541
|
+
$progress-bg: $gray-200 !default;
|
542
|
+
$progress-border-radius: $border-radius !default;
|
543
|
+
$progress-box-shadow: inset 0 0.1rem 0.1rem rgba($black, .1) !default;
|
544
|
+
$progress-bar-color: $white !default;
|
545
|
+
$progress-bar-bg: theme-color("primary") !default;
|
546
|
+
$progress-bar-animation-timing: 1s linear infinite !default;
|
547
|
+
$progress-bar-transition: width 0.6s ease !default; // List group
|
548
|
+
$list-group-bg: $white !default;
|
549
|
+
$list-group-border-color: rgba($black, .125) !default;
|
550
|
+
$list-group-border-width: $border-width !default;
|
551
|
+
$list-group-border-radius: 0 !default;
|
552
|
+
$list-group-item-padding-y: 0.375rem !default;
|
553
|
+
$list-group-item-padding-x: 1.25rem !default;
|
554
|
+
$list-group-hover-bg: $gray-100 !default;
|
555
|
+
$list-group-active-color: $component-active-color !default;
|
556
|
+
$list-group-active-bg: $component-active-bg !default;
|
557
|
+
$list-group-active-border-color: $list-group-active-bg !default;
|
558
|
+
$list-group-disabled-color: $gray-600 !default;
|
559
|
+
$list-group-disabled-bg: $list-group-bg !default;
|
560
|
+
$list-group-action-color: $gray-700 !default;
|
561
|
+
$list-group-action-hover-color: $list-group-action-color !default;
|
562
|
+
$list-group-action-active-color: $body-color !default;
|
563
|
+
$list-group-action-active-bg: $gray-200 !default; // Image thumbnails
|
564
|
+
$thumbnail-padding: 0.25rem !default;
|
565
|
+
$thumbnail-bg: $body-bg !default;
|
566
|
+
$thumbnail-border-width: $border-width !default;
|
567
|
+
$thumbnail-border-color: $gray-300 !default;
|
568
|
+
$thumbnail-border-radius: $border-radius !default;
|
569
|
+
$thumbnail-box-shadow: 0 1px 2px rgba($black, .075) !default; // Figures
|
570
|
+
$figure-caption-font-size: 90% !default;
|
571
|
+
$figure-caption-color: $gray-600 !default; // Breadcrumbs
|
572
|
+
$breadcrumb-padding-y: 0 !default;
|
573
|
+
$breadcrumb-padding-x: 0 !default;
|
574
|
+
$breadcrumb-item-padding: 0.5rem !default;
|
575
|
+
$breadcrumb-margin-bottom: 1rem !default;
|
576
|
+
$breadcrumb-bg: transparent !default;
|
577
|
+
$breadcrumb-divider-color: $gray-600 !default;
|
578
|
+
$breadcrumb-active-color: $blue !default;
|
579
|
+
$breadcrumb-divider: "›" !default; // Carousel
|
580
|
+
$carousel-control-color: $white !default;
|
581
|
+
$carousel-control-width: 15% !default;
|
582
|
+
$carousel-control-opacity: 0.5 !default;
|
583
|
+
$carousel-indicator-width: 30px !default;
|
584
|
+
$carousel-indicator-height: 3px !default;
|
585
|
+
$carousel-indicator-spacer: 3px !default;
|
586
|
+
$carousel-indicator-active-bg: $white !default;
|
587
|
+
$carousel-caption-width: 70% !default;
|
588
|
+
$carousel-caption-color: $white !default;
|
589
|
+
$carousel-control-icon-width: 20px !default;
|
590
|
+
$carousel-control-prev-icon-bg: str-replace(url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='#{$carousel-control-color}' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E"), "#", "%23") !default;
|
591
|
+
$carousel-control-next-icon-bg: str-replace(url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='#{$carousel-control-color}' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E"), "#", "%23") !default;
|
592
|
+
$carousel-transition: transform 0.6s ease !default; // Close
|
593
|
+
$close-font-size: $font-size-base * 1.5 !default;
|
594
|
+
$close-font-weight: $font-weight-bold !default;
|
595
|
+
$close-color: $black !default;
|
596
|
+
$close-text-shadow: 0 1px 0 $white !default; // Code
|
597
|
+
$code-font-size: 87.5% !default;
|
598
|
+
$code-color: $pink !default;
|
599
|
+
$kbd-padding-y: 0.2rem !default;
|
600
|
+
$kbd-padding-x: 0.4rem !default;
|
601
|
+
$kbd-font-size: $code-font-size !default;
|
602
|
+
$kbd-color: $white !default;
|
603
|
+
$kbd-bg: $gray-900 !default;
|
604
|
+
$pre-color: $gray-900 !default;
|
605
|
+
$pre-scrollable-max-height: 340px !default;
|
606
|
+
$custom-select-icon: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iNTEyIiBoZWlnaHQ9IjUxMiIgdmlld0JveD0iMCAwIDQ1MS44NDcgNDUxLjg0NyIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNDUxLjg0NyA0NTEuODQ3OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgY2xhc3M9IiI+PGc+PGc+Cgk8cGF0aCBkPSJNMjI1LjkyMywzNTQuNzA2Yy04LjA5OCwwLTE2LjE5NS0zLjA5Mi0yMi4zNjktOS4yNjNMOS4yNywxNTEuMTU3Yy0xMi4zNTktMTIuMzU5LTEyLjM1OS0zMi4zOTcsMC00NC43NTEgICBjMTIuMzU0LTEyLjM1NCwzMi4zODgtMTIuMzU0LDQ0Ljc0OCwwbDE3MS45MDUsMTcxLjkxNWwxNzEuOTA2LTE3MS45MDljMTIuMzU5LTEyLjM1NCwzMi4zOTEtMTIuMzU0LDQ0Ljc0NCwwICAgYzEyLjM2NSwxMi4zNTQsMTIuMzY1LDMyLjM5MiwwLDQ0Ljc1MUwyNDguMjkyLDM0NS40NDlDMjQyLjExNSwzNTEuNjIxLDIzNC4wMTgsMzU0LjcwNiwyMjUuOTIzLDM1NC43MDZ6IiBkYXRhLW9yaWdpbmFsPSIjMDAwMDAwIiBjbGFzcz0iYWN0aXZlLXBhdGgiIHN0eWxlPSJmaWxsOiNBQUFBQUEiIGRhdGEtb2xkX2NvbG9yPSIjREFEQURBIj48L3BhdGg+CjwvZz48L2c+IDwvc3ZnPg==") !default;
|
607
|
+
$checked-list-icon: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2ZXJzaW9uPSIxLjEiIHZpZXdCb3g9IjAgMCA0NCA0NCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgNDQgNDQiIHdpZHRoPSI1MTIiIGhlaWdodD0iNTEyIiBjbGFzcz0iIj48Zz48cGF0aCBkPSJtMjIsMGMtMTIuMiwwLTIyLDkuOC0yMiwyMnM5LjgsMjIgMjIsMjIgMjItOS44IDIyLTIyLTkuOC0yMi0yMi0yMnptMTIuNywxNS4xbDAsMC0xNiwxNi42Yy0wLjIsMC4yLTAuNCwwLjMtMC43LDAuMy0wLjMsMC0wLjYtMC4xLTAuNy0wLjNsLTcuOC04LjQtLjItLjJjLTAuMi0wLjItMC4zLTAuNS0wLjMtMC43czAuMS0wLjUgMC4zLTAuN2wxLjQtMS40YzAuNC0wLjQgMS0wLjQgMS40LDBsLjEsLjEgNS41LDUuOWMwLjIsMC4yIDAuNSwwLjIgMC43LDBsMTMuNC0xMy45aDAuMWMwLjQtMC40IDEtMC40IDEuNCwwbDEuNCwxLjRjMC40LDAuMyAwLjQsMC45IDAsMS4zeiIgZGF0YS1vcmlnaW5hbD0iIzAwMDAwMCIgY2xhc3M9ImFjdGl2ZS1wYXRoIiBzdHlsZT0iZmlsbDojM0I2NTdBIiBkYXRhLW9sZF9jb2xvcj0iIzNiNjU3YSI+PC9wYXRoPjwvZz4gPC9zdmc+") !default;
|
608
|
+
$tiles-shadow: 0 5px 10px 0 rgba(0, 35, 75, 0.15);
|
609
|
+
$nav-secondary-link-padding-x: 1.5625rem;
|
610
|
+
$nav-secondary-link-padding-y: 1.75rem;
|
611
|
+
$nav-tabs-link-padding-x: 0.9375rem;
|
612
|
+
$nav-tabs-link-padding-y: 0.5rem;
|
@@ -0,0 +1,42 @@
|
|
1
|
+
.breadcrumbs {
|
2
|
+
ul {
|
3
|
+
display: flex;
|
4
|
+
flex-wrap: wrap;
|
5
|
+
padding: 0.75rem 1rem;
|
6
|
+
list-style: none;
|
7
|
+
border-radius: 0.375rem;
|
8
|
+
/* Display list items side by side */
|
9
|
+
li {
|
10
|
+
display: inline;
|
11
|
+
font-size: 18px;
|
12
|
+
}
|
13
|
+
/* Add a slash symbol (/) before each list item */
|
14
|
+
li + li:before {
|
15
|
+
padding: 5px;
|
16
|
+
color: black;
|
17
|
+
content: '/\00a0';
|
18
|
+
}
|
19
|
+
|
20
|
+
li a {
|
21
|
+
text-decoration: none;
|
22
|
+
padding: 5px;
|
23
|
+
}
|
24
|
+
/* Add color on mouse-over */
|
25
|
+
li a:hover {
|
26
|
+
color: #01447e;
|
27
|
+
}
|
28
|
+
}
|
29
|
+
}
|
30
|
+
// Breadcrumb
|
31
|
+
|
32
|
+
.breadcrumb-item {
|
33
|
+
a {
|
34
|
+
@extend .text-info;
|
35
|
+
font-size: 12px;
|
36
|
+
font-weight: 500;
|
37
|
+
|
38
|
+
&:not([href]):not([tabindex]) {
|
39
|
+
pointer-events: none;
|
40
|
+
}
|
41
|
+
}
|
42
|
+
}
|
@@ -0,0 +1,17 @@
|
|
1
|
+
.btn {
|
2
|
+
@include button-size($btn-padding-y, $btn-padding-x, $font-size-base * 0.75, $btn-line-height, $btn-border-radius);
|
3
|
+
text-transform: uppercase;
|
4
|
+
}
|
5
|
+
|
6
|
+
.btn-reverse-info {
|
7
|
+
background-color: $white;
|
8
|
+
border-color: $white;
|
9
|
+
color: theme-color("info");
|
10
|
+
box-shadow: 2px 4px 10px 0 rgba(0, 0, 0, 0.11);
|
11
|
+
|
12
|
+
&:active,
|
13
|
+
&:focus,
|
14
|
+
&:hover {
|
15
|
+
color: darken(theme-color("info"), 10%);
|
16
|
+
}
|
17
|
+
}
|