@amiceli/papierjs 0.0.1
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.
- package/LICENSE +21 -0
- package/README.md +52 -0
- package/dist/cjs/app-globals-3a1e7e63.js +7 -0
- package/dist/cjs/app-globals-3a1e7e63.js.map +1 -0
- package/dist/cjs/index-028aee0a.js +1292 -0
- package/dist/cjs/index-028aee0a.js.map +1 -0
- package/dist/cjs/index.cjs.js +4 -0
- package/dist/cjs/index.cjs.js.map +1 -0
- package/dist/cjs/loader.cjs.js +17 -0
- package/dist/cjs/loader.cjs.js.map +1 -0
- package/dist/cjs/p-alert.cjs.entry.js +52 -0
- package/dist/cjs/p-alert.cjs.entry.js.map +1 -0
- package/dist/cjs/p-button.cjs.entry.js +57 -0
- package/dist/cjs/p-button.cjs.entry.js.map +1 -0
- package/dist/cjs/p-progress-bar.cjs.entry.js +54 -0
- package/dist/cjs/p-progress-bar.cjs.entry.js.map +1 -0
- package/dist/cjs/papierjs.cjs.js +27 -0
- package/dist/cjs/papierjs.cjs.js.map +1 -0
- package/dist/collection/collection-manifest.json +14 -0
- package/dist/collection/components/alert/alert.css +3448 -0
- package/dist/collection/components/alert/alert.js +138 -0
- package/dist/collection/components/alert/alert.js.map +1 -0
- package/dist/collection/components/button/button.css +3438 -0
- package/dist/collection/components/button/button.js +206 -0
- package/dist/collection/components/button/button.js.map +1 -0
- package/dist/collection/components/progress-bar/progress-bar.css +3438 -0
- package/dist/collection/components/progress-bar/progress-bar.js +143 -0
- package/dist/collection/components/progress-bar/progress-bar.js.map +1 -0
- package/dist/collection/index.js +2 -0
- package/dist/collection/index.js.map +1 -0
- package/dist/components/index.d.ts +33 -0
- package/dist/components/index.js +3 -0
- package/dist/components/index.js.map +1 -0
- package/dist/components/p-5ec03f76.js +1074 -0
- package/dist/components/p-5ec03f76.js.map +1 -0
- package/dist/components/p-alert.d.ts +11 -0
- package/dist/components/p-alert.js +71 -0
- package/dist/components/p-alert.js.map +1 -0
- package/dist/components/p-button.d.ts +11 -0
- package/dist/components/p-button.js +80 -0
- package/dist/components/p-button.js.map +1 -0
- package/dist/components/p-progress-bar.d.ts +11 -0
- package/dist/components/p-progress-bar.js +74 -0
- package/dist/components/p-progress-bar.js.map +1 -0
- package/dist/esm/app-globals-0f993ce5.js +5 -0
- package/dist/esm/app-globals-0f993ce5.js.map +1 -0
- package/dist/esm/index-ad124052.js +1265 -0
- package/dist/esm/index-ad124052.js.map +1 -0
- package/dist/esm/index.js +3 -0
- package/dist/esm/index.js.map +1 -0
- package/dist/esm/loader.js +13 -0
- package/dist/esm/loader.js.map +1 -0
- package/dist/esm/p-alert.entry.js +48 -0
- package/dist/esm/p-alert.entry.js.map +1 -0
- package/dist/esm/p-button.entry.js +53 -0
- package/dist/esm/p-button.entry.js.map +1 -0
- package/dist/esm/p-progress-bar.entry.js +50 -0
- package/dist/esm/p-progress-bar.entry.js.map +1 -0
- package/dist/esm/papierjs.js +22 -0
- package/dist/esm/papierjs.js.map +1 -0
- package/dist/index.cjs.js +1 -0
- package/dist/index.js +1 -0
- package/dist/papierjs/index.esm.js +2 -0
- package/dist/papierjs/index.esm.js.map +1 -0
- package/dist/papierjs/p-14f67b19.entry.js +2 -0
- package/dist/papierjs/p-14f67b19.entry.js.map +1 -0
- package/dist/papierjs/p-8ae1632f.entry.js +2 -0
- package/dist/papierjs/p-8ae1632f.entry.js.map +1 -0
- package/dist/papierjs/p-be2fe2c0.js +3 -0
- package/dist/papierjs/p-be2fe2c0.js.map +1 -0
- package/dist/papierjs/p-d1c3c0ac.entry.js +2 -0
- package/dist/papierjs/p-d1c3c0ac.entry.js.map +1 -0
- package/dist/papierjs/p-e1255160.js +2 -0
- package/dist/papierjs/p-e1255160.js.map +1 -0
- package/dist/papierjs/papierjs.esm.js +2 -0
- package/dist/papierjs/papierjs.esm.js.map +1 -0
- package/dist/types/components/alert/alert.d.ts +13 -0
- package/dist/types/components/button/button.d.ts +14 -0
- package/dist/types/components/progress-bar/progress-bar.d.ts +11 -0
- package/dist/types/components.d.ts +107 -0
- package/dist/types/index.d.ts +10 -0
- package/dist/types/stencil-public-runtime.d.ts +1680 -0
- package/loader/cdn.js +1 -0
- package/loader/index.cjs.js +1 -0
- package/loader/index.d.ts +24 -0
- package/loader/index.es2017.js +1 -0
- package/loader/index.js +2 -0
- package/loader/package.json +11 -0
- package/package.json +80 -0
|
@@ -0,0 +1,3448 @@
|
|
|
1
|
+
:host {
|
|
2
|
+
display: block;
|
|
3
|
+
width: 100%;
|
|
4
|
+
box-sizing: border-box;
|
|
5
|
+
}
|
|
6
|
+
:host .papier {
|
|
7
|
+
@charset "UTF-8";
|
|
8
|
+
/* PaperCSS core */
|
|
9
|
+
/**
|
|
10
|
+
Global PaperCSS Config
|
|
11
|
+
*/
|
|
12
|
+
@import url("https://fonts.googleapis.com/css?family=Neucha|Patrick+Hand+SC&display=swap");
|
|
13
|
+
html {
|
|
14
|
+
--primary: #41403e;
|
|
15
|
+
--secondary: #0b74d5;
|
|
16
|
+
--success: #86a361;
|
|
17
|
+
--warning: #ddcd45;
|
|
18
|
+
--danger: #a7342d;
|
|
19
|
+
--muted: #868e96;
|
|
20
|
+
--primary-light: #cdcccb;
|
|
21
|
+
--secondary-light: #d8ebfd;
|
|
22
|
+
--success-light: #d5dfc8;
|
|
23
|
+
--warning-light: #f5f0c6;
|
|
24
|
+
--danger-light: #f0cbc9;
|
|
25
|
+
--muted-light: #e6e7e9;
|
|
26
|
+
--primary-dark: black;
|
|
27
|
+
--secondary-dark: black;
|
|
28
|
+
--success-dark: #374427;
|
|
29
|
+
--warning-dark: #746a15;
|
|
30
|
+
--danger-dark: black;
|
|
31
|
+
--muted-dark: #313538;
|
|
32
|
+
--primary-light-10: #5b5a57;
|
|
33
|
+
--secondary-light-10: #208ef3;
|
|
34
|
+
--success-light-10: #9fb681;
|
|
35
|
+
--warning-light-10: #e5d970;
|
|
36
|
+
--danger-light-10: #cb453c;
|
|
37
|
+
--muted-light-10: #a1a8ae;
|
|
38
|
+
--primary-dark-10: #272625;
|
|
39
|
+
--secondary-dark-10: #085aa5;
|
|
40
|
+
--success-dark-10: #4a5a35;
|
|
41
|
+
--warning-dark-10: #746a15;
|
|
42
|
+
--danger-dark-10: #7f2722;
|
|
43
|
+
--muted-dark-10: #6c757d;
|
|
44
|
+
--primary-shaded-50: #c1c0bd;
|
|
45
|
+
--primary-shaded-70: #f2f2f2;
|
|
46
|
+
--white-dark: rgba(0, 0, 0, 0.03);
|
|
47
|
+
--white-dark-light-80: rgba(204, 204, 204, 0.03);
|
|
48
|
+
--light-dark: rgba(0, 0, 0, 0.7);
|
|
49
|
+
--white: white;
|
|
50
|
+
--main-background: white;
|
|
51
|
+
--main-background-light: white;
|
|
52
|
+
--black: black;
|
|
53
|
+
--primary-text: #272625;
|
|
54
|
+
--secondary-text: #085aa5;
|
|
55
|
+
--success-text: #4a5a35;
|
|
56
|
+
--warning-text: #746a15;
|
|
57
|
+
--danger-text: #7f2722;
|
|
58
|
+
--muted-text: #6c757d;
|
|
59
|
+
--shadow-color-regular: rgba(0, 0, 0, 0.2);
|
|
60
|
+
--shadow-color-hover: rgba(0, 0, 0, 0.3);
|
|
61
|
+
--primary-inverse: #fff;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
html.dark {
|
|
65
|
+
--primary: #fff;
|
|
66
|
+
--secondary: #5595ce;
|
|
67
|
+
--success: #70c272;
|
|
68
|
+
--warning: #d4c252;
|
|
69
|
+
--danger: #df4c57;
|
|
70
|
+
--muted: #868e96;
|
|
71
|
+
--primary-light: white;
|
|
72
|
+
--secondary-light: #69a1d4;
|
|
73
|
+
--success-light: #82ca84;
|
|
74
|
+
--warning-light: #d9c966;
|
|
75
|
+
--danger-light: #e3626b;
|
|
76
|
+
--muted-light: #949ba2;
|
|
77
|
+
--primary-dark: gray;
|
|
78
|
+
--secondary-dark: #1f476b;
|
|
79
|
+
--success-dark: #265927;
|
|
80
|
+
--warning-dark: #71651c;
|
|
81
|
+
--danger-dark: #7c161e;
|
|
82
|
+
--muted-dark: #313538;
|
|
83
|
+
--primary-light-10: white;
|
|
84
|
+
--secondary-light-10: #7daed9;
|
|
85
|
+
--success-light-10: #94d195;
|
|
86
|
+
--warning-light-10: #ded07b;
|
|
87
|
+
--danger-light-10: #e77780;
|
|
88
|
+
--muted-light-10: #a1a8ae;
|
|
89
|
+
--primary-dark-10: #e6e6e6;
|
|
90
|
+
--secondary-dark-10: #367cba;
|
|
91
|
+
--success-dark-10: #4cb34f;
|
|
92
|
+
--warning-dark-10: #c3ae30;
|
|
93
|
+
--danger-dark-10: #d22633;
|
|
94
|
+
--muted-dark-10: #6c757d;
|
|
95
|
+
--primary-shaded-50: #343332;
|
|
96
|
+
--primary-shaded-70: #2f2e2d;
|
|
97
|
+
--white-dark: rgba(255, 255, 255, 0.03);
|
|
98
|
+
--white-dark-light-80: rgba(255, 255, 255, 0.03);
|
|
99
|
+
--light-dark: rgba(255, 255, 255, 0.7);
|
|
100
|
+
--white: white;
|
|
101
|
+
--main-background: #41403e;
|
|
102
|
+
--main-background-light: #c1c0bd;
|
|
103
|
+
--black: black;
|
|
104
|
+
--primary-text: #41403e;
|
|
105
|
+
--secondary-text: #1f476b;
|
|
106
|
+
--success-text: #265927;
|
|
107
|
+
--warning-text: #71651c;
|
|
108
|
+
--danger-text: #7c161e;
|
|
109
|
+
--muted-text: #949ba2;
|
|
110
|
+
--shadow-color-regular: rgba(0, 0, 0, 0.2);
|
|
111
|
+
--shadow-color-hover: rgba(0, 0, 0, 0.3);
|
|
112
|
+
--primary-inverse: #41403e;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
/* stylelint-disable */
|
|
116
|
+
/* stylelint-enable */
|
|
117
|
+
/**
|
|
118
|
+
This Loop will generate the various .text- and .background- classes
|
|
119
|
+
based on the $colors map above.
|
|
120
|
+
*/
|
|
121
|
+
.text-primary {
|
|
122
|
+
color: #41403e;
|
|
123
|
+
color: var(--primary);
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.background-primary {
|
|
127
|
+
background-color: #41403e;
|
|
128
|
+
background-color: var(--primary-light);
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.text-secondary {
|
|
132
|
+
color: #41403e;
|
|
133
|
+
color: var(--secondary);
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.background-secondary {
|
|
137
|
+
background-color: #41403e;
|
|
138
|
+
background-color: var(--secondary-light);
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.text-success {
|
|
142
|
+
color: #41403e;
|
|
143
|
+
color: var(--success);
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
.background-success {
|
|
147
|
+
background-color: #41403e;
|
|
148
|
+
background-color: var(--success-light);
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.text-warning {
|
|
152
|
+
color: #41403e;
|
|
153
|
+
color: var(--warning);
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.background-warning {
|
|
157
|
+
background-color: #41403e;
|
|
158
|
+
background-color: var(--warning-light);
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.text-danger {
|
|
162
|
+
color: #41403e;
|
|
163
|
+
color: var(--danger);
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
.background-danger {
|
|
167
|
+
background-color: #41403e;
|
|
168
|
+
background-color: var(--danger-light);
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
.text-muted {
|
|
172
|
+
color: #41403e;
|
|
173
|
+
color: var(--muted);
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.background-muted {
|
|
177
|
+
background-color: #41403e;
|
|
178
|
+
background-color: var(--muted-light);
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
/**
|
|
182
|
+
PaperCSS Mixins
|
|
183
|
+
*/
|
|
184
|
+
/**
|
|
185
|
+
Assign a border style to a component selector.
|
|
186
|
+
@param integer
|
|
187
|
+
@default 1
|
|
188
|
+
*/
|
|
189
|
+
/**
|
|
190
|
+
Mixin for setting responsive breakpoints
|
|
191
|
+
@param string | integer
|
|
192
|
+
@default null
|
|
193
|
+
*/
|
|
194
|
+
/**
|
|
195
|
+
Useful helper mixins
|
|
196
|
+
*/
|
|
197
|
+
/*
|
|
198
|
+
Add transform: translate() with browser prefixes.
|
|
199
|
+
Same syntax for translate() and translate3d()
|
|
200
|
+
To get 3D add a $z value and set 'true'
|
|
201
|
+
@param string | boolean
|
|
202
|
+
@default 0 | false
|
|
203
|
+
*/
|
|
204
|
+
/*
|
|
205
|
+
Add global transition styles to selector
|
|
206
|
+
@param string
|
|
207
|
+
@default all | 235ms | ease-in-out | 0
|
|
208
|
+
*/
|
|
209
|
+
/**
|
|
210
|
+
Set the shadow type for a component
|
|
211
|
+
@param string
|
|
212
|
+
@default regular
|
|
213
|
+
*/
|
|
214
|
+
/**
|
|
215
|
+
Sets a striped background on a component
|
|
216
|
+
@param string
|
|
217
|
+
*/
|
|
218
|
+
/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
|
|
219
|
+
/* stylelint-disable */
|
|
220
|
+
html {
|
|
221
|
+
line-height: 1.15;
|
|
222
|
+
-ms-text-size-adjust: 100%;
|
|
223
|
+
-webkit-text-size-adjust: 100%;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
body {
|
|
227
|
+
margin: 0;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
article,
|
|
231
|
+
aside,
|
|
232
|
+
footer,
|
|
233
|
+
header,
|
|
234
|
+
nav,
|
|
235
|
+
section {
|
|
236
|
+
display: block;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
h1 {
|
|
240
|
+
font-size: 2em;
|
|
241
|
+
margin: 0.67em 0;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
figcaption,
|
|
245
|
+
figure,
|
|
246
|
+
main {
|
|
247
|
+
display: block;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
figure {
|
|
251
|
+
margin: 1em 40px;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
hr {
|
|
255
|
+
box-sizing: content-box;
|
|
256
|
+
height: 0;
|
|
257
|
+
overflow: visible;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
pre {
|
|
261
|
+
font-family: monospace, monospace;
|
|
262
|
+
font-size: 1em;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
a {
|
|
266
|
+
background-color: transparent;
|
|
267
|
+
-webkit-text-decoration-skip: objects;
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
abbr[title] {
|
|
271
|
+
border-bottom: none;
|
|
272
|
+
text-decoration: underline;
|
|
273
|
+
-webkit-text-decoration: underline dotted;
|
|
274
|
+
text-decoration: underline dotted;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
b,
|
|
278
|
+
strong {
|
|
279
|
+
font-weight: inherit;
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
b,
|
|
283
|
+
strong {
|
|
284
|
+
font-weight: bolder;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
code,
|
|
288
|
+
kbd,
|
|
289
|
+
samp {
|
|
290
|
+
font-family: monospace, monospace;
|
|
291
|
+
font-size: 1em;
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
dfn {
|
|
295
|
+
font-style: italic;
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
mark {
|
|
299
|
+
background-color: #ff0;
|
|
300
|
+
color: #000;
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
small {
|
|
304
|
+
font-size: 80%;
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
sub,
|
|
308
|
+
sup {
|
|
309
|
+
font-size: 75%;
|
|
310
|
+
line-height: 0;
|
|
311
|
+
position: relative;
|
|
312
|
+
vertical-align: baseline;
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
sub {
|
|
316
|
+
bottom: -0.25em;
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
sup {
|
|
320
|
+
top: -0.5em;
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
audio,
|
|
324
|
+
video {
|
|
325
|
+
display: inline-block;
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
audio:not([controls]) {
|
|
329
|
+
display: none;
|
|
330
|
+
height: 0;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
img {
|
|
334
|
+
border-style: none;
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
svg:not(:root) {
|
|
338
|
+
overflow: hidden;
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
button,
|
|
342
|
+
input,
|
|
343
|
+
optgroup,
|
|
344
|
+
select,
|
|
345
|
+
textarea {
|
|
346
|
+
font-family: sans-serif;
|
|
347
|
+
font-size: 100%;
|
|
348
|
+
line-height: 1.15;
|
|
349
|
+
margin: 0;
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
button,
|
|
353
|
+
input {
|
|
354
|
+
overflow: visible;
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
button,
|
|
358
|
+
select {
|
|
359
|
+
text-transform: none;
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
[type=reset],
|
|
363
|
+
[type=submit],
|
|
364
|
+
button,
|
|
365
|
+
html [type=button] {
|
|
366
|
+
-webkit-appearance: button;
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
[type=button]::-moz-focus-inner,
|
|
370
|
+
[type=reset]::-moz-focus-inner,
|
|
371
|
+
[type=submit]::-moz-focus-inner,
|
|
372
|
+
button::-moz-focus-inner {
|
|
373
|
+
border-style: none;
|
|
374
|
+
padding: 0;
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
[type=button]:-moz-focusring,
|
|
378
|
+
[type=reset]:-moz-focusring,
|
|
379
|
+
[type=submit]:-moz-focusring,
|
|
380
|
+
button:-moz-focusring {
|
|
381
|
+
outline: 1px dotted ButtonText;
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
fieldset {
|
|
385
|
+
padding: 0.35em 0.75em 0.625em;
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
legend {
|
|
389
|
+
box-sizing: border-box;
|
|
390
|
+
color: inherit;
|
|
391
|
+
display: table;
|
|
392
|
+
max-width: 100%;
|
|
393
|
+
padding: 0;
|
|
394
|
+
white-space: normal;
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
progress {
|
|
398
|
+
display: inline-block;
|
|
399
|
+
vertical-align: baseline;
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
textarea {
|
|
403
|
+
overflow: auto;
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
[type=checkbox],
|
|
407
|
+
[type=radio] {
|
|
408
|
+
box-sizing: border-box;
|
|
409
|
+
padding: 0;
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
[type=number]::-webkit-inner-spin-button,
|
|
413
|
+
[type=number]::-webkit-outer-spin-button {
|
|
414
|
+
height: auto;
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
[type=search] {
|
|
418
|
+
-webkit-appearance: textfield;
|
|
419
|
+
outline-offset: -2px;
|
|
420
|
+
}
|
|
421
|
+
|
|
422
|
+
[type=search]::-webkit-search-cancel-button,
|
|
423
|
+
[type=search]::-webkit-search-decoration {
|
|
424
|
+
-webkit-appearance: none;
|
|
425
|
+
}
|
|
426
|
+
|
|
427
|
+
::-webkit-file-upload-button {
|
|
428
|
+
-webkit-appearance: button;
|
|
429
|
+
font: inherit;
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
details,
|
|
433
|
+
menu {
|
|
434
|
+
display: block;
|
|
435
|
+
}
|
|
436
|
+
|
|
437
|
+
summary {
|
|
438
|
+
display: list-item;
|
|
439
|
+
}
|
|
440
|
+
|
|
441
|
+
canvas {
|
|
442
|
+
display: inline-block;
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
template {
|
|
446
|
+
display: none;
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
[hidden] {
|
|
450
|
+
display: none;
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
html {
|
|
454
|
+
box-sizing: border-box;
|
|
455
|
+
}
|
|
456
|
+
|
|
457
|
+
*, *:before, *:after {
|
|
458
|
+
box-sizing: inherit;
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
/* stylelint-enable */
|
|
462
|
+
/* Layout styling */
|
|
463
|
+
.container {
|
|
464
|
+
margin: 0 auto;
|
|
465
|
+
max-width: 960px;
|
|
466
|
+
position: relative;
|
|
467
|
+
width: 100%;
|
|
468
|
+
}
|
|
469
|
+
@media only screen and (max-width: 992px) {
|
|
470
|
+
.container {
|
|
471
|
+
width: 85%;
|
|
472
|
+
}
|
|
473
|
+
}
|
|
474
|
+
@media only screen and (max-width: 480px) {
|
|
475
|
+
.container {
|
|
476
|
+
width: 90%;
|
|
477
|
+
}
|
|
478
|
+
}
|
|
479
|
+
|
|
480
|
+
.container.container-xs {
|
|
481
|
+
max-width: 480px;
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
.container.container-sm {
|
|
485
|
+
max-width: 768px;
|
|
486
|
+
}
|
|
487
|
+
|
|
488
|
+
.container.container-md {
|
|
489
|
+
max-width: 992px;
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
.container.container-lg {
|
|
493
|
+
max-width: 1200px;
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
.section {
|
|
497
|
+
margin-bottom: 2rem;
|
|
498
|
+
margin-top: 1rem;
|
|
499
|
+
word-wrap: break-word;
|
|
500
|
+
}
|
|
501
|
+
.section::after {
|
|
502
|
+
color: #8f8d89;
|
|
503
|
+
content: "~~~";
|
|
504
|
+
display: block;
|
|
505
|
+
font-size: 1.5rem;
|
|
506
|
+
position: relative;
|
|
507
|
+
text-align: center;
|
|
508
|
+
}
|
|
509
|
+
|
|
510
|
+
hr {
|
|
511
|
+
border: 0;
|
|
512
|
+
}
|
|
513
|
+
hr::after {
|
|
514
|
+
color: #8f8d89;
|
|
515
|
+
content: "~~~";
|
|
516
|
+
display: block;
|
|
517
|
+
font-size: 1.5rem;
|
|
518
|
+
position: relative;
|
|
519
|
+
text-align: center;
|
|
520
|
+
top: -0.75rem;
|
|
521
|
+
}
|
|
522
|
+
|
|
523
|
+
.paper {
|
|
524
|
+
background-color: #41403e;
|
|
525
|
+
background-color: var(--main-background);
|
|
526
|
+
border: 1px solid #cdcccb;
|
|
527
|
+
box-shadow: -1px 5px 35px -9px rgba(0, 0, 0, 0.2);
|
|
528
|
+
margin-bottom: 1rem;
|
|
529
|
+
margin-top: 1rem;
|
|
530
|
+
padding: 2rem;
|
|
531
|
+
}
|
|
532
|
+
@media only screen and (max-width: 480px) {
|
|
533
|
+
.paper {
|
|
534
|
+
margin-bottom: 0;
|
|
535
|
+
margin-top: 0;
|
|
536
|
+
padding: 1rem;
|
|
537
|
+
width: 100%;
|
|
538
|
+
}
|
|
539
|
+
}
|
|
540
|
+
|
|
541
|
+
.row {
|
|
542
|
+
display: flex;
|
|
543
|
+
flex-flow: row wrap;
|
|
544
|
+
margin-bottom: 1rem;
|
|
545
|
+
margin-left: auto;
|
|
546
|
+
margin-right: auto;
|
|
547
|
+
}
|
|
548
|
+
.row.flex-right {
|
|
549
|
+
justify-content: flex-end;
|
|
550
|
+
}
|
|
551
|
+
.row.flex-center {
|
|
552
|
+
justify-content: center;
|
|
553
|
+
}
|
|
554
|
+
.row.flex-edges {
|
|
555
|
+
justify-content: space-between;
|
|
556
|
+
}
|
|
557
|
+
.row.flex-spaces {
|
|
558
|
+
justify-content: space-around;
|
|
559
|
+
}
|
|
560
|
+
.row.flex-top {
|
|
561
|
+
align-items: flex-start;
|
|
562
|
+
}
|
|
563
|
+
.row.flex-middle {
|
|
564
|
+
align-items: center;
|
|
565
|
+
}
|
|
566
|
+
.row.flex-bottom {
|
|
567
|
+
align-items: flex-end;
|
|
568
|
+
}
|
|
569
|
+
|
|
570
|
+
.col {
|
|
571
|
+
padding: 1rem;
|
|
572
|
+
}
|
|
573
|
+
@media only screen and (max-width: 768px) {
|
|
574
|
+
.col {
|
|
575
|
+
flex: 0 0 100%;
|
|
576
|
+
max-width: 100%;
|
|
577
|
+
}
|
|
578
|
+
}
|
|
579
|
+
|
|
580
|
+
.col-fill {
|
|
581
|
+
flex: 1 1 0;
|
|
582
|
+
width: auto;
|
|
583
|
+
}
|
|
584
|
+
|
|
585
|
+
@media only screen and (min-width: 0) {
|
|
586
|
+
.col-1 {
|
|
587
|
+
flex: 0 0 8.3333333333%;
|
|
588
|
+
max-width: 8.3333333333%;
|
|
589
|
+
}
|
|
590
|
+
|
|
591
|
+
.col-2 {
|
|
592
|
+
flex: 0 0 16.6666666667%;
|
|
593
|
+
max-width: 16.6666666667%;
|
|
594
|
+
}
|
|
595
|
+
|
|
596
|
+
.col-3 {
|
|
597
|
+
flex: 0 0 25%;
|
|
598
|
+
max-width: 25%;
|
|
599
|
+
}
|
|
600
|
+
|
|
601
|
+
.col-4 {
|
|
602
|
+
flex: 0 0 33.3333333333%;
|
|
603
|
+
max-width: 33.3333333333%;
|
|
604
|
+
}
|
|
605
|
+
|
|
606
|
+
.col-5 {
|
|
607
|
+
flex: 0 0 41.6666666667%;
|
|
608
|
+
max-width: 41.6666666667%;
|
|
609
|
+
}
|
|
610
|
+
|
|
611
|
+
.col-6 {
|
|
612
|
+
flex: 0 0 50%;
|
|
613
|
+
max-width: 50%;
|
|
614
|
+
}
|
|
615
|
+
|
|
616
|
+
.col-7 {
|
|
617
|
+
flex: 0 0 58.3333333333%;
|
|
618
|
+
max-width: 58.3333333333%;
|
|
619
|
+
}
|
|
620
|
+
|
|
621
|
+
.col-8 {
|
|
622
|
+
flex: 0 0 66.6666666667%;
|
|
623
|
+
max-width: 66.6666666667%;
|
|
624
|
+
}
|
|
625
|
+
|
|
626
|
+
.col-9 {
|
|
627
|
+
flex: 0 0 75%;
|
|
628
|
+
max-width: 75%;
|
|
629
|
+
}
|
|
630
|
+
|
|
631
|
+
.col-10 {
|
|
632
|
+
flex: 0 0 83.3333333333%;
|
|
633
|
+
max-width: 83.3333333333%;
|
|
634
|
+
}
|
|
635
|
+
|
|
636
|
+
.col-11 {
|
|
637
|
+
flex: 0 0 91.6666666667%;
|
|
638
|
+
max-width: 91.6666666667%;
|
|
639
|
+
}
|
|
640
|
+
|
|
641
|
+
.col-12 {
|
|
642
|
+
flex: 0 0 100%;
|
|
643
|
+
max-width: 100%;
|
|
644
|
+
}
|
|
645
|
+
}
|
|
646
|
+
@media only screen and (min-width: 480px) {
|
|
647
|
+
.xs-1 {
|
|
648
|
+
flex: 0 0 8.3333333333%;
|
|
649
|
+
max-width: 8.3333333333%;
|
|
650
|
+
}
|
|
651
|
+
|
|
652
|
+
.xs-2 {
|
|
653
|
+
flex: 0 0 16.6666666667%;
|
|
654
|
+
max-width: 16.6666666667%;
|
|
655
|
+
}
|
|
656
|
+
|
|
657
|
+
.xs-3 {
|
|
658
|
+
flex: 0 0 25%;
|
|
659
|
+
max-width: 25%;
|
|
660
|
+
}
|
|
661
|
+
|
|
662
|
+
.xs-4 {
|
|
663
|
+
flex: 0 0 33.3333333333%;
|
|
664
|
+
max-width: 33.3333333333%;
|
|
665
|
+
}
|
|
666
|
+
|
|
667
|
+
.xs-5 {
|
|
668
|
+
flex: 0 0 41.6666666667%;
|
|
669
|
+
max-width: 41.6666666667%;
|
|
670
|
+
}
|
|
671
|
+
|
|
672
|
+
.xs-6 {
|
|
673
|
+
flex: 0 0 50%;
|
|
674
|
+
max-width: 50%;
|
|
675
|
+
}
|
|
676
|
+
|
|
677
|
+
.xs-7 {
|
|
678
|
+
flex: 0 0 58.3333333333%;
|
|
679
|
+
max-width: 58.3333333333%;
|
|
680
|
+
}
|
|
681
|
+
|
|
682
|
+
.xs-8 {
|
|
683
|
+
flex: 0 0 66.6666666667%;
|
|
684
|
+
max-width: 66.6666666667%;
|
|
685
|
+
}
|
|
686
|
+
|
|
687
|
+
.xs-9 {
|
|
688
|
+
flex: 0 0 75%;
|
|
689
|
+
max-width: 75%;
|
|
690
|
+
}
|
|
691
|
+
|
|
692
|
+
.xs-10 {
|
|
693
|
+
flex: 0 0 83.3333333333%;
|
|
694
|
+
max-width: 83.3333333333%;
|
|
695
|
+
}
|
|
696
|
+
|
|
697
|
+
.xs-11 {
|
|
698
|
+
flex: 0 0 91.6666666667%;
|
|
699
|
+
max-width: 91.6666666667%;
|
|
700
|
+
}
|
|
701
|
+
|
|
702
|
+
.xs-12 {
|
|
703
|
+
flex: 0 0 100%;
|
|
704
|
+
max-width: 100%;
|
|
705
|
+
}
|
|
706
|
+
}
|
|
707
|
+
@media only screen and (min-width: 768px) {
|
|
708
|
+
.sm-1 {
|
|
709
|
+
flex: 0 0 8.3333333333%;
|
|
710
|
+
max-width: 8.3333333333%;
|
|
711
|
+
}
|
|
712
|
+
|
|
713
|
+
.sm-2 {
|
|
714
|
+
flex: 0 0 16.6666666667%;
|
|
715
|
+
max-width: 16.6666666667%;
|
|
716
|
+
}
|
|
717
|
+
|
|
718
|
+
.sm-3 {
|
|
719
|
+
flex: 0 0 25%;
|
|
720
|
+
max-width: 25%;
|
|
721
|
+
}
|
|
722
|
+
|
|
723
|
+
.sm-4 {
|
|
724
|
+
flex: 0 0 33.3333333333%;
|
|
725
|
+
max-width: 33.3333333333%;
|
|
726
|
+
}
|
|
727
|
+
|
|
728
|
+
.sm-5 {
|
|
729
|
+
flex: 0 0 41.6666666667%;
|
|
730
|
+
max-width: 41.6666666667%;
|
|
731
|
+
}
|
|
732
|
+
|
|
733
|
+
.sm-6 {
|
|
734
|
+
flex: 0 0 50%;
|
|
735
|
+
max-width: 50%;
|
|
736
|
+
}
|
|
737
|
+
|
|
738
|
+
.sm-7 {
|
|
739
|
+
flex: 0 0 58.3333333333%;
|
|
740
|
+
max-width: 58.3333333333%;
|
|
741
|
+
}
|
|
742
|
+
|
|
743
|
+
.sm-8 {
|
|
744
|
+
flex: 0 0 66.6666666667%;
|
|
745
|
+
max-width: 66.6666666667%;
|
|
746
|
+
}
|
|
747
|
+
|
|
748
|
+
.sm-9 {
|
|
749
|
+
flex: 0 0 75%;
|
|
750
|
+
max-width: 75%;
|
|
751
|
+
}
|
|
752
|
+
|
|
753
|
+
.sm-10 {
|
|
754
|
+
flex: 0 0 83.3333333333%;
|
|
755
|
+
max-width: 83.3333333333%;
|
|
756
|
+
}
|
|
757
|
+
|
|
758
|
+
.sm-11 {
|
|
759
|
+
flex: 0 0 91.6666666667%;
|
|
760
|
+
max-width: 91.6666666667%;
|
|
761
|
+
}
|
|
762
|
+
|
|
763
|
+
.sm-12 {
|
|
764
|
+
flex: 0 0 100%;
|
|
765
|
+
max-width: 100%;
|
|
766
|
+
}
|
|
767
|
+
}
|
|
768
|
+
@media only screen and (min-width: 992px) {
|
|
769
|
+
.md-1 {
|
|
770
|
+
flex: 0 0 8.3333333333%;
|
|
771
|
+
max-width: 8.3333333333%;
|
|
772
|
+
}
|
|
773
|
+
|
|
774
|
+
.md-2 {
|
|
775
|
+
flex: 0 0 16.6666666667%;
|
|
776
|
+
max-width: 16.6666666667%;
|
|
777
|
+
}
|
|
778
|
+
|
|
779
|
+
.md-3 {
|
|
780
|
+
flex: 0 0 25%;
|
|
781
|
+
max-width: 25%;
|
|
782
|
+
}
|
|
783
|
+
|
|
784
|
+
.md-4 {
|
|
785
|
+
flex: 0 0 33.3333333333%;
|
|
786
|
+
max-width: 33.3333333333%;
|
|
787
|
+
}
|
|
788
|
+
|
|
789
|
+
.md-5 {
|
|
790
|
+
flex: 0 0 41.6666666667%;
|
|
791
|
+
max-width: 41.6666666667%;
|
|
792
|
+
}
|
|
793
|
+
|
|
794
|
+
.md-6 {
|
|
795
|
+
flex: 0 0 50%;
|
|
796
|
+
max-width: 50%;
|
|
797
|
+
}
|
|
798
|
+
|
|
799
|
+
.md-7 {
|
|
800
|
+
flex: 0 0 58.3333333333%;
|
|
801
|
+
max-width: 58.3333333333%;
|
|
802
|
+
}
|
|
803
|
+
|
|
804
|
+
.md-8 {
|
|
805
|
+
flex: 0 0 66.6666666667%;
|
|
806
|
+
max-width: 66.6666666667%;
|
|
807
|
+
}
|
|
808
|
+
|
|
809
|
+
.md-9 {
|
|
810
|
+
flex: 0 0 75%;
|
|
811
|
+
max-width: 75%;
|
|
812
|
+
}
|
|
813
|
+
|
|
814
|
+
.md-10 {
|
|
815
|
+
flex: 0 0 83.3333333333%;
|
|
816
|
+
max-width: 83.3333333333%;
|
|
817
|
+
}
|
|
818
|
+
|
|
819
|
+
.md-11 {
|
|
820
|
+
flex: 0 0 91.6666666667%;
|
|
821
|
+
max-width: 91.6666666667%;
|
|
822
|
+
}
|
|
823
|
+
|
|
824
|
+
.md-12 {
|
|
825
|
+
flex: 0 0 100%;
|
|
826
|
+
max-width: 100%;
|
|
827
|
+
}
|
|
828
|
+
}
|
|
829
|
+
@media only screen and (min-width: 1200px) {
|
|
830
|
+
.lg-1 {
|
|
831
|
+
flex: 0 0 8.3333333333%;
|
|
832
|
+
max-width: 8.3333333333%;
|
|
833
|
+
}
|
|
834
|
+
|
|
835
|
+
.lg-2 {
|
|
836
|
+
flex: 0 0 16.6666666667%;
|
|
837
|
+
max-width: 16.6666666667%;
|
|
838
|
+
}
|
|
839
|
+
|
|
840
|
+
.lg-3 {
|
|
841
|
+
flex: 0 0 25%;
|
|
842
|
+
max-width: 25%;
|
|
843
|
+
}
|
|
844
|
+
|
|
845
|
+
.lg-4 {
|
|
846
|
+
flex: 0 0 33.3333333333%;
|
|
847
|
+
max-width: 33.3333333333%;
|
|
848
|
+
}
|
|
849
|
+
|
|
850
|
+
.lg-5 {
|
|
851
|
+
flex: 0 0 41.6666666667%;
|
|
852
|
+
max-width: 41.6666666667%;
|
|
853
|
+
}
|
|
854
|
+
|
|
855
|
+
.lg-6 {
|
|
856
|
+
flex: 0 0 50%;
|
|
857
|
+
max-width: 50%;
|
|
858
|
+
}
|
|
859
|
+
|
|
860
|
+
.lg-7 {
|
|
861
|
+
flex: 0 0 58.3333333333%;
|
|
862
|
+
max-width: 58.3333333333%;
|
|
863
|
+
}
|
|
864
|
+
|
|
865
|
+
.lg-8 {
|
|
866
|
+
flex: 0 0 66.6666666667%;
|
|
867
|
+
max-width: 66.6666666667%;
|
|
868
|
+
}
|
|
869
|
+
|
|
870
|
+
.lg-9 {
|
|
871
|
+
flex: 0 0 75%;
|
|
872
|
+
max-width: 75%;
|
|
873
|
+
}
|
|
874
|
+
|
|
875
|
+
.lg-10 {
|
|
876
|
+
flex: 0 0 83.3333333333%;
|
|
877
|
+
max-width: 83.3333333333%;
|
|
878
|
+
}
|
|
879
|
+
|
|
880
|
+
.lg-11 {
|
|
881
|
+
flex: 0 0 91.6666666667%;
|
|
882
|
+
max-width: 91.6666666667%;
|
|
883
|
+
}
|
|
884
|
+
|
|
885
|
+
.lg-12 {
|
|
886
|
+
flex: 0 0 100%;
|
|
887
|
+
max-width: 100%;
|
|
888
|
+
}
|
|
889
|
+
}
|
|
890
|
+
.align-top {
|
|
891
|
+
align-self: flex-start;
|
|
892
|
+
}
|
|
893
|
+
|
|
894
|
+
.align-middle {
|
|
895
|
+
align-self: center;
|
|
896
|
+
}
|
|
897
|
+
|
|
898
|
+
.align-bottom {
|
|
899
|
+
align-self: flex-end;
|
|
900
|
+
}
|
|
901
|
+
|
|
902
|
+
.container {
|
|
903
|
+
margin: 0 auto;
|
|
904
|
+
max-width: 960px;
|
|
905
|
+
position: relative;
|
|
906
|
+
width: 100%;
|
|
907
|
+
}
|
|
908
|
+
@media only screen and (max-width: 992px) {
|
|
909
|
+
.container {
|
|
910
|
+
width: 85%;
|
|
911
|
+
}
|
|
912
|
+
}
|
|
913
|
+
@media only screen and (max-width: 480px) {
|
|
914
|
+
.container {
|
|
915
|
+
width: 90%;
|
|
916
|
+
}
|
|
917
|
+
}
|
|
918
|
+
|
|
919
|
+
/* Content styling */
|
|
920
|
+
code {
|
|
921
|
+
color: #41403e;
|
|
922
|
+
color: var(--secondary);
|
|
923
|
+
background-color: #41403e;
|
|
924
|
+
background-color: var(--primary-shaded-70);
|
|
925
|
+
border-radius: 3px;
|
|
926
|
+
font-size: 80%;
|
|
927
|
+
padding: 2px 4px;
|
|
928
|
+
}
|
|
929
|
+
|
|
930
|
+
kbd {
|
|
931
|
+
color: #41403e;
|
|
932
|
+
color: var(--primary-inverse);
|
|
933
|
+
background-color: #41403e;
|
|
934
|
+
background-color: var(--primary);
|
|
935
|
+
border-radius: 3px;
|
|
936
|
+
font-size: 80%;
|
|
937
|
+
padding: 2px 4px;
|
|
938
|
+
}
|
|
939
|
+
|
|
940
|
+
pre {
|
|
941
|
+
color: #41403e;
|
|
942
|
+
color: var(--inverse-primary);
|
|
943
|
+
background-color: #41403e;
|
|
944
|
+
background-color: var(--primary-shaded-70);
|
|
945
|
+
border-color: #41403e;
|
|
946
|
+
border-color: var(--primary-shaded-50);
|
|
947
|
+
border-radius: 3px;
|
|
948
|
+
border-style: solid;
|
|
949
|
+
border-width: 1px;
|
|
950
|
+
display: block;
|
|
951
|
+
font-size: 80%;
|
|
952
|
+
line-height: 1.5;
|
|
953
|
+
overflow-x: auto;
|
|
954
|
+
padding: 1em;
|
|
955
|
+
white-space: pre;
|
|
956
|
+
word-break: break-all;
|
|
957
|
+
word-wrap: break-word;
|
|
958
|
+
}
|
|
959
|
+
pre code {
|
|
960
|
+
color: #41403e;
|
|
961
|
+
color: var(--inverse-primary);
|
|
962
|
+
background: transparent;
|
|
963
|
+
display: block;
|
|
964
|
+
font-size: inherit;
|
|
965
|
+
padding: initial;
|
|
966
|
+
white-space: pre;
|
|
967
|
+
}
|
|
968
|
+
|
|
969
|
+
html {
|
|
970
|
+
color: #41403e;
|
|
971
|
+
color: var(--primary);
|
|
972
|
+
font-family: "Neucha", sans-serif;
|
|
973
|
+
font-size: 20px;
|
|
974
|
+
}
|
|
975
|
+
|
|
976
|
+
p,
|
|
977
|
+
a,
|
|
978
|
+
button,
|
|
979
|
+
li,
|
|
980
|
+
table,
|
|
981
|
+
thead,
|
|
982
|
+
tbody,
|
|
983
|
+
th,
|
|
984
|
+
tr,
|
|
985
|
+
td,
|
|
986
|
+
input,
|
|
987
|
+
textarea,
|
|
988
|
+
select,
|
|
989
|
+
option {
|
|
990
|
+
font-family: "Neucha", sans-serif;
|
|
991
|
+
}
|
|
992
|
+
|
|
993
|
+
h1,
|
|
994
|
+
h2,
|
|
995
|
+
h3,
|
|
996
|
+
h4,
|
|
997
|
+
h5,
|
|
998
|
+
h6 {
|
|
999
|
+
font-family: "Patrick Hand SC", sans-serif;
|
|
1000
|
+
font-weight: normal;
|
|
1001
|
+
}
|
|
1002
|
+
|
|
1003
|
+
h1 {
|
|
1004
|
+
font-size: 4rem;
|
|
1005
|
+
}
|
|
1006
|
+
|
|
1007
|
+
h2 {
|
|
1008
|
+
font-size: 3rem;
|
|
1009
|
+
}
|
|
1010
|
+
|
|
1011
|
+
h3 {
|
|
1012
|
+
font-size: 2rem;
|
|
1013
|
+
}
|
|
1014
|
+
|
|
1015
|
+
h4 {
|
|
1016
|
+
font-size: 1.5rem;
|
|
1017
|
+
}
|
|
1018
|
+
|
|
1019
|
+
h5 {
|
|
1020
|
+
font-size: 1rem;
|
|
1021
|
+
}
|
|
1022
|
+
|
|
1023
|
+
h6 {
|
|
1024
|
+
font-size: 0.8rem;
|
|
1025
|
+
}
|
|
1026
|
+
|
|
1027
|
+
.text-left {
|
|
1028
|
+
text-align: left;
|
|
1029
|
+
}
|
|
1030
|
+
|
|
1031
|
+
.text-center {
|
|
1032
|
+
text-align: center;
|
|
1033
|
+
}
|
|
1034
|
+
|
|
1035
|
+
.text-right {
|
|
1036
|
+
text-align: right;
|
|
1037
|
+
}
|
|
1038
|
+
|
|
1039
|
+
img {
|
|
1040
|
+
border-bottom-left-radius: 15px 255px;
|
|
1041
|
+
border-bottom-right-radius: 225px 15px;
|
|
1042
|
+
border-top-left-radius: 255px 15px;
|
|
1043
|
+
border-top-right-radius: 15px 225px;
|
|
1044
|
+
border-color: #41403e;
|
|
1045
|
+
border-color: var(--primary);
|
|
1046
|
+
border-style: solid;
|
|
1047
|
+
border-width: 2px;
|
|
1048
|
+
display: block;
|
|
1049
|
+
height: auto;
|
|
1050
|
+
max-width: 100%;
|
|
1051
|
+
}
|
|
1052
|
+
img.float-left {
|
|
1053
|
+
float: left;
|
|
1054
|
+
margin: 1rem 1rem 1rem 0;
|
|
1055
|
+
}
|
|
1056
|
+
img.float-right {
|
|
1057
|
+
float: right;
|
|
1058
|
+
margin: 1rem 0 1rem 1rem;
|
|
1059
|
+
}
|
|
1060
|
+
img.no-responsive {
|
|
1061
|
+
display: initial;
|
|
1062
|
+
height: initial;
|
|
1063
|
+
max-width: initial;
|
|
1064
|
+
}
|
|
1065
|
+
img.no-border {
|
|
1066
|
+
border: 0;
|
|
1067
|
+
border-radius: 0;
|
|
1068
|
+
}
|
|
1069
|
+
|
|
1070
|
+
ol {
|
|
1071
|
+
list-style-type: decimal;
|
|
1072
|
+
}
|
|
1073
|
+
ol ol {
|
|
1074
|
+
list-style-type: upper-alpha;
|
|
1075
|
+
}
|
|
1076
|
+
ol ol ol {
|
|
1077
|
+
list-style-type: upper-roman;
|
|
1078
|
+
}
|
|
1079
|
+
ol ol ol ol {
|
|
1080
|
+
list-style-type: lower-alpha;
|
|
1081
|
+
}
|
|
1082
|
+
ol ol ol ol ol {
|
|
1083
|
+
list-style-type: lower-roman;
|
|
1084
|
+
}
|
|
1085
|
+
|
|
1086
|
+
ul {
|
|
1087
|
+
list-style: none;
|
|
1088
|
+
margin-left: 0;
|
|
1089
|
+
}
|
|
1090
|
+
ul li::before {
|
|
1091
|
+
content: "-";
|
|
1092
|
+
}
|
|
1093
|
+
ul li {
|
|
1094
|
+
text-indent: -7px;
|
|
1095
|
+
}
|
|
1096
|
+
ul li .badge,
|
|
1097
|
+
ul li [popover-bottom]::after,
|
|
1098
|
+
ul li [popover-left]::after,
|
|
1099
|
+
ul li [popover-right]::after,
|
|
1100
|
+
ul li [popover-top]::after {
|
|
1101
|
+
text-indent: 0;
|
|
1102
|
+
}
|
|
1103
|
+
ul li::before {
|
|
1104
|
+
left: -7px;
|
|
1105
|
+
position: relative;
|
|
1106
|
+
}
|
|
1107
|
+
ul ul li::before {
|
|
1108
|
+
content: "+";
|
|
1109
|
+
}
|
|
1110
|
+
ul ul ul li::before {
|
|
1111
|
+
content: "~";
|
|
1112
|
+
}
|
|
1113
|
+
ul ul ul ul li::before {
|
|
1114
|
+
content: "⤍";
|
|
1115
|
+
}
|
|
1116
|
+
ul ul ul ul ul li::before {
|
|
1117
|
+
content: "⁎";
|
|
1118
|
+
}
|
|
1119
|
+
ul.inline li {
|
|
1120
|
+
display: inline;
|
|
1121
|
+
margin-left: 5px;
|
|
1122
|
+
}
|
|
1123
|
+
|
|
1124
|
+
table {
|
|
1125
|
+
box-sizing: border-box;
|
|
1126
|
+
max-width: 100%;
|
|
1127
|
+
overflow-x: auto;
|
|
1128
|
+
width: 100%;
|
|
1129
|
+
}
|
|
1130
|
+
@media only screen and (max-width: 480px) {
|
|
1131
|
+
table thead tr th {
|
|
1132
|
+
padding: 2%;
|
|
1133
|
+
}
|
|
1134
|
+
table tbody tr td {
|
|
1135
|
+
padding: 2%;
|
|
1136
|
+
}
|
|
1137
|
+
}
|
|
1138
|
+
table thead tr th {
|
|
1139
|
+
line-height: 1.5;
|
|
1140
|
+
padding: 8px;
|
|
1141
|
+
text-align: left;
|
|
1142
|
+
vertical-align: bottom;
|
|
1143
|
+
}
|
|
1144
|
+
table tbody tr td {
|
|
1145
|
+
border-top: 1px dashed #d9d9d8;
|
|
1146
|
+
line-height: 1.5;
|
|
1147
|
+
padding: 8px;
|
|
1148
|
+
vertical-align: top;
|
|
1149
|
+
}
|
|
1150
|
+
table.table-hover tbody tr:hover {
|
|
1151
|
+
color: #41403e;
|
|
1152
|
+
color: var(--secondary);
|
|
1153
|
+
}
|
|
1154
|
+
table.table-alternating tbody tr:nth-of-type(even) {
|
|
1155
|
+
color: #82807c;
|
|
1156
|
+
}
|
|
1157
|
+
|
|
1158
|
+
/* Utilities */
|
|
1159
|
+
.border {
|
|
1160
|
+
border-color: #41403e;
|
|
1161
|
+
border-color: var(--primary);
|
|
1162
|
+
border-style: solid;
|
|
1163
|
+
border-width: 2px;
|
|
1164
|
+
}
|
|
1165
|
+
|
|
1166
|
+
.border,
|
|
1167
|
+
.border-1,
|
|
1168
|
+
.child-borders > *:nth-child(6n+1) {
|
|
1169
|
+
border-bottom-left-radius: 15px 255px;
|
|
1170
|
+
border-bottom-right-radius: 225px 15px;
|
|
1171
|
+
border-top-left-radius: 255px 15px;
|
|
1172
|
+
border-top-right-radius: 15px 225px;
|
|
1173
|
+
}
|
|
1174
|
+
|
|
1175
|
+
.border-2,
|
|
1176
|
+
.child-borders > *:nth-child(6n+2) {
|
|
1177
|
+
border-bottom-left-radius: 185px 25px;
|
|
1178
|
+
border-bottom-right-radius: 20px 205px;
|
|
1179
|
+
border-top-left-radius: 125px 25px;
|
|
1180
|
+
border-top-right-radius: 10px 205px;
|
|
1181
|
+
}
|
|
1182
|
+
|
|
1183
|
+
.border-3,
|
|
1184
|
+
.child-borders > *:nth-child(6n+3) {
|
|
1185
|
+
border-bottom-left-radius: 225px 15px;
|
|
1186
|
+
border-bottom-right-radius: 15px 255px;
|
|
1187
|
+
border-top-left-radius: 15px 225px;
|
|
1188
|
+
border-top-right-radius: 255px 15px;
|
|
1189
|
+
}
|
|
1190
|
+
|
|
1191
|
+
.border-4,
|
|
1192
|
+
.child-borders > *:nth-child(6n+4) {
|
|
1193
|
+
border-bottom-left-radius: 25px 115px;
|
|
1194
|
+
border-bottom-right-radius: 155px 25px;
|
|
1195
|
+
border-top-left-radius: 15px 225px;
|
|
1196
|
+
border-top-right-radius: 25px 150px;
|
|
1197
|
+
}
|
|
1198
|
+
|
|
1199
|
+
.border-5,
|
|
1200
|
+
.child-borders > *:nth-child(6n+5) {
|
|
1201
|
+
border-bottom-left-radius: 20px 115px;
|
|
1202
|
+
border-bottom-right-radius: 15px 105px;
|
|
1203
|
+
border-top-left-radius: 250px 15px;
|
|
1204
|
+
border-top-right-radius: 25px 80px;
|
|
1205
|
+
}
|
|
1206
|
+
|
|
1207
|
+
.border-6,
|
|
1208
|
+
.child-borders > *:nth-child(6n+6) {
|
|
1209
|
+
border-bottom-left-radius: 15px 225px;
|
|
1210
|
+
border-bottom-right-radius: 20px 205px;
|
|
1211
|
+
border-top-left-radius: 28px 125px;
|
|
1212
|
+
border-top-right-radius: 100px 30px;
|
|
1213
|
+
}
|
|
1214
|
+
|
|
1215
|
+
.child-borders > * {
|
|
1216
|
+
border-color: #41403e;
|
|
1217
|
+
border-color: var(--primary);
|
|
1218
|
+
border-style: solid;
|
|
1219
|
+
border-width: 2px;
|
|
1220
|
+
}
|
|
1221
|
+
|
|
1222
|
+
.border-white {
|
|
1223
|
+
border-color: #41403e;
|
|
1224
|
+
border-color: var(--white);
|
|
1225
|
+
}
|
|
1226
|
+
|
|
1227
|
+
.border-dotted {
|
|
1228
|
+
border-style: dotted;
|
|
1229
|
+
}
|
|
1230
|
+
|
|
1231
|
+
.border-dashed {
|
|
1232
|
+
border-style: dashed;
|
|
1233
|
+
}
|
|
1234
|
+
|
|
1235
|
+
.border-thick {
|
|
1236
|
+
border-width: 5px;
|
|
1237
|
+
}
|
|
1238
|
+
|
|
1239
|
+
.border-primary {
|
|
1240
|
+
border-color: #41403e;
|
|
1241
|
+
border-color: var(--primary);
|
|
1242
|
+
}
|
|
1243
|
+
|
|
1244
|
+
.border-secondary {
|
|
1245
|
+
border-color: #41403e;
|
|
1246
|
+
border-color: var(--secondary);
|
|
1247
|
+
}
|
|
1248
|
+
|
|
1249
|
+
.border-success {
|
|
1250
|
+
border-color: #41403e;
|
|
1251
|
+
border-color: var(--success);
|
|
1252
|
+
}
|
|
1253
|
+
|
|
1254
|
+
.border-warning {
|
|
1255
|
+
border-color: #41403e;
|
|
1256
|
+
border-color: var(--warning);
|
|
1257
|
+
}
|
|
1258
|
+
|
|
1259
|
+
.border-danger {
|
|
1260
|
+
border-color: #41403e;
|
|
1261
|
+
border-color: var(--danger);
|
|
1262
|
+
}
|
|
1263
|
+
|
|
1264
|
+
.border-muted {
|
|
1265
|
+
border-color: #41403e;
|
|
1266
|
+
border-color: var(--muted);
|
|
1267
|
+
}
|
|
1268
|
+
|
|
1269
|
+
.shadow {
|
|
1270
|
+
transition: all 235ms ease 0s;
|
|
1271
|
+
box-shadow: 15px 28px 25px -18px rgba(0, 0, 0, 0.2);
|
|
1272
|
+
}
|
|
1273
|
+
.shadow.shadow-large {
|
|
1274
|
+
transition: all 235ms ease 0s;
|
|
1275
|
+
box-shadow: 20px 38px 34px -26px rgba(0, 0, 0, 0.2);
|
|
1276
|
+
}
|
|
1277
|
+
.shadow.shadow-small {
|
|
1278
|
+
transition: all 235ms ease 0s;
|
|
1279
|
+
box-shadow: 10px 19px 17px -13px rgba(0, 0, 0, 0.2);
|
|
1280
|
+
}
|
|
1281
|
+
.shadow.shadow-hover:hover {
|
|
1282
|
+
transform: translate3d(0, 2px, 0);
|
|
1283
|
+
box-shadow: 2px 8px 8px -5px rgba(0, 0, 0, 0.3);
|
|
1284
|
+
}
|
|
1285
|
+
|
|
1286
|
+
.child-shadows > * {
|
|
1287
|
+
transition: all 235ms ease 0s;
|
|
1288
|
+
box-shadow: 15px 28px 25px -18px rgba(0, 0, 0, 0.2);
|
|
1289
|
+
}
|
|
1290
|
+
|
|
1291
|
+
.child-shadows .shadow-none {
|
|
1292
|
+
box-shadow: none;
|
|
1293
|
+
}
|
|
1294
|
+
|
|
1295
|
+
.child-shadows-hover > * {
|
|
1296
|
+
transition: all 235ms ease 0s;
|
|
1297
|
+
box-shadow: 15px 28px 25px -18px rgba(0, 0, 0, 0.2);
|
|
1298
|
+
}
|
|
1299
|
+
.child-shadows-hover > *:hover {
|
|
1300
|
+
transform: translate3d(0, 2px, 0);
|
|
1301
|
+
box-shadow: 2px 8px 8px -5px rgba(0, 0, 0, 0.3);
|
|
1302
|
+
}
|
|
1303
|
+
|
|
1304
|
+
/* Components */
|
|
1305
|
+
.collapsible {
|
|
1306
|
+
display: flex;
|
|
1307
|
+
flex-direction: column;
|
|
1308
|
+
}
|
|
1309
|
+
.collapsible:nth-of-type(1) {
|
|
1310
|
+
border-top-color: #41403e;
|
|
1311
|
+
border-top-color: var(--muted-light);
|
|
1312
|
+
border-top-style: solid;
|
|
1313
|
+
border-top-width: 1px;
|
|
1314
|
+
}
|
|
1315
|
+
.collapsible .collapsible-body {
|
|
1316
|
+
border-bottom-color: #41403e;
|
|
1317
|
+
border-bottom-color: var(--muted-light);
|
|
1318
|
+
background-color: #41403e;
|
|
1319
|
+
background-color: var(--white-dark-light-80);
|
|
1320
|
+
transition: all 235ms ease-in-out 0s;
|
|
1321
|
+
border-bottom-style: solid;
|
|
1322
|
+
border-bottom-width: 1px;
|
|
1323
|
+
margin: 0;
|
|
1324
|
+
max-height: 0;
|
|
1325
|
+
opacity: 0;
|
|
1326
|
+
overflow: hidden;
|
|
1327
|
+
padding: 0 0.75rem;
|
|
1328
|
+
}
|
|
1329
|
+
.collapsible > input {
|
|
1330
|
+
display: none;
|
|
1331
|
+
}
|
|
1332
|
+
.collapsible > input:checked + label {
|
|
1333
|
+
color: #41403e;
|
|
1334
|
+
color: var(--primary);
|
|
1335
|
+
}
|
|
1336
|
+
.collapsible > input[id^=collapsible]:checked ~ div.collapsible-body {
|
|
1337
|
+
margin: 0;
|
|
1338
|
+
max-height: 960px;
|
|
1339
|
+
opacity: 1;
|
|
1340
|
+
padding: 0.75rem;
|
|
1341
|
+
}
|
|
1342
|
+
.collapsible > label {
|
|
1343
|
+
color: #41403e;
|
|
1344
|
+
color: var(--primary);
|
|
1345
|
+
border-bottom-color: #41403e;
|
|
1346
|
+
border-bottom-color: var(--muted-light);
|
|
1347
|
+
border-bottom-style: solid;
|
|
1348
|
+
border-bottom-width: 1px;
|
|
1349
|
+
display: inline-block;
|
|
1350
|
+
font-weight: 600;
|
|
1351
|
+
margin: 0 0 -1px;
|
|
1352
|
+
padding: 0.75rem;
|
|
1353
|
+
text-align: center;
|
|
1354
|
+
}
|
|
1355
|
+
.collapsible > label:hover {
|
|
1356
|
+
color: #41403e;
|
|
1357
|
+
color: var(--muted);
|
|
1358
|
+
cursor: pointer;
|
|
1359
|
+
}
|
|
1360
|
+
|
|
1361
|
+
.alert {
|
|
1362
|
+
border-color: #41403e;
|
|
1363
|
+
border-color: var(--primary);
|
|
1364
|
+
border-bottom-left-radius: 15px 255px;
|
|
1365
|
+
border-bottom-right-radius: 225px 15px;
|
|
1366
|
+
border-top-left-radius: 255px 15px;
|
|
1367
|
+
border-top-right-radius: 15px 225px;
|
|
1368
|
+
border-style: solid;
|
|
1369
|
+
border-width: 2px;
|
|
1370
|
+
margin-bottom: 20px;
|
|
1371
|
+
padding: 15px;
|
|
1372
|
+
width: 100%;
|
|
1373
|
+
}
|
|
1374
|
+
.alert.dismissible {
|
|
1375
|
+
transition: all 235ms ease-in-out 0s;
|
|
1376
|
+
display: flex;
|
|
1377
|
+
justify-content: space-between;
|
|
1378
|
+
max-height: 48rem;
|
|
1379
|
+
overflow: hidden;
|
|
1380
|
+
}
|
|
1381
|
+
.alert .btn-close {
|
|
1382
|
+
transition: all 235ms ease-in-out 0s;
|
|
1383
|
+
color: #41403e;
|
|
1384
|
+
color: var(--primary-text);
|
|
1385
|
+
cursor: pointer;
|
|
1386
|
+
margin-left: 0.75rem;
|
|
1387
|
+
}
|
|
1388
|
+
.alert .btn-close:hover, .alert .btn-close:active, .alert .btn-close:focus {
|
|
1389
|
+
color: #41403e;
|
|
1390
|
+
color: var(--primary-dark);
|
|
1391
|
+
}
|
|
1392
|
+
|
|
1393
|
+
.alert-primary {
|
|
1394
|
+
color: #41403e;
|
|
1395
|
+
color: var(--primary-text);
|
|
1396
|
+
background-color: #41403e;
|
|
1397
|
+
background-color: var(--primary-light);
|
|
1398
|
+
border-color: #41403e;
|
|
1399
|
+
border-color: var(--primary);
|
|
1400
|
+
}
|
|
1401
|
+
.alert-primary .btn-close {
|
|
1402
|
+
color: #41403e;
|
|
1403
|
+
color: var(--primary-text);
|
|
1404
|
+
}
|
|
1405
|
+
.alert-primary .btn-close:hover, .alert-primary .btn-close:active, .alert-primary .btn-close:focus {
|
|
1406
|
+
color: #41403e;
|
|
1407
|
+
color: var(--primary-dark);
|
|
1408
|
+
}
|
|
1409
|
+
|
|
1410
|
+
.alert-secondary {
|
|
1411
|
+
color: #41403e;
|
|
1412
|
+
color: var(--secondary-text);
|
|
1413
|
+
background-color: #41403e;
|
|
1414
|
+
background-color: var(--secondary-light);
|
|
1415
|
+
border-color: #41403e;
|
|
1416
|
+
border-color: var(--secondary);
|
|
1417
|
+
}
|
|
1418
|
+
.alert-secondary .btn-close {
|
|
1419
|
+
color: #41403e;
|
|
1420
|
+
color: var(--secondary-text);
|
|
1421
|
+
}
|
|
1422
|
+
.alert-secondary .btn-close:hover, .alert-secondary .btn-close:active, .alert-secondary .btn-close:focus {
|
|
1423
|
+
color: #41403e;
|
|
1424
|
+
color: var(--secondary-dark);
|
|
1425
|
+
}
|
|
1426
|
+
|
|
1427
|
+
.alert-success {
|
|
1428
|
+
color: #41403e;
|
|
1429
|
+
color: var(--success-text);
|
|
1430
|
+
background-color: #41403e;
|
|
1431
|
+
background-color: var(--success-light);
|
|
1432
|
+
border-color: #41403e;
|
|
1433
|
+
border-color: var(--success);
|
|
1434
|
+
}
|
|
1435
|
+
.alert-success .btn-close {
|
|
1436
|
+
color: #41403e;
|
|
1437
|
+
color: var(--success-text);
|
|
1438
|
+
}
|
|
1439
|
+
.alert-success .btn-close:hover, .alert-success .btn-close:active, .alert-success .btn-close:focus {
|
|
1440
|
+
color: #41403e;
|
|
1441
|
+
color: var(--success-dark);
|
|
1442
|
+
}
|
|
1443
|
+
|
|
1444
|
+
.alert-warning {
|
|
1445
|
+
color: #41403e;
|
|
1446
|
+
color: var(--warning-text);
|
|
1447
|
+
background-color: #41403e;
|
|
1448
|
+
background-color: var(--warning-light);
|
|
1449
|
+
border-color: #41403e;
|
|
1450
|
+
border-color: var(--warning);
|
|
1451
|
+
}
|
|
1452
|
+
.alert-warning .btn-close {
|
|
1453
|
+
color: #41403e;
|
|
1454
|
+
color: var(--warning-text);
|
|
1455
|
+
}
|
|
1456
|
+
.alert-warning .btn-close:hover, .alert-warning .btn-close:active, .alert-warning .btn-close:focus {
|
|
1457
|
+
color: #41403e;
|
|
1458
|
+
color: var(--warning-dark);
|
|
1459
|
+
}
|
|
1460
|
+
|
|
1461
|
+
.alert-danger {
|
|
1462
|
+
color: #41403e;
|
|
1463
|
+
color: var(--danger-text);
|
|
1464
|
+
background-color: #41403e;
|
|
1465
|
+
background-color: var(--danger-light);
|
|
1466
|
+
border-color: #41403e;
|
|
1467
|
+
border-color: var(--danger);
|
|
1468
|
+
}
|
|
1469
|
+
.alert-danger .btn-close {
|
|
1470
|
+
color: #41403e;
|
|
1471
|
+
color: var(--danger-text);
|
|
1472
|
+
}
|
|
1473
|
+
.alert-danger .btn-close:hover, .alert-danger .btn-close:active, .alert-danger .btn-close:focus {
|
|
1474
|
+
color: #41403e;
|
|
1475
|
+
color: var(--danger-dark);
|
|
1476
|
+
}
|
|
1477
|
+
|
|
1478
|
+
.alert-muted {
|
|
1479
|
+
color: #41403e;
|
|
1480
|
+
color: var(--muted-text);
|
|
1481
|
+
background-color: #41403e;
|
|
1482
|
+
background-color: var(--muted-light);
|
|
1483
|
+
border-color: #41403e;
|
|
1484
|
+
border-color: var(--muted);
|
|
1485
|
+
}
|
|
1486
|
+
.alert-muted .btn-close {
|
|
1487
|
+
color: #41403e;
|
|
1488
|
+
color: var(--muted-text);
|
|
1489
|
+
}
|
|
1490
|
+
.alert-muted .btn-close:hover, .alert-muted .btn-close:active, .alert-muted .btn-close:focus {
|
|
1491
|
+
color: #41403e;
|
|
1492
|
+
color: var(--muted-dark);
|
|
1493
|
+
}
|
|
1494
|
+
|
|
1495
|
+
.alert-state {
|
|
1496
|
+
display: none;
|
|
1497
|
+
}
|
|
1498
|
+
.alert-state:checked + .dismissible {
|
|
1499
|
+
border-width: 0;
|
|
1500
|
+
margin: 0;
|
|
1501
|
+
max-height: 0;
|
|
1502
|
+
opacity: 0;
|
|
1503
|
+
padding-bottom: 0;
|
|
1504
|
+
padding-top: 0;
|
|
1505
|
+
}
|
|
1506
|
+
|
|
1507
|
+
article .article-title {
|
|
1508
|
+
font-size: 3rem;
|
|
1509
|
+
}
|
|
1510
|
+
article .article-meta {
|
|
1511
|
+
color: #41403e;
|
|
1512
|
+
color: var(--muted-text);
|
|
1513
|
+
font-size: 15px;
|
|
1514
|
+
}
|
|
1515
|
+
article .article-meta a {
|
|
1516
|
+
color: #41403e;
|
|
1517
|
+
color: var(--muted-text);
|
|
1518
|
+
background-image: none;
|
|
1519
|
+
}
|
|
1520
|
+
article .article-meta a:hover {
|
|
1521
|
+
color: #41403e;
|
|
1522
|
+
color: var(--light-dark);
|
|
1523
|
+
}
|
|
1524
|
+
article .text-lead {
|
|
1525
|
+
font-size: 30px;
|
|
1526
|
+
line-height: 1.3;
|
|
1527
|
+
margin: 35px;
|
|
1528
|
+
}
|
|
1529
|
+
article button:not(:first-of-type) {
|
|
1530
|
+
margin-left: 2rem;
|
|
1531
|
+
}
|
|
1532
|
+
@media only screen and (max-width: 480px) {
|
|
1533
|
+
article button:not(:first-of-type) {
|
|
1534
|
+
margin-left: 0;
|
|
1535
|
+
}
|
|
1536
|
+
}
|
|
1537
|
+
article p {
|
|
1538
|
+
line-height: 1.6;
|
|
1539
|
+
}
|
|
1540
|
+
|
|
1541
|
+
.badge {
|
|
1542
|
+
border-bottom-left-radius: 15px 255px;
|
|
1543
|
+
border-bottom-right-radius: 225px 15px;
|
|
1544
|
+
border-top-left-radius: 255px 15px;
|
|
1545
|
+
border-top-right-radius: 15px 225px;
|
|
1546
|
+
color: #41403e;
|
|
1547
|
+
color: var(--white);
|
|
1548
|
+
background-color: #41403e;
|
|
1549
|
+
background-color: var(--muted);
|
|
1550
|
+
border-color: #41403e;
|
|
1551
|
+
border-color: var(--primary);
|
|
1552
|
+
border: 2px solid;
|
|
1553
|
+
border-color: transparent;
|
|
1554
|
+
display: inline-block;
|
|
1555
|
+
font-size: 75%;
|
|
1556
|
+
font-weight: 700;
|
|
1557
|
+
line-height: 1;
|
|
1558
|
+
padding: 0.25em 0.4em;
|
|
1559
|
+
text-align: center;
|
|
1560
|
+
vertical-align: baseline;
|
|
1561
|
+
white-space: nowrap;
|
|
1562
|
+
}
|
|
1563
|
+
|
|
1564
|
+
.badge.primary {
|
|
1565
|
+
background-color: #41403e;
|
|
1566
|
+
background-color: var(--primary);
|
|
1567
|
+
}
|
|
1568
|
+
|
|
1569
|
+
.badge.secondary {
|
|
1570
|
+
background-color: #41403e;
|
|
1571
|
+
background-color: var(--secondary);
|
|
1572
|
+
}
|
|
1573
|
+
|
|
1574
|
+
.badge.success {
|
|
1575
|
+
background-color: #41403e;
|
|
1576
|
+
background-color: var(--success);
|
|
1577
|
+
}
|
|
1578
|
+
|
|
1579
|
+
.badge.warning {
|
|
1580
|
+
background-color: #41403e;
|
|
1581
|
+
background-color: var(--warning);
|
|
1582
|
+
}
|
|
1583
|
+
|
|
1584
|
+
.badge.danger {
|
|
1585
|
+
background-color: #41403e;
|
|
1586
|
+
background-color: var(--danger);
|
|
1587
|
+
}
|
|
1588
|
+
|
|
1589
|
+
.badge.muted {
|
|
1590
|
+
background-color: #41403e;
|
|
1591
|
+
background-color: var(--muted);
|
|
1592
|
+
}
|
|
1593
|
+
|
|
1594
|
+
ul.breadcrumb {
|
|
1595
|
+
list-style: none;
|
|
1596
|
+
padding: 10px 16px;
|
|
1597
|
+
}
|
|
1598
|
+
ul.breadcrumb li {
|
|
1599
|
+
display: inline;
|
|
1600
|
+
font-size: 20px;
|
|
1601
|
+
}
|
|
1602
|
+
ul.breadcrumb li::before {
|
|
1603
|
+
content: "";
|
|
1604
|
+
}
|
|
1605
|
+
ul.breadcrumb li a {
|
|
1606
|
+
color: #41403e;
|
|
1607
|
+
color: var(--secondary);
|
|
1608
|
+
background-image: none;
|
|
1609
|
+
text-decoration: none;
|
|
1610
|
+
}
|
|
1611
|
+
ul.breadcrumb li a:hover {
|
|
1612
|
+
text-decoration: underline;
|
|
1613
|
+
}
|
|
1614
|
+
ul.breadcrumb li + li::before {
|
|
1615
|
+
content: "/ ";
|
|
1616
|
+
padding: 8px;
|
|
1617
|
+
}
|
|
1618
|
+
|
|
1619
|
+
button,
|
|
1620
|
+
.paper-btn,
|
|
1621
|
+
[type=button] {
|
|
1622
|
+
border-bottom-left-radius: 15px 255px;
|
|
1623
|
+
border-bottom-right-radius: 225px 15px;
|
|
1624
|
+
border-top-left-radius: 255px 15px;
|
|
1625
|
+
border-top-right-radius: 15px 225px;
|
|
1626
|
+
transition: all 235ms ease 0s;
|
|
1627
|
+
box-shadow: 15px 28px 25px -18px rgba(0, 0, 0, 0.2);
|
|
1628
|
+
transition: all 235ms ease-in-out 0s;
|
|
1629
|
+
color: #41403e;
|
|
1630
|
+
color: var(--primary);
|
|
1631
|
+
border-color: #41403e;
|
|
1632
|
+
border-color: var(--primary);
|
|
1633
|
+
background-color: #41403e;
|
|
1634
|
+
background-color: var(--main-background);
|
|
1635
|
+
align-self: center;
|
|
1636
|
+
background-image: none;
|
|
1637
|
+
border-style: solid;
|
|
1638
|
+
border-width: 2px;
|
|
1639
|
+
cursor: pointer;
|
|
1640
|
+
display: inline-block;
|
|
1641
|
+
font-size: 1rem;
|
|
1642
|
+
outline: none;
|
|
1643
|
+
padding: 0.75rem;
|
|
1644
|
+
}
|
|
1645
|
+
@media only screen and (max-width: 520px) {
|
|
1646
|
+
button,
|
|
1647
|
+
.paper-btn,
|
|
1648
|
+
[type=button] {
|
|
1649
|
+
display: inline-block;
|
|
1650
|
+
margin: 0 auto;
|
|
1651
|
+
margin-bottom: 1rem;
|
|
1652
|
+
text-align: center;
|
|
1653
|
+
}
|
|
1654
|
+
}
|
|
1655
|
+
button.btn-large,
|
|
1656
|
+
.paper-btn.btn-large,
|
|
1657
|
+
[type=button].btn-large {
|
|
1658
|
+
transition: all 235ms ease 0s;
|
|
1659
|
+
box-shadow: 20px 38px 34px -26px rgba(0, 0, 0, 0.2);
|
|
1660
|
+
font-size: 2rem;
|
|
1661
|
+
padding: 1rem;
|
|
1662
|
+
}
|
|
1663
|
+
button.btn-small,
|
|
1664
|
+
.paper-btn.btn-small,
|
|
1665
|
+
[type=button].btn-small {
|
|
1666
|
+
transition: all 235ms ease 0s;
|
|
1667
|
+
box-shadow: 10px 19px 17px -13px rgba(0, 0, 0, 0.2);
|
|
1668
|
+
font-size: 0.75rem;
|
|
1669
|
+
padding: 0.5rem;
|
|
1670
|
+
}
|
|
1671
|
+
button.btn-block,
|
|
1672
|
+
.paper-btn.btn-block,
|
|
1673
|
+
[type=button].btn-block {
|
|
1674
|
+
display: block;
|
|
1675
|
+
width: 100%;
|
|
1676
|
+
}
|
|
1677
|
+
button:hover,
|
|
1678
|
+
.paper-btn:hover,
|
|
1679
|
+
[type=button]:hover {
|
|
1680
|
+
transform: translate3d(0, 2px, 0);
|
|
1681
|
+
box-shadow: 2px 8px 8px -5px rgba(0, 0, 0, 0.3);
|
|
1682
|
+
}
|
|
1683
|
+
button:focus,
|
|
1684
|
+
.paper-btn:focus,
|
|
1685
|
+
[type=button]:focus {
|
|
1686
|
+
border-color: #41403e;
|
|
1687
|
+
border-color: var(--secondary);
|
|
1688
|
+
border-style: solid;
|
|
1689
|
+
border-width: 2px;
|
|
1690
|
+
box-shadow: 2px 8px 4px -6px rgba(0, 0, 0, 0.3);
|
|
1691
|
+
}
|
|
1692
|
+
button:active,
|
|
1693
|
+
.paper-btn:active,
|
|
1694
|
+
[type=button]:active {
|
|
1695
|
+
border-color: rgba(0, 0, 0, 0.2);
|
|
1696
|
+
transition: none;
|
|
1697
|
+
}
|
|
1698
|
+
button.disabled, button[disabled],
|
|
1699
|
+
.paper-btn.disabled,
|
|
1700
|
+
.paper-btn[disabled],
|
|
1701
|
+
[type=button].disabled,
|
|
1702
|
+
[type=button][disabled] {
|
|
1703
|
+
cursor: not-allowed;
|
|
1704
|
+
opacity: 0.5;
|
|
1705
|
+
}
|
|
1706
|
+
|
|
1707
|
+
a {
|
|
1708
|
+
color: #41403e;
|
|
1709
|
+
color: var(--secondary);
|
|
1710
|
+
background-image: linear-gradient(5deg, transparent 65%, #0b74d5 80%, transparent 90%), linear-gradient(165deg, transparent 5%, #0b74d5 15%, transparent 25%), linear-gradient(165deg, transparent 45%, #0b74d5 55%, transparent 65%), linear-gradient(15deg, transparent 25%, #0b74d5 35%, transparent 50%);
|
|
1711
|
+
background-position: 0 90%;
|
|
1712
|
+
background-repeat: repeat-x;
|
|
1713
|
+
background-size: 4px 3px;
|
|
1714
|
+
text-decoration: none;
|
|
1715
|
+
}
|
|
1716
|
+
a:visited {
|
|
1717
|
+
color: #41403e;
|
|
1718
|
+
color: var(--primary);
|
|
1719
|
+
text-decoration: none;
|
|
1720
|
+
}
|
|
1721
|
+
|
|
1722
|
+
button.btn-primary,
|
|
1723
|
+
.paper-btn.btn-primary,
|
|
1724
|
+
[type=button].btn-primary {
|
|
1725
|
+
color: #41403e;
|
|
1726
|
+
color: var(--primary-text);
|
|
1727
|
+
background-color: #41403e;
|
|
1728
|
+
background-color: var(--primary-light);
|
|
1729
|
+
border-color: #41403e;
|
|
1730
|
+
border-color: var(--primary);
|
|
1731
|
+
}
|
|
1732
|
+
button.btn-primary:hover:active,
|
|
1733
|
+
.paper-btn.btn-primary:hover:active,
|
|
1734
|
+
[type=button].btn-primary:hover:active {
|
|
1735
|
+
background-color: #b4b3b0;
|
|
1736
|
+
}
|
|
1737
|
+
|
|
1738
|
+
button.btn-secondary,
|
|
1739
|
+
.paper-btn.btn-secondary,
|
|
1740
|
+
[type=button].btn-secondary {
|
|
1741
|
+
color: #41403e;
|
|
1742
|
+
color: var(--secondary-text);
|
|
1743
|
+
background-color: #41403e;
|
|
1744
|
+
background-color: var(--secondary-light);
|
|
1745
|
+
border-color: #41403e;
|
|
1746
|
+
border-color: var(--secondary);
|
|
1747
|
+
}
|
|
1748
|
+
button.btn-secondary:hover:active,
|
|
1749
|
+
.paper-btn.btn-secondary:hover:active,
|
|
1750
|
+
[type=button].btn-secondary:hover:active {
|
|
1751
|
+
background-color: #a7d3fa;
|
|
1752
|
+
}
|
|
1753
|
+
|
|
1754
|
+
button.btn-success,
|
|
1755
|
+
.paper-btn.btn-success,
|
|
1756
|
+
[type=button].btn-success {
|
|
1757
|
+
color: #41403e;
|
|
1758
|
+
color: var(--success-text);
|
|
1759
|
+
background-color: #41403e;
|
|
1760
|
+
background-color: var(--success-light);
|
|
1761
|
+
border-color: #41403e;
|
|
1762
|
+
border-color: var(--success);
|
|
1763
|
+
}
|
|
1764
|
+
button.btn-success:hover:active,
|
|
1765
|
+
.paper-btn.btn-success:hover:active,
|
|
1766
|
+
[type=button].btn-success:hover:active {
|
|
1767
|
+
background-color: #bccca8;
|
|
1768
|
+
}
|
|
1769
|
+
|
|
1770
|
+
button.btn-warning,
|
|
1771
|
+
.paper-btn.btn-warning,
|
|
1772
|
+
[type=button].btn-warning {
|
|
1773
|
+
color: #41403e;
|
|
1774
|
+
color: var(--warning-text);
|
|
1775
|
+
background-color: #41403e;
|
|
1776
|
+
background-color: var(--warning-light);
|
|
1777
|
+
border-color: #41403e;
|
|
1778
|
+
border-color: var(--warning);
|
|
1779
|
+
}
|
|
1780
|
+
button.btn-warning:hover:active,
|
|
1781
|
+
.paper-btn.btn-warning:hover:active,
|
|
1782
|
+
[type=button].btn-warning:hover:active {
|
|
1783
|
+
background-color: #ede49b;
|
|
1784
|
+
}
|
|
1785
|
+
|
|
1786
|
+
button.btn-danger,
|
|
1787
|
+
.paper-btn.btn-danger,
|
|
1788
|
+
[type=button].btn-danger {
|
|
1789
|
+
color: #41403e;
|
|
1790
|
+
color: var(--danger-text);
|
|
1791
|
+
background-color: #41403e;
|
|
1792
|
+
background-color: var(--danger-light);
|
|
1793
|
+
border-color: #41403e;
|
|
1794
|
+
border-color: var(--danger);
|
|
1795
|
+
}
|
|
1796
|
+
button.btn-danger:hover:active,
|
|
1797
|
+
.paper-btn.btn-danger:hover:active,
|
|
1798
|
+
[type=button].btn-danger:hover:active {
|
|
1799
|
+
background-color: #e6a5a1;
|
|
1800
|
+
}
|
|
1801
|
+
|
|
1802
|
+
button.btn-muted,
|
|
1803
|
+
.paper-btn.btn-muted,
|
|
1804
|
+
[type=button].btn-muted {
|
|
1805
|
+
color: #41403e;
|
|
1806
|
+
color: var(--muted-text);
|
|
1807
|
+
background-color: #41403e;
|
|
1808
|
+
background-color: var(--muted-light);
|
|
1809
|
+
border-color: #41403e;
|
|
1810
|
+
border-color: var(--muted);
|
|
1811
|
+
}
|
|
1812
|
+
button.btn-muted:hover:active,
|
|
1813
|
+
.paper-btn.btn-muted:hover:active,
|
|
1814
|
+
[type=button].btn-muted:hover:active {
|
|
1815
|
+
background-color: #caced1;
|
|
1816
|
+
}
|
|
1817
|
+
|
|
1818
|
+
button.btn-primary-outline,
|
|
1819
|
+
.paper-btn.btn-primary-outline,
|
|
1820
|
+
[type=button].btn-primary-outline {
|
|
1821
|
+
background-color: #41403e;
|
|
1822
|
+
background-color: var(--main-background);
|
|
1823
|
+
color: #41403e;
|
|
1824
|
+
color: var(--primary);
|
|
1825
|
+
border-color: #41403e;
|
|
1826
|
+
border-color: var(--primary);
|
|
1827
|
+
}
|
|
1828
|
+
button.btn-primary-outline:hover,
|
|
1829
|
+
.paper-btn.btn-primary-outline:hover,
|
|
1830
|
+
[type=button].btn-primary-outline:hover {
|
|
1831
|
+
background-color: #cdcccb;
|
|
1832
|
+
}
|
|
1833
|
+
button.btn-primary-outline:hover:active,
|
|
1834
|
+
.paper-btn.btn-primary-outline:hover:active,
|
|
1835
|
+
[type=button].btn-primary-outline:hover:active {
|
|
1836
|
+
background-color: #b4b3b0;
|
|
1837
|
+
}
|
|
1838
|
+
|
|
1839
|
+
button.btn-secondary-outline,
|
|
1840
|
+
.paper-btn.btn-secondary-outline,
|
|
1841
|
+
[type=button].btn-secondary-outline {
|
|
1842
|
+
background-color: #41403e;
|
|
1843
|
+
background-color: var(--main-background);
|
|
1844
|
+
color: #41403e;
|
|
1845
|
+
color: var(--secondary);
|
|
1846
|
+
border-color: #41403e;
|
|
1847
|
+
border-color: var(--secondary);
|
|
1848
|
+
}
|
|
1849
|
+
button.btn-secondary-outline:hover,
|
|
1850
|
+
.paper-btn.btn-secondary-outline:hover,
|
|
1851
|
+
[type=button].btn-secondary-outline:hover {
|
|
1852
|
+
background-color: #d8ebfd;
|
|
1853
|
+
}
|
|
1854
|
+
button.btn-secondary-outline:hover:active,
|
|
1855
|
+
.paper-btn.btn-secondary-outline:hover:active,
|
|
1856
|
+
[type=button].btn-secondary-outline:hover:active {
|
|
1857
|
+
background-color: #a7d3fa;
|
|
1858
|
+
}
|
|
1859
|
+
|
|
1860
|
+
button.btn-success-outline,
|
|
1861
|
+
.paper-btn.btn-success-outline,
|
|
1862
|
+
[type=button].btn-success-outline {
|
|
1863
|
+
background-color: #41403e;
|
|
1864
|
+
background-color: var(--main-background);
|
|
1865
|
+
color: #41403e;
|
|
1866
|
+
color: var(--success);
|
|
1867
|
+
border-color: #41403e;
|
|
1868
|
+
border-color: var(--success);
|
|
1869
|
+
}
|
|
1870
|
+
button.btn-success-outline:hover,
|
|
1871
|
+
.paper-btn.btn-success-outline:hover,
|
|
1872
|
+
[type=button].btn-success-outline:hover {
|
|
1873
|
+
background-color: #d5dfc8;
|
|
1874
|
+
}
|
|
1875
|
+
button.btn-success-outline:hover:active,
|
|
1876
|
+
.paper-btn.btn-success-outline:hover:active,
|
|
1877
|
+
[type=button].btn-success-outline:hover:active {
|
|
1878
|
+
background-color: #bccca8;
|
|
1879
|
+
}
|
|
1880
|
+
|
|
1881
|
+
button.btn-warning-outline,
|
|
1882
|
+
.paper-btn.btn-warning-outline,
|
|
1883
|
+
[type=button].btn-warning-outline {
|
|
1884
|
+
background-color: #41403e;
|
|
1885
|
+
background-color: var(--main-background);
|
|
1886
|
+
color: #41403e;
|
|
1887
|
+
color: var(--warning);
|
|
1888
|
+
border-color: #41403e;
|
|
1889
|
+
border-color: var(--warning);
|
|
1890
|
+
}
|
|
1891
|
+
button.btn-warning-outline:hover,
|
|
1892
|
+
.paper-btn.btn-warning-outline:hover,
|
|
1893
|
+
[type=button].btn-warning-outline:hover {
|
|
1894
|
+
background-color: #f5f0c6;
|
|
1895
|
+
}
|
|
1896
|
+
button.btn-warning-outline:hover:active,
|
|
1897
|
+
.paper-btn.btn-warning-outline:hover:active,
|
|
1898
|
+
[type=button].btn-warning-outline:hover:active {
|
|
1899
|
+
background-color: #ede49b;
|
|
1900
|
+
}
|
|
1901
|
+
|
|
1902
|
+
button.btn-danger-outline,
|
|
1903
|
+
.paper-btn.btn-danger-outline,
|
|
1904
|
+
[type=button].btn-danger-outline {
|
|
1905
|
+
background-color: #41403e;
|
|
1906
|
+
background-color: var(--main-background);
|
|
1907
|
+
color: #41403e;
|
|
1908
|
+
color: var(--danger);
|
|
1909
|
+
border-color: #41403e;
|
|
1910
|
+
border-color: var(--danger);
|
|
1911
|
+
}
|
|
1912
|
+
button.btn-danger-outline:hover,
|
|
1913
|
+
.paper-btn.btn-danger-outline:hover,
|
|
1914
|
+
[type=button].btn-danger-outline:hover {
|
|
1915
|
+
background-color: #f0cbc9;
|
|
1916
|
+
}
|
|
1917
|
+
button.btn-danger-outline:hover:active,
|
|
1918
|
+
.paper-btn.btn-danger-outline:hover:active,
|
|
1919
|
+
[type=button].btn-danger-outline:hover:active {
|
|
1920
|
+
background-color: #e6a5a1;
|
|
1921
|
+
}
|
|
1922
|
+
|
|
1923
|
+
button.btn-muted-outline,
|
|
1924
|
+
.paper-btn.btn-muted-outline,
|
|
1925
|
+
[type=button].btn-muted-outline {
|
|
1926
|
+
background-color: #41403e;
|
|
1927
|
+
background-color: var(--main-background);
|
|
1928
|
+
color: #41403e;
|
|
1929
|
+
color: var(--muted);
|
|
1930
|
+
border-color: #41403e;
|
|
1931
|
+
border-color: var(--muted);
|
|
1932
|
+
}
|
|
1933
|
+
button.btn-muted-outline:hover,
|
|
1934
|
+
.paper-btn.btn-muted-outline:hover,
|
|
1935
|
+
[type=button].btn-muted-outline:hover {
|
|
1936
|
+
background-color: #e6e7e9;
|
|
1937
|
+
}
|
|
1938
|
+
button.btn-muted-outline:hover:active,
|
|
1939
|
+
.paper-btn.btn-muted-outline:hover:active,
|
|
1940
|
+
[type=button].btn-muted-outline:hover:active {
|
|
1941
|
+
background-color: #caced1;
|
|
1942
|
+
}
|
|
1943
|
+
|
|
1944
|
+
.card {
|
|
1945
|
+
transition: all 235ms ease 0s;
|
|
1946
|
+
box-shadow: 15px 28px 25px -18px rgba(0, 0, 0, 0.2);
|
|
1947
|
+
border-color: #41403e;
|
|
1948
|
+
border-color: var(--muted-light);
|
|
1949
|
+
-webkit-backface-visibility: hidden;
|
|
1950
|
+
backface-visibility: hidden;
|
|
1951
|
+
border-style: solid;
|
|
1952
|
+
border-width: 2px;
|
|
1953
|
+
display: flex;
|
|
1954
|
+
flex-direction: column;
|
|
1955
|
+
position: relative;
|
|
1956
|
+
will-change: transform;
|
|
1957
|
+
word-wrap: break-word;
|
|
1958
|
+
}
|
|
1959
|
+
.card:hover {
|
|
1960
|
+
transform: translate3d(0, 2px, 0);
|
|
1961
|
+
box-shadow: 2px 8px 8px -5px rgba(0, 0, 0, 0.3);
|
|
1962
|
+
}
|
|
1963
|
+
.card .card-header,
|
|
1964
|
+
.card .card-footer {
|
|
1965
|
+
background-color: #41403e;
|
|
1966
|
+
background-color: var(--white-dark);
|
|
1967
|
+
border-color: #41403e;
|
|
1968
|
+
border-color: var(--muted-light);
|
|
1969
|
+
padding: 0.75rem 1.25rem;
|
|
1970
|
+
}
|
|
1971
|
+
.card .card-header {
|
|
1972
|
+
border-bottom-style: solid;
|
|
1973
|
+
border-bottom-width: 2px;
|
|
1974
|
+
}
|
|
1975
|
+
.card .card-footer {
|
|
1976
|
+
border-top-style: solid;
|
|
1977
|
+
border-top-width: 2px;
|
|
1978
|
+
}
|
|
1979
|
+
.card .card-body {
|
|
1980
|
+
flex: 1 1 auto;
|
|
1981
|
+
padding: 1.25rem;
|
|
1982
|
+
}
|
|
1983
|
+
.card .card-body .card-title,
|
|
1984
|
+
.card .card-body h4 {
|
|
1985
|
+
margin-bottom: 0.5rem;
|
|
1986
|
+
margin-top: 0;
|
|
1987
|
+
}
|
|
1988
|
+
.card .card-body .card-subtitle,
|
|
1989
|
+
.card .card-body h5 {
|
|
1990
|
+
color: #0b74d5;
|
|
1991
|
+
margin-bottom: 0.5rem;
|
|
1992
|
+
margin-top: 0;
|
|
1993
|
+
}
|
|
1994
|
+
.card .card-body .card-text,
|
|
1995
|
+
.card .card-body p {
|
|
1996
|
+
margin-bottom: 1rem;
|
|
1997
|
+
margin-top: 0;
|
|
1998
|
+
}
|
|
1999
|
+
.card .card-body .card-link + .card-link,
|
|
2000
|
+
.card .card-body a + a {
|
|
2001
|
+
margin-left: 1.25rem;
|
|
2002
|
+
}
|
|
2003
|
+
.card .image-top,
|
|
2004
|
+
.card .image-bottom,
|
|
2005
|
+
.card img {
|
|
2006
|
+
border: 0;
|
|
2007
|
+
border-radius: 0;
|
|
2008
|
+
}
|
|
2009
|
+
|
|
2010
|
+
input,
|
|
2011
|
+
select,
|
|
2012
|
+
textarea {
|
|
2013
|
+
color: #41403e;
|
|
2014
|
+
color: var(--primary);
|
|
2015
|
+
border-color: #41403e;
|
|
2016
|
+
border-color: var(--primary);
|
|
2017
|
+
background: transparent;
|
|
2018
|
+
border-bottom-left-radius: 15px 255px;
|
|
2019
|
+
border-bottom-right-radius: 225px 15px;
|
|
2020
|
+
border-style: solid;
|
|
2021
|
+
border-top-left-radius: 255px 15px;
|
|
2022
|
+
border-top-right-radius: 15px 225px;
|
|
2023
|
+
border-width: 2px;
|
|
2024
|
+
display: block;
|
|
2025
|
+
font-size: 1rem;
|
|
2026
|
+
outline: none;
|
|
2027
|
+
padding: 0.5rem;
|
|
2028
|
+
}
|
|
2029
|
+
input:focus,
|
|
2030
|
+
select:focus,
|
|
2031
|
+
textarea:focus {
|
|
2032
|
+
border-color: #41403e;
|
|
2033
|
+
border-color: var(--secondary);
|
|
2034
|
+
border-style: solid;
|
|
2035
|
+
border-width: 2px;
|
|
2036
|
+
}
|
|
2037
|
+
select {
|
|
2038
|
+
height: 2.35rem;
|
|
2039
|
+
}
|
|
2040
|
+
|
|
2041
|
+
.disabled, input.disabled, input[disabled],
|
|
2042
|
+
select.disabled,
|
|
2043
|
+
select[disabled],
|
|
2044
|
+
textarea.disabled,
|
|
2045
|
+
textarea[disabled] {
|
|
2046
|
+
cursor: not-allowed;
|
|
2047
|
+
opacity: 0.5;
|
|
2048
|
+
}
|
|
2049
|
+
|
|
2050
|
+
.form-group {
|
|
2051
|
+
margin-bottom: 1rem;
|
|
2052
|
+
}
|
|
2053
|
+
.form-group > label,
|
|
2054
|
+
.form-group legend {
|
|
2055
|
+
display: inline-block;
|
|
2056
|
+
margin-bottom: 0.5rem;
|
|
2057
|
+
}
|
|
2058
|
+
.form-group .input-block {
|
|
2059
|
+
width: 100%;
|
|
2060
|
+
}
|
|
2061
|
+
.form-group textarea {
|
|
2062
|
+
max-height: 90vh;
|
|
2063
|
+
max-width: 100%;
|
|
2064
|
+
}
|
|
2065
|
+
.form-group textarea.no-resize {
|
|
2066
|
+
resize: none;
|
|
2067
|
+
}
|
|
2068
|
+
.form-group .paper-radio,
|
|
2069
|
+
.form-group .paper-check {
|
|
2070
|
+
cursor: pointer;
|
|
2071
|
+
display: block;
|
|
2072
|
+
margin-bottom: 0.5rem;
|
|
2073
|
+
/* the basic, unchecked style */
|
|
2074
|
+
}
|
|
2075
|
+
.form-group .paper-radio input,
|
|
2076
|
+
.form-group .paper-check input {
|
|
2077
|
+
border: 0;
|
|
2078
|
+
height: 1px;
|
|
2079
|
+
margin: -1px;
|
|
2080
|
+
opacity: 0;
|
|
2081
|
+
overflow: hidden;
|
|
2082
|
+
padding: 0;
|
|
2083
|
+
position: absolute;
|
|
2084
|
+
width: 1px;
|
|
2085
|
+
/* radio styles */
|
|
2086
|
+
/* checkbox styles */
|
|
2087
|
+
}
|
|
2088
|
+
.form-group .paper-radio input + span,
|
|
2089
|
+
.form-group .paper-check input + span {
|
|
2090
|
+
display: block;
|
|
2091
|
+
}
|
|
2092
|
+
.form-group .paper-radio input + span::before,
|
|
2093
|
+
.form-group .paper-check input + span::before {
|
|
2094
|
+
border-color: #41403e;
|
|
2095
|
+
border-color: var(--primary);
|
|
2096
|
+
border-style: solid;
|
|
2097
|
+
border-width: 2px;
|
|
2098
|
+
content: "";
|
|
2099
|
+
display: inline-block;
|
|
2100
|
+
height: 1rem;
|
|
2101
|
+
margin-right: 0.75em;
|
|
2102
|
+
position: relative;
|
|
2103
|
+
vertical-align: -0.25em;
|
|
2104
|
+
width: 1rem;
|
|
2105
|
+
}
|
|
2106
|
+
.form-group .paper-radio input[type=radio] + span::before,
|
|
2107
|
+
.form-group .paper-check input[type=radio] + span::before {
|
|
2108
|
+
border-bottom-left-radius: 0.7rem 1rem;
|
|
2109
|
+
border-bottom-right-radius: 1rem 0.9rem;
|
|
2110
|
+
border-top-left-radius: 1rem 1rem;
|
|
2111
|
+
border-top-right-radius: 1rem 0.6rem;
|
|
2112
|
+
}
|
|
2113
|
+
.form-group .paper-radio input[type=radio]:checked + span::before,
|
|
2114
|
+
.form-group .paper-check input[type=radio]:checked + span::before {
|
|
2115
|
+
background: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A//www.w3.org/2000/svg'%20viewBox%3D'0%200%20100%20100'%3E%3Cpath%20fill%3D'%230b74d5'%20d%3D'M49.346,46.341c-3.79-2.005,3.698-10.294,7.984-8.89%20c8.713,2.852,4.352,20.922-4.901,20.269c-4.684-0.33-12.616-7.405-14.38-11.818c-2.375-5.938,7.208-11.688,11.624-13.837%20c9.078-4.42,18.403-3.503,22.784,6.651c4.049,9.378,6.206,28.09-1.462,36.276c-7.091,7.567-24.673,2.277-32.357-1.079%20c-11.474-5.01-24.54-19.124-21.738-32.758c3.958-19.263,28.856-28.248,46.044-23.244c20.693,6.025,22.012,36.268,16.246,52.826%20c-5.267,15.118-17.03,26.26-33.603,21.938c-11.054-2.883-20.984-10.949-28.809-18.908C9.236,66.096,2.704,57.597,6.01,46.371%20c3.059-10.385,12.719-20.155,20.892-26.604C40.809,8.788,58.615,1.851,75.058,12.031c9.289,5.749,16.787,16.361,18.284,27.262%20c0.643,4.698,0.646,10.775-3.811,13.746'%3E%3C/path%3E%3C/svg%3E") left center no-repeat;
|
|
2116
|
+
}
|
|
2117
|
+
.form-group .paper-radio input[type=checkbox],
|
|
2118
|
+
.form-group .paper-check input[type=checkbox] {
|
|
2119
|
+
/* checked */
|
|
2120
|
+
}
|
|
2121
|
+
.form-group .paper-radio input[type=checkbox] + span::before,
|
|
2122
|
+
.form-group .paper-check input[type=checkbox] + span::before {
|
|
2123
|
+
border-bottom-left-radius: 15px 255px;
|
|
2124
|
+
border-bottom-right-radius: 225px 15px;
|
|
2125
|
+
border-top-left-radius: 255px 15px;
|
|
2126
|
+
border-top-right-radius: 15px 225px;
|
|
2127
|
+
}
|
|
2128
|
+
.form-group .paper-radio input[type=checkbox]:checked + span::before,
|
|
2129
|
+
.form-group .paper-check input[type=checkbox]:checked + span::before {
|
|
2130
|
+
background: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A//www.w3.org/2000/svg'%20viewBox%3D'0%200%20100%20100'%3E%3Cpath%20stroke%3D'%230b74d5'%20fill-opacity%3D'0'%20stroke-width%3D'16'%20d%3D'm13,62c0.61067,1.6%201.3045,2.3045%201.75717,2.75716c0.72683,0.72684%201.24283,1.24284%202.07617,2.07617c0.54133,0.54133%201.04116,1.06035%201.82833,1.82383c0.5781,0.5607%201.00502,0.96983%202.02633,1.74417c0.55877,0.42365%201.191,0.84034%201.884,1.284c1.16491,0.74577%201.59777,1.00147%202.5,1.55067c0.4692,0.28561%201.43689,0.86868%201.93067,1.16534c0.99711,0.59904%201.99667,1.19755%202.49283,1.49866c0.98501,0.59779%201.47073,0.89648%201.94733,1.2c1.3971,0.88972%201.83738,1.19736%202.7,1.7955c0.42201,0.29262%201.24022,0.87785%202.05583,1.41917c0.79531,0.52785%201.59376,1.0075%202.38,1.43867c0.74477,0.40842%201.45167,0.75802%202.37817,1.22517c0.76133,0.38387%201.54947,0.82848%202.40717,1.41084c0.7312,0.49647%201.49563,1.08231%202.27884,1.258c0.35564,0.07978%200.14721,-0.95518%200.35733,-1.86867c0.18092,-0.78651%200.98183,-1.2141%200.99983,-2.07867c0.02073,-0.99529%200.07916,-1.79945%200.42533,-2.56133c0.43607,-0.95973%200.53956,-1.66774%200.79617,-2.68183c0.18888,-0.74645%200.39764,-1.31168%200.7785,-2.6235c0.20865,-0.71867%200.41483,-1.48614%200.708,-2.28c0.15452,-0.41843%200.77356,-1.73138%201.348,-2.64133c0.30581,-0.48443%200.65045,-0.97043%201.0065,-1.4745c0.74776,-1.05863%201.1531,-1.60163%201.9375,-2.77084c0.40621,-0.60548%200.80272,-1.23513%201.2045,-1.8765c0.40757,-0.65062%200.81464,-1.31206%201.2315,-1.9755c0.41946,-0.66757%200.83374,-1.34258%201.73067,-2.648c0.44696,-0.65053%200.91436,-1.28356%201.386,-1.9095c0.46972,-0.6234%200.94725,-1.2364%201.422,-1.8465c0.94116,-1.20947%201.86168,-2.40844%202.30367,-3.0105c0.438,-0.59664%200.86246,-1.19396%201.27501,-1.7895c0.40743,-0.58816%200.80352,-1.17234%201.185,-1.7535c1.10526,-1.68381%201.44079,-2.23511%201.77633,-2.7705c0.32878,-0.52461%200.96306,-1.5459%201.27467,-2.04c0.60654,-0.96177%201.20782,-1.88193%201.51051,-2.325c0.59013,-0.86381%201.17888,-1.68032%201.46416,-2.075c0.5498,-0.76063%201.31747,-1.8231%201.77883,-2.4895c0.43918,-0.63437%200.85266,-1.25267%201.45717,-2.15717c0.59549,-0.891%200.96531,-1.46814%201.51466,-2.22933c0.58413,-0.80936%201.12566,-1.40253%201.83801,-2.12333c0.61304,-0.62031%200.45171,-1.48306%200.7045,-2.34733c0.25668,-0.87762%200.75447,-1.62502%201,-2.40983c0.25128,-0.8032%200.7633,-1.39453%201.33217,-2.25417c0.54528,-0.82398%200.73415,-1.6714%201.31516,-2.336c0.55639,-0.63644%201.38658,-1.22588%201.8595,-1.9c0.5082,-0.72441%200.78867,-1.4%201.60266,-1.56667l0.71184,-0.4905'%3E%3C/path%3E%3C/svg%3E") left center no-repeat;
|
|
2131
|
+
}
|
|
2132
|
+
.form-group .paper-switch-label,
|
|
2133
|
+
.form-group .paper-switch-2-label {
|
|
2134
|
+
cursor: pointer;
|
|
2135
|
+
float: left;
|
|
2136
|
+
}
|
|
2137
|
+
.form-group .paper-switch-label {
|
|
2138
|
+
margin: -6px 10px 0 0;
|
|
2139
|
+
}
|
|
2140
|
+
.form-group .paper-switch-2-label {
|
|
2141
|
+
margin: 0 10px 0 0;
|
|
2142
|
+
}
|
|
2143
|
+
.form-group .paper-switch,
|
|
2144
|
+
.form-group .paper-switch-2 {
|
|
2145
|
+
display: block;
|
|
2146
|
+
float: left;
|
|
2147
|
+
margin: 0 10px 0 0;
|
|
2148
|
+
position: relative;
|
|
2149
|
+
}
|
|
2150
|
+
.form-group .paper-switch input,
|
|
2151
|
+
.form-group .paper-switch-2 input {
|
|
2152
|
+
height: 0;
|
|
2153
|
+
opacity: 0;
|
|
2154
|
+
width: 0;
|
|
2155
|
+
}
|
|
2156
|
+
.form-group .paper-switch input:checked + .paper-switch-slider,
|
|
2157
|
+
.form-group .paper-switch-2 input:checked + .paper-switch-slider {
|
|
2158
|
+
background-color: #41403e;
|
|
2159
|
+
background-color: var(--success-light);
|
|
2160
|
+
}
|
|
2161
|
+
.form-group .paper-switch input:checked + .paper-switch-slider::before,
|
|
2162
|
+
.form-group .paper-switch-2 input:checked + .paper-switch-slider::before {
|
|
2163
|
+
transform: translateX(26px);
|
|
2164
|
+
}
|
|
2165
|
+
.form-group .paper-switch input:focus + .paper-switch-slider,
|
|
2166
|
+
.form-group .paper-switch-2 input:focus + .paper-switch-slider {
|
|
2167
|
+
box-shadow: 0 0 3px #0b74d5;
|
|
2168
|
+
}
|
|
2169
|
+
.form-group .paper-switch .paper-switch-slider,
|
|
2170
|
+
.form-group .paper-switch-2 .paper-switch-slider {
|
|
2171
|
+
border-color: #41403e;
|
|
2172
|
+
border-color: var(--primary);
|
|
2173
|
+
border-bottom-left-radius: 15px 255px;
|
|
2174
|
+
border-bottom-right-radius: 225px 15px;
|
|
2175
|
+
border-style: solid;
|
|
2176
|
+
border-top-left-radius: 255px 15px;
|
|
2177
|
+
border-top-right-radius: 15px 225px;
|
|
2178
|
+
border-width: 2px;
|
|
2179
|
+
bottom: 0;
|
|
2180
|
+
cursor: pointer;
|
|
2181
|
+
left: 0;
|
|
2182
|
+
position: absolute;
|
|
2183
|
+
right: 0;
|
|
2184
|
+
top: 0;
|
|
2185
|
+
transition: 0.4s;
|
|
2186
|
+
}
|
|
2187
|
+
.form-group .paper-switch .paper-switch-slider::before,
|
|
2188
|
+
.form-group .paper-switch-2 .paper-switch-slider::before {
|
|
2189
|
+
background: #41403e;
|
|
2190
|
+
background: var(--secondary);
|
|
2191
|
+
border-bottom-left-radius: 15px 255px;
|
|
2192
|
+
border-bottom-right-radius: 225px 15px;
|
|
2193
|
+
border-top-left-radius: 255px 15px;
|
|
2194
|
+
border-top-right-radius: 15px 225px;
|
|
2195
|
+
content: "";
|
|
2196
|
+
left: 4px;
|
|
2197
|
+
position: absolute;
|
|
2198
|
+
transition: 0.4s;
|
|
2199
|
+
}
|
|
2200
|
+
.form-group .paper-switch .paper-switch-slider.round,
|
|
2201
|
+
.form-group .paper-switch-2 .paper-switch-slider.round {
|
|
2202
|
+
border-color: #41403e;
|
|
2203
|
+
border-color: var(--primary);
|
|
2204
|
+
border-bottom-left-radius: 0.7rem 1rem;
|
|
2205
|
+
border-bottom-right-radius: 1rem 0.9rem;
|
|
2206
|
+
border-style: solid;
|
|
2207
|
+
border-top-left-radius: 1rem 1rem;
|
|
2208
|
+
border-top-right-radius: 1rem 0.6rem;
|
|
2209
|
+
border-width: 2px;
|
|
2210
|
+
}
|
|
2211
|
+
.form-group .paper-switch .paper-switch-slider.round::before,
|
|
2212
|
+
.form-group .paper-switch-2 .paper-switch-slider.round::before {
|
|
2213
|
+
background: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A//www.w3.org/2000/svg'%20viewBox%3D'0%200%20100%20100'%3E%3Cpath%20fill%3D'%230071de'%20d%3D'M49.346,46.341c-3.79-2.005,3.698-10.294,7.984-8.89%20c8.713,2.852,4.352,20.922-4.901,20.269c-4.684-0.33-12.616-7.405-14.38-11.818c-2.375-5.938,7.208-11.688,11.624-13.837%20c9.078-4.42,18.403-3.503,22.784,6.651c4.049,9.378,6.206,28.09-1.462,36.276c-7.091,7.567-24.673,2.277-32.357-1.079%20c-11.474-5.01-24.54-19.124-21.738-32.758c3.958-19.263,28.856-28.248,46.044-23.244c20.693,6.025,22.012,36.268,16.246,52.826%20c-5.267,15.118-17.03,26.26-33.603,21.938c-11.054-2.883-20.984-10.949-28.809-18.908C9.236,66.096,2.704,57.597,6.01,46.371%20c3.059-10.385,12.719-20.155,20.892-26.604C40.809,8.788,58.615,1.851,75.058,12.031c9.289,5.749,16.787,16.361,18.284,27.262%20c0.643,4.698,0.646,10.775-3.811,13.746'%3E%3C/path%3E%3C/svg%3E") left center no-repeat;
|
|
2214
|
+
border-bottom-left-radius: 0.7rem 1rem;
|
|
2215
|
+
border-bottom-right-radius: 1rem 0.9rem;
|
|
2216
|
+
border-top-left-radius: 1rem 1rem;
|
|
2217
|
+
border-top-right-radius: 1rem 0.6rem;
|
|
2218
|
+
left: 4px;
|
|
2219
|
+
}
|
|
2220
|
+
.form-group .paper-switch {
|
|
2221
|
+
height: 12px;
|
|
2222
|
+
width: 60px;
|
|
2223
|
+
}
|
|
2224
|
+
.form-group .paper-switch .paper-switch-slider::before {
|
|
2225
|
+
bottom: -6px;
|
|
2226
|
+
height: 20px;
|
|
2227
|
+
width: 20px;
|
|
2228
|
+
}
|
|
2229
|
+
.form-group .paper-switch .paper-switch-slider.round::before {
|
|
2230
|
+
bottom: -7px;
|
|
2231
|
+
height: 23px;
|
|
2232
|
+
width: 23px;
|
|
2233
|
+
}
|
|
2234
|
+
.form-group .paper-switch-2 {
|
|
2235
|
+
height: 22px;
|
|
2236
|
+
width: 50px;
|
|
2237
|
+
}
|
|
2238
|
+
.form-group .paper-switch-2 .paper-switch-slider::before {
|
|
2239
|
+
bottom: 2px;
|
|
2240
|
+
height: 14px;
|
|
2241
|
+
width: 14px;
|
|
2242
|
+
}
|
|
2243
|
+
.form-group .paper-switch-2 .paper-switch-slider.round::before {
|
|
2244
|
+
bottom: 2px;
|
|
2245
|
+
height: 14px;
|
|
2246
|
+
width: 14px;
|
|
2247
|
+
}
|
|
2248
|
+
.form-group .paper-switch-tile {
|
|
2249
|
+
cursor: pointer;
|
|
2250
|
+
display: block;
|
|
2251
|
+
float: left;
|
|
2252
|
+
height: 80px;
|
|
2253
|
+
margin: 40px 0 0 40px;
|
|
2254
|
+
perspective: 1000px;
|
|
2255
|
+
position: relative;
|
|
2256
|
+
transform: translate(-50%, -50%);
|
|
2257
|
+
transform-style: preserve-3d;
|
|
2258
|
+
width: 80px;
|
|
2259
|
+
}
|
|
2260
|
+
.form-group .paper-switch-tile:hover .paper-switch-tile-card {
|
|
2261
|
+
box-shadow: 2px 8px 4px -5px rgba(0, 0, 0, 0.2);
|
|
2262
|
+
transform: rotateX(30deg);
|
|
2263
|
+
}
|
|
2264
|
+
.form-group .paper-switch-tile:hover:checked + .paper-switch-tile-card {
|
|
2265
|
+
background-color: transparent;
|
|
2266
|
+
box-shadow: 0 10px 15px -15px rgba(0, 0, 0, 0.9);
|
|
2267
|
+
transform: rotateX(150deg);
|
|
2268
|
+
}
|
|
2269
|
+
.form-group .paper-switch-tile input {
|
|
2270
|
+
display: none;
|
|
2271
|
+
}
|
|
2272
|
+
.form-group .paper-switch-tile input:checked + .paper-switch-tile-card {
|
|
2273
|
+
transform: rotateX(180deg);
|
|
2274
|
+
}
|
|
2275
|
+
.form-group .paper-switch-tile-card {
|
|
2276
|
+
background-color: transparent;
|
|
2277
|
+
border-color: transparent;
|
|
2278
|
+
height: 100%;
|
|
2279
|
+
position: relative;
|
|
2280
|
+
transform-style: preserve-3d;
|
|
2281
|
+
transition: all 600ms;
|
|
2282
|
+
width: 100%;
|
|
2283
|
+
}
|
|
2284
|
+
.form-group .paper-switch-tile-card div {
|
|
2285
|
+
-webkit-backface-visibility: hidden;
|
|
2286
|
+
backface-visibility: hidden;
|
|
2287
|
+
box-shadow: 2px 8px 8px -5px rgba(0, 0, 0, 0.3);
|
|
2288
|
+
height: 100%;
|
|
2289
|
+
line-height: 70px;
|
|
2290
|
+
position: absolute;
|
|
2291
|
+
text-align: center;
|
|
2292
|
+
width: 100%;
|
|
2293
|
+
}
|
|
2294
|
+
.form-group .paper-switch-tile-card .paper-switch-tile-card-back {
|
|
2295
|
+
transform: rotateX(180deg);
|
|
2296
|
+
}
|
|
2297
|
+
.form-group input[type=range] {
|
|
2298
|
+
-webkit-appearance: none;
|
|
2299
|
+
-moz-appearance: none;
|
|
2300
|
+
appearance: none;
|
|
2301
|
+
border-width: 0;
|
|
2302
|
+
padding: 0;
|
|
2303
|
+
/* For Chromium */
|
|
2304
|
+
/* For Mozilla Firefox */
|
|
2305
|
+
/* For IE */
|
|
2306
|
+
}
|
|
2307
|
+
.form-group input[type=range]::-webkit-slider-runnable-track {
|
|
2308
|
+
background: #41403e;
|
|
2309
|
+
background: var(--secondary);
|
|
2310
|
+
border-color: #41403e;
|
|
2311
|
+
border-color: var(--primary);
|
|
2312
|
+
border-radius: 18px;
|
|
2313
|
+
border-style: solid;
|
|
2314
|
+
border-width: 1px;
|
|
2315
|
+
box-shadow: 1px 1px 1px #000, 0 0 1px #0d0d0d;
|
|
2316
|
+
cursor: pointer;
|
|
2317
|
+
height: 8px;
|
|
2318
|
+
margin: 10px 0;
|
|
2319
|
+
width: 100%;
|
|
2320
|
+
}
|
|
2321
|
+
.form-group input[type=range]::-webkit-slider-thumb {
|
|
2322
|
+
background: #41403e;
|
|
2323
|
+
background: var(--white);
|
|
2324
|
+
border-color: #41403e;
|
|
2325
|
+
border-color: var(--primary);
|
|
2326
|
+
-webkit-appearance: none;
|
|
2327
|
+
appearance: none;
|
|
2328
|
+
border-bottom-left-radius: 0.7rem 1rem;
|
|
2329
|
+
border-bottom-right-radius: 1rem 0.9rem;
|
|
2330
|
+
border-style: solid;
|
|
2331
|
+
border-top-left-radius: 1rem 1rem;
|
|
2332
|
+
border-top-right-radius: 1rem 0.6rem;
|
|
2333
|
+
border-width: 1px;
|
|
2334
|
+
box-shadow: 1px 1px 1px #000, 0 0 1px #0d0d0d;
|
|
2335
|
+
cursor: pointer;
|
|
2336
|
+
height: 36px;
|
|
2337
|
+
margin-top: -14px;
|
|
2338
|
+
width: 16px;
|
|
2339
|
+
}
|
|
2340
|
+
.form-group input[type=range]::-moz-range-track {
|
|
2341
|
+
background: #41403e;
|
|
2342
|
+
background: var(--secondary);
|
|
2343
|
+
border-color: #41403e;
|
|
2344
|
+
border-color: var(--primary);
|
|
2345
|
+
border-radius: 18px;
|
|
2346
|
+
box-shadow: 1px 1px 1px #000, 0 0 1px #0d0d0d;
|
|
2347
|
+
cursor: pointer;
|
|
2348
|
+
height: 8px;
|
|
2349
|
+
width: 100%;
|
|
2350
|
+
}
|
|
2351
|
+
.form-group input[type=range]::-moz-range-thumb {
|
|
2352
|
+
background: #41403e;
|
|
2353
|
+
background: var(--white);
|
|
2354
|
+
border-color: #41403e;
|
|
2355
|
+
border-color: var(--primary);
|
|
2356
|
+
border-bottom-left-radius: 0.7rem 1rem;
|
|
2357
|
+
border-bottom-right-radius: 1rem 0.9rem;
|
|
2358
|
+
border-style: solid;
|
|
2359
|
+
border-top-left-radius: 1rem 1rem;
|
|
2360
|
+
border-top-right-radius: 1rem 0.6rem;
|
|
2361
|
+
border-width: 1px;
|
|
2362
|
+
box-shadow: 1px 1px 1px #000, 0 0 1px #0d0d0d;
|
|
2363
|
+
cursor: pointer;
|
|
2364
|
+
height: 36px;
|
|
2365
|
+
width: 16px;
|
|
2366
|
+
}
|
|
2367
|
+
.form-group input[type=range]::-ms-track {
|
|
2368
|
+
background: transparent;
|
|
2369
|
+
border-color: transparent;
|
|
2370
|
+
border-width: 16px 0;
|
|
2371
|
+
color: transparent;
|
|
2372
|
+
cursor: pointer;
|
|
2373
|
+
height: 8px;
|
|
2374
|
+
width: 100%;
|
|
2375
|
+
}
|
|
2376
|
+
.form-group input[type=range]::-ms-fill-lower, .form-group input[type=range]::-ms-fill-upper {
|
|
2377
|
+
background: #41403e;
|
|
2378
|
+
background: var(--secondary);
|
|
2379
|
+
border-color: #41403e;
|
|
2380
|
+
border-color: var(--primary);
|
|
2381
|
+
border-radius: 18px;
|
|
2382
|
+
border-style: solid;
|
|
2383
|
+
border-width: 1px;
|
|
2384
|
+
box-shadow: 1px 1px 1px #000, 0 0 1px #0d0d0d;
|
|
2385
|
+
}
|
|
2386
|
+
.form-group input[type=range]::-ms-thumb {
|
|
2387
|
+
background: #41403e;
|
|
2388
|
+
background: var(--white);
|
|
2389
|
+
border-color: #41403e;
|
|
2390
|
+
border-color: var(--primary);
|
|
2391
|
+
border: 1px solid #41403e;
|
|
2392
|
+
border-bottom-left-radius: 0.7rem 1rem;
|
|
2393
|
+
border-bottom-right-radius: 1rem 0.9rem;
|
|
2394
|
+
border-style: solid;
|
|
2395
|
+
border-top-left-radius: 1rem 1rem;
|
|
2396
|
+
border-top-right-radius: 1rem 0.6rem;
|
|
2397
|
+
border-width: 1px;
|
|
2398
|
+
box-shadow: 1px 1px 1px #000, 0 0 1px #0d0d0d;
|
|
2399
|
+
cursor: pointer;
|
|
2400
|
+
height: 36px;
|
|
2401
|
+
width: 16px;
|
|
2402
|
+
}
|
|
2403
|
+
|
|
2404
|
+
fieldset.form-group {
|
|
2405
|
+
border: 0;
|
|
2406
|
+
padding: 0;
|
|
2407
|
+
}
|
|
2408
|
+
|
|
2409
|
+
.modal {
|
|
2410
|
+
transition: opacity 235ms ease-in-out 0s;
|
|
2411
|
+
background: rgba(0, 0, 0, 0.6);
|
|
2412
|
+
bottom: 0;
|
|
2413
|
+
flex: 1 1 auto;
|
|
2414
|
+
left: 0;
|
|
2415
|
+
opacity: 0;
|
|
2416
|
+
position: fixed;
|
|
2417
|
+
right: 0;
|
|
2418
|
+
text-align: left;
|
|
2419
|
+
top: 0;
|
|
2420
|
+
visibility: hidden;
|
|
2421
|
+
word-wrap: break-word;
|
|
2422
|
+
z-index: 200;
|
|
2423
|
+
}
|
|
2424
|
+
.modal-bg {
|
|
2425
|
+
bottom: 0;
|
|
2426
|
+
cursor: pointer;
|
|
2427
|
+
left: 0;
|
|
2428
|
+
position: absolute;
|
|
2429
|
+
right: 0;
|
|
2430
|
+
top: 0;
|
|
2431
|
+
}
|
|
2432
|
+
.modal .modal-body {
|
|
2433
|
+
color: #41403e;
|
|
2434
|
+
color: var(--primary);
|
|
2435
|
+
background: #41403e;
|
|
2436
|
+
background: var(--main-background);
|
|
2437
|
+
border-color: #41403e;
|
|
2438
|
+
border-color: var(--muted-light);
|
|
2439
|
+
transition: all 235ms ease-in-out 0s;
|
|
2440
|
+
-webkit-backface-visibility: hidden;
|
|
2441
|
+
backface-visibility: hidden;
|
|
2442
|
+
border: 2px solid;
|
|
2443
|
+
left: 50%;
|
|
2444
|
+
padding: 1.25rem;
|
|
2445
|
+
position: absolute;
|
|
2446
|
+
top: 0;
|
|
2447
|
+
transform: translate(-50%, -50%);
|
|
2448
|
+
}
|
|
2449
|
+
@media only screen and (max-width: 768px) {
|
|
2450
|
+
.modal .modal-body {
|
|
2451
|
+
box-sizing: border-box;
|
|
2452
|
+
width: 90%;
|
|
2453
|
+
}
|
|
2454
|
+
}
|
|
2455
|
+
.modal .btn-close {
|
|
2456
|
+
color: #41403e;
|
|
2457
|
+
color: var(--primary-light);
|
|
2458
|
+
transition: all 235ms ease-in-out 0s;
|
|
2459
|
+
cursor: pointer;
|
|
2460
|
+
font-size: 30px;
|
|
2461
|
+
height: 1.1rem;
|
|
2462
|
+
position: absolute;
|
|
2463
|
+
right: 1rem;
|
|
2464
|
+
text-decoration: none;
|
|
2465
|
+
top: 1rem;
|
|
2466
|
+
width: 1.1rem;
|
|
2467
|
+
}
|
|
2468
|
+
.modal .btn-close:hover, .modal .btn-close:active, .modal .btn-close:focus {
|
|
2469
|
+
color: #41403e;
|
|
2470
|
+
color: var(--primary);
|
|
2471
|
+
}
|
|
2472
|
+
.modal h4,
|
|
2473
|
+
.modal .modal-title {
|
|
2474
|
+
margin-bottom: 0.5rem;
|
|
2475
|
+
margin-top: 0;
|
|
2476
|
+
}
|
|
2477
|
+
.modal h5,
|
|
2478
|
+
.modal .modal-subtitle {
|
|
2479
|
+
color: #41403e;
|
|
2480
|
+
color: var(--secondary);
|
|
2481
|
+
margin-bottom: 0.5rem;
|
|
2482
|
+
margin-top: 0;
|
|
2483
|
+
}
|
|
2484
|
+
.modal p,
|
|
2485
|
+
.modal .modal-text {
|
|
2486
|
+
margin-bottom: 1rem;
|
|
2487
|
+
margin-top: 0;
|
|
2488
|
+
}
|
|
2489
|
+
.modal .modal-link + .modal-link,
|
|
2490
|
+
.modal a + a {
|
|
2491
|
+
margin-left: 1.25rem;
|
|
2492
|
+
}
|
|
2493
|
+
.modal .paper-btn {
|
|
2494
|
+
background: #41403e;
|
|
2495
|
+
background: var(--main-background);
|
|
2496
|
+
display: inline-block;
|
|
2497
|
+
text-decoration: none;
|
|
2498
|
+
}
|
|
2499
|
+
.modal .modal-link,
|
|
2500
|
+
.modal a {
|
|
2501
|
+
background-image: linear-gradient(5deg, transparent 65%, #0b74d5 80%, transparent 90%), linear-gradient(165deg, transparent 5%, #0b74d5 15%, transparent 25%), linear-gradient(165deg, transparent 45%, #0b74d5 55%, transparent 65%), linear-gradient(15deg, transparent 25%, #0b74d5 35%, transparent 50%);
|
|
2502
|
+
background-position: 0 90%;
|
|
2503
|
+
background-repeat: repeat-x;
|
|
2504
|
+
background-size: 4px 3px;
|
|
2505
|
+
cursor: pointer;
|
|
2506
|
+
text-decoration: none;
|
|
2507
|
+
}
|
|
2508
|
+
.modal .modal-link:hover, .modal .modal-link:focus, .modal .modal-link:visited,
|
|
2509
|
+
.modal a:hover,
|
|
2510
|
+
.modal a:focus,
|
|
2511
|
+
.modal a:visited {
|
|
2512
|
+
color: #41403e;
|
|
2513
|
+
color: var(--primary);
|
|
2514
|
+
text-decoration: none;
|
|
2515
|
+
}
|
|
2516
|
+
|
|
2517
|
+
.modal-state {
|
|
2518
|
+
display: none;
|
|
2519
|
+
}
|
|
2520
|
+
.modal-state:checked + .modal {
|
|
2521
|
+
opacity: 1;
|
|
2522
|
+
visibility: visible;
|
|
2523
|
+
}
|
|
2524
|
+
.modal-state:checked + .modal .modal-body {
|
|
2525
|
+
top: 50%;
|
|
2526
|
+
}
|
|
2527
|
+
|
|
2528
|
+
[popover-top],
|
|
2529
|
+
[popover-right],
|
|
2530
|
+
[popover-bottom],
|
|
2531
|
+
[popover-left] {
|
|
2532
|
+
margin: 24px;
|
|
2533
|
+
position: relative;
|
|
2534
|
+
}
|
|
2535
|
+
[popover-top]:hover::after,
|
|
2536
|
+
[popover-right]:hover::after,
|
|
2537
|
+
[popover-bottom]:hover::after,
|
|
2538
|
+
[popover-left]:hover::after {
|
|
2539
|
+
opacity: 1;
|
|
2540
|
+
transition: opacity 235ms ease-in-out, visibility 0s linear;
|
|
2541
|
+
visibility: visible;
|
|
2542
|
+
}
|
|
2543
|
+
[popover-top]::after,
|
|
2544
|
+
[popover-right]::after,
|
|
2545
|
+
[popover-bottom]::after,
|
|
2546
|
+
[popover-left]::after {
|
|
2547
|
+
border-bottom-left-radius: 15px 255px;
|
|
2548
|
+
border-bottom-right-radius: 225px 15px;
|
|
2549
|
+
border-top-left-radius: 255px 15px;
|
|
2550
|
+
border-top-right-radius: 15px 225px;
|
|
2551
|
+
background-color: #41403e;
|
|
2552
|
+
background-color: var(--light-dark);
|
|
2553
|
+
border-color: #41403e;
|
|
2554
|
+
border-color: var(--light-dark);
|
|
2555
|
+
color: #41403e;
|
|
2556
|
+
color: var(--primary-inverse);
|
|
2557
|
+
border-style: solid;
|
|
2558
|
+
border-width: 2px;
|
|
2559
|
+
font-size: 0.7em;
|
|
2560
|
+
left: 50%;
|
|
2561
|
+
min-width: 80px;
|
|
2562
|
+
opacity: 0;
|
|
2563
|
+
padding: 4px 2px;
|
|
2564
|
+
position: absolute;
|
|
2565
|
+
text-align: center;
|
|
2566
|
+
top: -6px;
|
|
2567
|
+
transform: translateX(-50%) translateY(-100%);
|
|
2568
|
+
transition: opacity 235ms ease-in-out, visibility 0s linear 235ms;
|
|
2569
|
+
visibility: hidden;
|
|
2570
|
+
}
|
|
2571
|
+
|
|
2572
|
+
[popover-left]::before {
|
|
2573
|
+
left: 0;
|
|
2574
|
+
margin-left: -12px;
|
|
2575
|
+
top: 50%;
|
|
2576
|
+
transform: translateY(-50%) rotate(-90deg);
|
|
2577
|
+
}
|
|
2578
|
+
[popover-left]::after {
|
|
2579
|
+
content: attr(popover-left);
|
|
2580
|
+
left: 0;
|
|
2581
|
+
margin-left: -8px;
|
|
2582
|
+
top: 50%;
|
|
2583
|
+
transform: translateX(-100%) translateY(-50%);
|
|
2584
|
+
}
|
|
2585
|
+
|
|
2586
|
+
[popover-right]::before {
|
|
2587
|
+
left: 100%;
|
|
2588
|
+
margin-left: 1px;
|
|
2589
|
+
top: 50%;
|
|
2590
|
+
transform: translatey(-50%) rotate(90deg);
|
|
2591
|
+
}
|
|
2592
|
+
[popover-right]::after {
|
|
2593
|
+
content: attr(popover-right);
|
|
2594
|
+
left: 100%;
|
|
2595
|
+
margin-left: 8px;
|
|
2596
|
+
top: 50%;
|
|
2597
|
+
transform: translateX(0%) translateY(-50%);
|
|
2598
|
+
}
|
|
2599
|
+
|
|
2600
|
+
[popover-top]::before {
|
|
2601
|
+
left: 50%;
|
|
2602
|
+
}
|
|
2603
|
+
[popover-top]::after {
|
|
2604
|
+
content: attr(popover-top);
|
|
2605
|
+
left: 50%;
|
|
2606
|
+
}
|
|
2607
|
+
|
|
2608
|
+
[popover-bottom]::before {
|
|
2609
|
+
margin-top: 8px;
|
|
2610
|
+
top: 100%;
|
|
2611
|
+
transform: translateX(-50%) translatey(-100%) rotate(-180deg);
|
|
2612
|
+
}
|
|
2613
|
+
[popover-bottom]::after {
|
|
2614
|
+
content: attr(popover-bottom);
|
|
2615
|
+
margin-top: 8px;
|
|
2616
|
+
top: 100%;
|
|
2617
|
+
transform: translateX(-50%) translateY(0%);
|
|
2618
|
+
}
|
|
2619
|
+
|
|
2620
|
+
.progress {
|
|
2621
|
+
border-bottom-left-radius: 20px 115px;
|
|
2622
|
+
border-bottom-right-radius: 15px 105px;
|
|
2623
|
+
border-top-left-radius: 250px 15px;
|
|
2624
|
+
border-top-right-radius: 25px 80px;
|
|
2625
|
+
border-color: #41403e;
|
|
2626
|
+
border-color: var(--primary);
|
|
2627
|
+
border: 2px solid;
|
|
2628
|
+
box-shadow: 2px 8px 8px -5px rgba(0, 0, 0, 0.3);
|
|
2629
|
+
height: 1.2rem;
|
|
2630
|
+
overflow: hidden;
|
|
2631
|
+
width: 100%;
|
|
2632
|
+
}
|
|
2633
|
+
.progress .bar {
|
|
2634
|
+
border-bottom-left-radius: 20px 115px;
|
|
2635
|
+
border-bottom-right-radius: 15px 105px;
|
|
2636
|
+
border-top-left-radius: 250px 15px;
|
|
2637
|
+
border-top-right-radius: 25px 80px;
|
|
2638
|
+
transition: all 235ms ease-in-out 0s;
|
|
2639
|
+
background-color: #41403e;
|
|
2640
|
+
background-color: var(--primary-light);
|
|
2641
|
+
border-color: #41403e;
|
|
2642
|
+
border-color: var(--primary);
|
|
2643
|
+
border-right: 2px solid;
|
|
2644
|
+
display: flex;
|
|
2645
|
+
flex-direction: column;
|
|
2646
|
+
font-size: 0.6rem;
|
|
2647
|
+
height: 100%;
|
|
2648
|
+
justify-content: center;
|
|
2649
|
+
text-align: center;
|
|
2650
|
+
width: 0%;
|
|
2651
|
+
}
|
|
2652
|
+
.progress .bar.striped {
|
|
2653
|
+
background: repeating-linear-gradient(45deg, #cdcccb, #cdcccb 0.25rem, #b4b3b0 0.25rem, #b4b3b0 0.5rem);
|
|
2654
|
+
}
|
|
2655
|
+
.progress .bar.primary {
|
|
2656
|
+
background-color: #41403e;
|
|
2657
|
+
background-color: var(--primary-light);
|
|
2658
|
+
}
|
|
2659
|
+
.progress .bar.primary.striped {
|
|
2660
|
+
background: repeating-linear-gradient(45deg, #cdcccb, #cdcccb 0.25rem, #b4b3b0 0.25rem, #b4b3b0 0.5rem);
|
|
2661
|
+
}
|
|
2662
|
+
.progress .bar.secondary {
|
|
2663
|
+
background-color: #41403e;
|
|
2664
|
+
background-color: var(--secondary-light);
|
|
2665
|
+
}
|
|
2666
|
+
.progress .bar.secondary.striped {
|
|
2667
|
+
background: repeating-linear-gradient(45deg, #d8ebfd, #d8ebfd 0.25rem, #a7d3fa 0.25rem, #a7d3fa 0.5rem);
|
|
2668
|
+
}
|
|
2669
|
+
.progress .bar.success {
|
|
2670
|
+
background-color: #41403e;
|
|
2671
|
+
background-color: var(--success-light);
|
|
2672
|
+
}
|
|
2673
|
+
.progress .bar.success.striped {
|
|
2674
|
+
background: repeating-linear-gradient(45deg, #d5dfc8, #d5dfc8 0.25rem, #bccca8 0.25rem, #bccca8 0.5rem);
|
|
2675
|
+
}
|
|
2676
|
+
.progress .bar.warning {
|
|
2677
|
+
background-color: #41403e;
|
|
2678
|
+
background-color: var(--warning-light);
|
|
2679
|
+
}
|
|
2680
|
+
.progress .bar.warning.striped {
|
|
2681
|
+
background: repeating-linear-gradient(45deg, #f5f0c6, #f5f0c6 0.25rem, #ede49b 0.25rem, #ede49b 0.5rem);
|
|
2682
|
+
}
|
|
2683
|
+
.progress .bar.danger {
|
|
2684
|
+
background-color: #41403e;
|
|
2685
|
+
background-color: var(--danger-light);
|
|
2686
|
+
}
|
|
2687
|
+
.progress .bar.danger.striped {
|
|
2688
|
+
background: repeating-linear-gradient(45deg, #f0cbc9, #f0cbc9 0.25rem, #e6a5a1 0.25rem, #e6a5a1 0.5rem);
|
|
2689
|
+
}
|
|
2690
|
+
.progress .bar.muted {
|
|
2691
|
+
background-color: #41403e;
|
|
2692
|
+
background-color: var(--muted-light);
|
|
2693
|
+
}
|
|
2694
|
+
.progress .bar.muted.striped {
|
|
2695
|
+
background: repeating-linear-gradient(45deg, #e6e7e9, #e6e7e9 0.25rem, #caced1 0.25rem, #caced1 0.5rem);
|
|
2696
|
+
}
|
|
2697
|
+
.progress .bar.w-0 {
|
|
2698
|
+
width: 0%;
|
|
2699
|
+
}
|
|
2700
|
+
.progress .bar.w-1 {
|
|
2701
|
+
width: 1%;
|
|
2702
|
+
}
|
|
2703
|
+
.progress .bar.w-2 {
|
|
2704
|
+
width: 2%;
|
|
2705
|
+
}
|
|
2706
|
+
.progress .bar.w-3 {
|
|
2707
|
+
width: 3%;
|
|
2708
|
+
}
|
|
2709
|
+
.progress .bar.w-4 {
|
|
2710
|
+
width: 4%;
|
|
2711
|
+
}
|
|
2712
|
+
.progress .bar.w-5 {
|
|
2713
|
+
width: 5%;
|
|
2714
|
+
}
|
|
2715
|
+
.progress .bar.w-6 {
|
|
2716
|
+
width: 6%;
|
|
2717
|
+
}
|
|
2718
|
+
.progress .bar.w-7 {
|
|
2719
|
+
width: 7%;
|
|
2720
|
+
}
|
|
2721
|
+
.progress .bar.w-8 {
|
|
2722
|
+
width: 8%;
|
|
2723
|
+
}
|
|
2724
|
+
.progress .bar.w-9 {
|
|
2725
|
+
width: 9%;
|
|
2726
|
+
}
|
|
2727
|
+
.progress .bar.w-10 {
|
|
2728
|
+
width: 10%;
|
|
2729
|
+
}
|
|
2730
|
+
.progress .bar.w-11 {
|
|
2731
|
+
width: 11%;
|
|
2732
|
+
}
|
|
2733
|
+
.progress .bar.w-12 {
|
|
2734
|
+
width: 12%;
|
|
2735
|
+
}
|
|
2736
|
+
.progress .bar.w-13 {
|
|
2737
|
+
width: 13%;
|
|
2738
|
+
}
|
|
2739
|
+
.progress .bar.w-14 {
|
|
2740
|
+
width: 14%;
|
|
2741
|
+
}
|
|
2742
|
+
.progress .bar.w-15 {
|
|
2743
|
+
width: 15%;
|
|
2744
|
+
}
|
|
2745
|
+
.progress .bar.w-16 {
|
|
2746
|
+
width: 16%;
|
|
2747
|
+
}
|
|
2748
|
+
.progress .bar.w-17 {
|
|
2749
|
+
width: 17%;
|
|
2750
|
+
}
|
|
2751
|
+
.progress .bar.w-18 {
|
|
2752
|
+
width: 18%;
|
|
2753
|
+
}
|
|
2754
|
+
.progress .bar.w-19 {
|
|
2755
|
+
width: 19%;
|
|
2756
|
+
}
|
|
2757
|
+
.progress .bar.w-20 {
|
|
2758
|
+
width: 20%;
|
|
2759
|
+
}
|
|
2760
|
+
.progress .bar.w-21 {
|
|
2761
|
+
width: 21%;
|
|
2762
|
+
}
|
|
2763
|
+
.progress .bar.w-22 {
|
|
2764
|
+
width: 22%;
|
|
2765
|
+
}
|
|
2766
|
+
.progress .bar.w-23 {
|
|
2767
|
+
width: 23%;
|
|
2768
|
+
}
|
|
2769
|
+
.progress .bar.w-24 {
|
|
2770
|
+
width: 24%;
|
|
2771
|
+
}
|
|
2772
|
+
.progress .bar.w-25 {
|
|
2773
|
+
width: 25%;
|
|
2774
|
+
}
|
|
2775
|
+
.progress .bar.w-26 {
|
|
2776
|
+
width: 26%;
|
|
2777
|
+
}
|
|
2778
|
+
.progress .bar.w-27 {
|
|
2779
|
+
width: 27%;
|
|
2780
|
+
}
|
|
2781
|
+
.progress .bar.w-28 {
|
|
2782
|
+
width: 28%;
|
|
2783
|
+
}
|
|
2784
|
+
.progress .bar.w-29 {
|
|
2785
|
+
width: 29%;
|
|
2786
|
+
}
|
|
2787
|
+
.progress .bar.w-30 {
|
|
2788
|
+
width: 30%;
|
|
2789
|
+
}
|
|
2790
|
+
.progress .bar.w-31 {
|
|
2791
|
+
width: 31%;
|
|
2792
|
+
}
|
|
2793
|
+
.progress .bar.w-32 {
|
|
2794
|
+
width: 32%;
|
|
2795
|
+
}
|
|
2796
|
+
.progress .bar.w-33 {
|
|
2797
|
+
width: 33%;
|
|
2798
|
+
}
|
|
2799
|
+
.progress .bar.w-34 {
|
|
2800
|
+
width: 34%;
|
|
2801
|
+
}
|
|
2802
|
+
.progress .bar.w-35 {
|
|
2803
|
+
width: 35%;
|
|
2804
|
+
}
|
|
2805
|
+
.progress .bar.w-36 {
|
|
2806
|
+
width: 36%;
|
|
2807
|
+
}
|
|
2808
|
+
.progress .bar.w-37 {
|
|
2809
|
+
width: 37%;
|
|
2810
|
+
}
|
|
2811
|
+
.progress .bar.w-38 {
|
|
2812
|
+
width: 38%;
|
|
2813
|
+
}
|
|
2814
|
+
.progress .bar.w-39 {
|
|
2815
|
+
width: 39%;
|
|
2816
|
+
}
|
|
2817
|
+
.progress .bar.w-40 {
|
|
2818
|
+
width: 40%;
|
|
2819
|
+
}
|
|
2820
|
+
.progress .bar.w-41 {
|
|
2821
|
+
width: 41%;
|
|
2822
|
+
}
|
|
2823
|
+
.progress .bar.w-42 {
|
|
2824
|
+
width: 42%;
|
|
2825
|
+
}
|
|
2826
|
+
.progress .bar.w-43 {
|
|
2827
|
+
width: 43%;
|
|
2828
|
+
}
|
|
2829
|
+
.progress .bar.w-44 {
|
|
2830
|
+
width: 44%;
|
|
2831
|
+
}
|
|
2832
|
+
.progress .bar.w-45 {
|
|
2833
|
+
width: 45%;
|
|
2834
|
+
}
|
|
2835
|
+
.progress .bar.w-46 {
|
|
2836
|
+
width: 46%;
|
|
2837
|
+
}
|
|
2838
|
+
.progress .bar.w-47 {
|
|
2839
|
+
width: 47%;
|
|
2840
|
+
}
|
|
2841
|
+
.progress .bar.w-48 {
|
|
2842
|
+
width: 48%;
|
|
2843
|
+
}
|
|
2844
|
+
.progress .bar.w-49 {
|
|
2845
|
+
width: 49%;
|
|
2846
|
+
}
|
|
2847
|
+
.progress .bar.w-50 {
|
|
2848
|
+
width: 50%;
|
|
2849
|
+
}
|
|
2850
|
+
.progress .bar.w-51 {
|
|
2851
|
+
width: 51%;
|
|
2852
|
+
}
|
|
2853
|
+
.progress .bar.w-52 {
|
|
2854
|
+
width: 52%;
|
|
2855
|
+
}
|
|
2856
|
+
.progress .bar.w-53 {
|
|
2857
|
+
width: 53%;
|
|
2858
|
+
}
|
|
2859
|
+
.progress .bar.w-54 {
|
|
2860
|
+
width: 54%;
|
|
2861
|
+
}
|
|
2862
|
+
.progress .bar.w-55 {
|
|
2863
|
+
width: 55%;
|
|
2864
|
+
}
|
|
2865
|
+
.progress .bar.w-56 {
|
|
2866
|
+
width: 56%;
|
|
2867
|
+
}
|
|
2868
|
+
.progress .bar.w-57 {
|
|
2869
|
+
width: 57%;
|
|
2870
|
+
}
|
|
2871
|
+
.progress .bar.w-58 {
|
|
2872
|
+
width: 58%;
|
|
2873
|
+
}
|
|
2874
|
+
.progress .bar.w-59 {
|
|
2875
|
+
width: 59%;
|
|
2876
|
+
}
|
|
2877
|
+
.progress .bar.w-60 {
|
|
2878
|
+
width: 60%;
|
|
2879
|
+
}
|
|
2880
|
+
.progress .bar.w-61 {
|
|
2881
|
+
width: 61%;
|
|
2882
|
+
}
|
|
2883
|
+
.progress .bar.w-62 {
|
|
2884
|
+
width: 62%;
|
|
2885
|
+
}
|
|
2886
|
+
.progress .bar.w-63 {
|
|
2887
|
+
width: 63%;
|
|
2888
|
+
}
|
|
2889
|
+
.progress .bar.w-64 {
|
|
2890
|
+
width: 64%;
|
|
2891
|
+
}
|
|
2892
|
+
.progress .bar.w-65 {
|
|
2893
|
+
width: 65%;
|
|
2894
|
+
}
|
|
2895
|
+
.progress .bar.w-66 {
|
|
2896
|
+
width: 66%;
|
|
2897
|
+
}
|
|
2898
|
+
.progress .bar.w-67 {
|
|
2899
|
+
width: 67%;
|
|
2900
|
+
}
|
|
2901
|
+
.progress .bar.w-68 {
|
|
2902
|
+
width: 68%;
|
|
2903
|
+
}
|
|
2904
|
+
.progress .bar.w-69 {
|
|
2905
|
+
width: 69%;
|
|
2906
|
+
}
|
|
2907
|
+
.progress .bar.w-70 {
|
|
2908
|
+
width: 70%;
|
|
2909
|
+
}
|
|
2910
|
+
.progress .bar.w-71 {
|
|
2911
|
+
width: 71%;
|
|
2912
|
+
}
|
|
2913
|
+
.progress .bar.w-72 {
|
|
2914
|
+
width: 72%;
|
|
2915
|
+
}
|
|
2916
|
+
.progress .bar.w-73 {
|
|
2917
|
+
width: 73%;
|
|
2918
|
+
}
|
|
2919
|
+
.progress .bar.w-74 {
|
|
2920
|
+
width: 74%;
|
|
2921
|
+
}
|
|
2922
|
+
.progress .bar.w-75 {
|
|
2923
|
+
width: 75%;
|
|
2924
|
+
}
|
|
2925
|
+
.progress .bar.w-76 {
|
|
2926
|
+
width: 76%;
|
|
2927
|
+
}
|
|
2928
|
+
.progress .bar.w-77 {
|
|
2929
|
+
width: 77%;
|
|
2930
|
+
}
|
|
2931
|
+
.progress .bar.w-78 {
|
|
2932
|
+
width: 78%;
|
|
2933
|
+
}
|
|
2934
|
+
.progress .bar.w-79 {
|
|
2935
|
+
width: 79%;
|
|
2936
|
+
}
|
|
2937
|
+
.progress .bar.w-80 {
|
|
2938
|
+
width: 80%;
|
|
2939
|
+
}
|
|
2940
|
+
.progress .bar.w-81 {
|
|
2941
|
+
width: 81%;
|
|
2942
|
+
}
|
|
2943
|
+
.progress .bar.w-82 {
|
|
2944
|
+
width: 82%;
|
|
2945
|
+
}
|
|
2946
|
+
.progress .bar.w-83 {
|
|
2947
|
+
width: 83%;
|
|
2948
|
+
}
|
|
2949
|
+
.progress .bar.w-84 {
|
|
2950
|
+
width: 84%;
|
|
2951
|
+
}
|
|
2952
|
+
.progress .bar.w-85 {
|
|
2953
|
+
width: 85%;
|
|
2954
|
+
}
|
|
2955
|
+
.progress .bar.w-86 {
|
|
2956
|
+
width: 86%;
|
|
2957
|
+
}
|
|
2958
|
+
.progress .bar.w-87 {
|
|
2959
|
+
width: 87%;
|
|
2960
|
+
}
|
|
2961
|
+
.progress .bar.w-88 {
|
|
2962
|
+
width: 88%;
|
|
2963
|
+
}
|
|
2964
|
+
.progress .bar.w-89 {
|
|
2965
|
+
width: 89%;
|
|
2966
|
+
}
|
|
2967
|
+
.progress .bar.w-90 {
|
|
2968
|
+
width: 90%;
|
|
2969
|
+
}
|
|
2970
|
+
.progress .bar.w-91 {
|
|
2971
|
+
width: 91%;
|
|
2972
|
+
}
|
|
2973
|
+
.progress .bar.w-92 {
|
|
2974
|
+
width: 92%;
|
|
2975
|
+
}
|
|
2976
|
+
.progress .bar.w-93 {
|
|
2977
|
+
width: 93%;
|
|
2978
|
+
}
|
|
2979
|
+
.progress .bar.w-94 {
|
|
2980
|
+
width: 94%;
|
|
2981
|
+
}
|
|
2982
|
+
.progress .bar.w-95 {
|
|
2983
|
+
width: 95%;
|
|
2984
|
+
}
|
|
2985
|
+
.progress .bar.w-96 {
|
|
2986
|
+
width: 96%;
|
|
2987
|
+
}
|
|
2988
|
+
.progress .bar.w-97 {
|
|
2989
|
+
width: 97%;
|
|
2990
|
+
}
|
|
2991
|
+
.progress .bar.w-98 {
|
|
2992
|
+
width: 98%;
|
|
2993
|
+
}
|
|
2994
|
+
.progress .bar.w-99 {
|
|
2995
|
+
width: 99%;
|
|
2996
|
+
}
|
|
2997
|
+
.progress .bar.w-100 {
|
|
2998
|
+
width: 100%;
|
|
2999
|
+
}
|
|
3000
|
+
.progress .bar.w-0, .progress .bar.w-100 {
|
|
3001
|
+
border-right: 0;
|
|
3002
|
+
}
|
|
3003
|
+
|
|
3004
|
+
.tabs .content {
|
|
3005
|
+
display: none;
|
|
3006
|
+
flex-basis: 100%;
|
|
3007
|
+
padding: 0.75rem 0 0;
|
|
3008
|
+
}
|
|
3009
|
+
.tabs input {
|
|
3010
|
+
display: none;
|
|
3011
|
+
}
|
|
3012
|
+
.tabs input:checked + label {
|
|
3013
|
+
color: #41403e;
|
|
3014
|
+
color: var(--primary);
|
|
3015
|
+
border-bottom-color: #41403e;
|
|
3016
|
+
border-bottom-color: var(--secondary);
|
|
3017
|
+
border-bottom-style: solid;
|
|
3018
|
+
border-bottom-width: 3px;
|
|
3019
|
+
}
|
|
3020
|
+
.tabs input[id$=tab1]:checked ~ div[id$=content1] {
|
|
3021
|
+
display: block;
|
|
3022
|
+
}
|
|
3023
|
+
.tabs input[id$=tab2]:checked ~ div[id$=content2] {
|
|
3024
|
+
display: block;
|
|
3025
|
+
}
|
|
3026
|
+
.tabs input[id$=tab3]:checked ~ div[id$=content3] {
|
|
3027
|
+
display: block;
|
|
3028
|
+
}
|
|
3029
|
+
.tabs input[id$=tab4]:checked ~ div[id$=content4] {
|
|
3030
|
+
display: block;
|
|
3031
|
+
}
|
|
3032
|
+
.tabs input[id$=tab5]:checked ~ div[id$=content5] {
|
|
3033
|
+
display: block;
|
|
3034
|
+
}
|
|
3035
|
+
.tabs label {
|
|
3036
|
+
color: #41403e;
|
|
3037
|
+
color: var(--primary-light);
|
|
3038
|
+
display: inline-block;
|
|
3039
|
+
font-weight: 600;
|
|
3040
|
+
margin: 0 0 -1px;
|
|
3041
|
+
padding: 0.75rem;
|
|
3042
|
+
text-align: center;
|
|
3043
|
+
}
|
|
3044
|
+
.tabs label:hover {
|
|
3045
|
+
color: #41403e;
|
|
3046
|
+
color: var(--muted);
|
|
3047
|
+
cursor: pointer;
|
|
3048
|
+
}
|
|
3049
|
+
|
|
3050
|
+
.margin {
|
|
3051
|
+
margin: 1rem;
|
|
3052
|
+
}
|
|
3053
|
+
.margin-top {
|
|
3054
|
+
margin-top: 1rem;
|
|
3055
|
+
}
|
|
3056
|
+
.margin-top-large {
|
|
3057
|
+
margin-top: 2rem;
|
|
3058
|
+
}
|
|
3059
|
+
.margin-top-small {
|
|
3060
|
+
margin-top: 0.5rem;
|
|
3061
|
+
}
|
|
3062
|
+
.margin-top-none {
|
|
3063
|
+
margin-top: 0;
|
|
3064
|
+
}
|
|
3065
|
+
.margin-right {
|
|
3066
|
+
margin-right: 1rem;
|
|
3067
|
+
}
|
|
3068
|
+
.margin-right-large {
|
|
3069
|
+
margin-right: 2rem;
|
|
3070
|
+
}
|
|
3071
|
+
.margin-right-small {
|
|
3072
|
+
margin-right: 0.5rem;
|
|
3073
|
+
}
|
|
3074
|
+
.margin-right-none {
|
|
3075
|
+
margin-right: 0;
|
|
3076
|
+
}
|
|
3077
|
+
.margin-bottom {
|
|
3078
|
+
margin-bottom: 1rem;
|
|
3079
|
+
}
|
|
3080
|
+
.margin-bottom-large {
|
|
3081
|
+
margin-bottom: 2rem;
|
|
3082
|
+
}
|
|
3083
|
+
.margin-bottom-small {
|
|
3084
|
+
margin-bottom: 0.5rem;
|
|
3085
|
+
}
|
|
3086
|
+
.margin-bottom-none {
|
|
3087
|
+
margin-bottom: 0;
|
|
3088
|
+
}
|
|
3089
|
+
.margin-left {
|
|
3090
|
+
margin-left: 1rem;
|
|
3091
|
+
}
|
|
3092
|
+
.margin-left-large {
|
|
3093
|
+
margin-left: 2rem;
|
|
3094
|
+
}
|
|
3095
|
+
.margin-left-small {
|
|
3096
|
+
margin-left: 0.5rem;
|
|
3097
|
+
}
|
|
3098
|
+
.margin-left-none {
|
|
3099
|
+
margin-left: 0;
|
|
3100
|
+
}
|
|
3101
|
+
.margin-large {
|
|
3102
|
+
margin: 2rem;
|
|
3103
|
+
}
|
|
3104
|
+
.margin-small {
|
|
3105
|
+
margin: 0.5rem;
|
|
3106
|
+
}
|
|
3107
|
+
.margin-none {
|
|
3108
|
+
margin: 0;
|
|
3109
|
+
}
|
|
3110
|
+
|
|
3111
|
+
.padding {
|
|
3112
|
+
padding: 1rem;
|
|
3113
|
+
}
|
|
3114
|
+
.padding-top {
|
|
3115
|
+
padding-top: 1rem;
|
|
3116
|
+
}
|
|
3117
|
+
.padding-top-large {
|
|
3118
|
+
padding-top: 2rem;
|
|
3119
|
+
}
|
|
3120
|
+
.padding-top-small {
|
|
3121
|
+
padding-top: 0.5rem;
|
|
3122
|
+
}
|
|
3123
|
+
.padding-top-none {
|
|
3124
|
+
padding-top: 0;
|
|
3125
|
+
}
|
|
3126
|
+
.padding-right {
|
|
3127
|
+
padding-right: 1rem;
|
|
3128
|
+
}
|
|
3129
|
+
.padding-right-large {
|
|
3130
|
+
padding-right: 2rem;
|
|
3131
|
+
}
|
|
3132
|
+
.padding-right-small {
|
|
3133
|
+
padding-right: 0.5rem;
|
|
3134
|
+
}
|
|
3135
|
+
.padding-right-none {
|
|
3136
|
+
padding-right: 0;
|
|
3137
|
+
}
|
|
3138
|
+
.padding-bottom {
|
|
3139
|
+
padding-bottom: 1rem;
|
|
3140
|
+
}
|
|
3141
|
+
.padding-bottom-large {
|
|
3142
|
+
padding-bottom: 2rem;
|
|
3143
|
+
}
|
|
3144
|
+
.padding-bottom-small {
|
|
3145
|
+
padding-bottom: 0.5rem;
|
|
3146
|
+
}
|
|
3147
|
+
.padding-bottom-none {
|
|
3148
|
+
padding-bottom: 0;
|
|
3149
|
+
}
|
|
3150
|
+
.padding-left {
|
|
3151
|
+
padding-left: 1rem;
|
|
3152
|
+
}
|
|
3153
|
+
.padding-left-large {
|
|
3154
|
+
padding-left: 2rem;
|
|
3155
|
+
}
|
|
3156
|
+
.padding-left-small {
|
|
3157
|
+
padding-left: 0.5rem;
|
|
3158
|
+
}
|
|
3159
|
+
.padding-left-none {
|
|
3160
|
+
padding-left: 0;
|
|
3161
|
+
}
|
|
3162
|
+
.padding-large {
|
|
3163
|
+
padding: 2rem;
|
|
3164
|
+
}
|
|
3165
|
+
.padding-small {
|
|
3166
|
+
padding: 0.5rem;
|
|
3167
|
+
}
|
|
3168
|
+
.padding-none {
|
|
3169
|
+
padding: 0;
|
|
3170
|
+
}
|
|
3171
|
+
|
|
3172
|
+
nav {
|
|
3173
|
+
background-color: #41403e;
|
|
3174
|
+
background-color: var(--main-background);
|
|
3175
|
+
display: flex;
|
|
3176
|
+
padding: 0.3rem;
|
|
3177
|
+
position: relative;
|
|
3178
|
+
width: 100%;
|
|
3179
|
+
z-index: 100;
|
|
3180
|
+
}
|
|
3181
|
+
@media only screen and (max-width: 768px) {
|
|
3182
|
+
nav {
|
|
3183
|
+
display: block;
|
|
3184
|
+
}
|
|
3185
|
+
}
|
|
3186
|
+
nav .bar1,
|
|
3187
|
+
nav .bar2,
|
|
3188
|
+
nav .bar3 {
|
|
3189
|
+
background-color: #41403e;
|
|
3190
|
+
background-color: var(--primary);
|
|
3191
|
+
border-color: #41403e;
|
|
3192
|
+
border-color: var(--primary);
|
|
3193
|
+
color: #41403e;
|
|
3194
|
+
color: var(--primary);
|
|
3195
|
+
border-bottom-left-radius: 15px 5px;
|
|
3196
|
+
border-bottom-right-radius: 15px 3px;
|
|
3197
|
+
border-bottom-style: solid;
|
|
3198
|
+
border-bottom-width: 5px;
|
|
3199
|
+
margin: 6px 0;
|
|
3200
|
+
transition: 0.4s;
|
|
3201
|
+
width: 2rem;
|
|
3202
|
+
}
|
|
3203
|
+
nav .collapsible input[id^=collapsible]:checked + button .bar1,
|
|
3204
|
+
nav .collapsible input[id^=collapsible]:checked + label .bar1 {
|
|
3205
|
+
transform: rotate(-45deg) translate(-9px, 7px);
|
|
3206
|
+
}
|
|
3207
|
+
nav .collapsible input[id^=collapsible]:checked + button .bar2,
|
|
3208
|
+
nav .collapsible input[id^=collapsible]:checked + label .bar2 {
|
|
3209
|
+
opacity: 0;
|
|
3210
|
+
}
|
|
3211
|
+
nav .collapsible input[id^=collapsible]:checked + button .bar3,
|
|
3212
|
+
nav .collapsible input[id^=collapsible]:checked + label .bar3 {
|
|
3213
|
+
transform: rotate(45deg) translate(-8px, -9px);
|
|
3214
|
+
}
|
|
3215
|
+
nav.split-nav {
|
|
3216
|
+
justify-content: space-between;
|
|
3217
|
+
}
|
|
3218
|
+
nav.fixed {
|
|
3219
|
+
left: 0;
|
|
3220
|
+
position: fixed;
|
|
3221
|
+
right: 0;
|
|
3222
|
+
top: 0;
|
|
3223
|
+
}
|
|
3224
|
+
nav div {
|
|
3225
|
+
margin: 0 1rem;
|
|
3226
|
+
}
|
|
3227
|
+
nav ul.inline {
|
|
3228
|
+
margin-bottom: 0;
|
|
3229
|
+
margin-top: 10px;
|
|
3230
|
+
padding: 0;
|
|
3231
|
+
}
|
|
3232
|
+
nav ul.inline li {
|
|
3233
|
+
display: inline-block;
|
|
3234
|
+
margin: 0 0.5rem;
|
|
3235
|
+
}
|
|
3236
|
+
@media only screen and (max-width: 768px) {
|
|
3237
|
+
nav ul.inline li {
|
|
3238
|
+
display: block;
|
|
3239
|
+
margin: 1rem 0;
|
|
3240
|
+
}
|
|
3241
|
+
}
|
|
3242
|
+
nav a {
|
|
3243
|
+
color: #41403e;
|
|
3244
|
+
color: var(--primary);
|
|
3245
|
+
border-bottom-color: #41403e;
|
|
3246
|
+
border-bottom-color: var(--primary);
|
|
3247
|
+
background-image: none;
|
|
3248
|
+
border-bottom-left-radius: 15px 3px;
|
|
3249
|
+
border-bottom-right-radius: 15px 5px;
|
|
3250
|
+
border-bottom-style: solid;
|
|
3251
|
+
border-bottom-width: 5px;
|
|
3252
|
+
padding-bottom: 0.1rem;
|
|
3253
|
+
}
|
|
3254
|
+
nav a:hover {
|
|
3255
|
+
border-color: #41403e;
|
|
3256
|
+
border-color: var(--primary-light);
|
|
3257
|
+
border-bottom-style: solid;
|
|
3258
|
+
border-bottom-width: 5px;
|
|
3259
|
+
}
|
|
3260
|
+
nav ul.inline li a {
|
|
3261
|
+
font-size: 1.3rem;
|
|
3262
|
+
}
|
|
3263
|
+
nav ul.inline li::before {
|
|
3264
|
+
content: "";
|
|
3265
|
+
}
|
|
3266
|
+
@media only screen and (max-width: 992px) {
|
|
3267
|
+
nav ul {
|
|
3268
|
+
text-align: center;
|
|
3269
|
+
}
|
|
3270
|
+
}
|
|
3271
|
+
nav .nav-brand h1,
|
|
3272
|
+
nav .nav-brand h2,
|
|
3273
|
+
nav .nav-brand h3,
|
|
3274
|
+
nav .nav-brand h4,
|
|
3275
|
+
nav .nav-brand h5,
|
|
3276
|
+
nav .nav-brand h6 {
|
|
3277
|
+
margin: 0;
|
|
3278
|
+
margin-bottom: 0.2rem;
|
|
3279
|
+
}
|
|
3280
|
+
@media only screen and (max-width: 768px) {
|
|
3281
|
+
nav .collapsible {
|
|
3282
|
+
width: 100%;
|
|
3283
|
+
}
|
|
3284
|
+
}
|
|
3285
|
+
nav .collapsible input[id^=collapsible]:checked ~ div.collapsible-body {
|
|
3286
|
+
margin: 0;
|
|
3287
|
+
max-height: 960px;
|
|
3288
|
+
opacity: 1;
|
|
3289
|
+
padding: 0;
|
|
3290
|
+
}
|
|
3291
|
+
nav .collapsible:nth-of-type(1),
|
|
3292
|
+
nav .collapsible .collapsible-body {
|
|
3293
|
+
border: 0;
|
|
3294
|
+
}
|
|
3295
|
+
@media only screen and (min-width: 769px) {
|
|
3296
|
+
nav .collapsible:nth-of-type(1),
|
|
3297
|
+
nav .collapsible .collapsible-body {
|
|
3298
|
+
display: contents;
|
|
3299
|
+
}
|
|
3300
|
+
}
|
|
3301
|
+
nav div.collapsible-body {
|
|
3302
|
+
padding: none;
|
|
3303
|
+
}
|
|
3304
|
+
nav .collapsible label {
|
|
3305
|
+
border-color: #41403e;
|
|
3306
|
+
border-color: var(--primary);
|
|
3307
|
+
border-bottom-left-radius: 15px 255px;
|
|
3308
|
+
border-bottom-right-radius: 225px 15px;
|
|
3309
|
+
border-style: solid;
|
|
3310
|
+
border-top-left-radius: 255px 15px;
|
|
3311
|
+
border-top-right-radius: 15px 225px;
|
|
3312
|
+
border-width: 2px;
|
|
3313
|
+
}
|
|
3314
|
+
nav .collapsible > button {
|
|
3315
|
+
border: 0;
|
|
3316
|
+
}
|
|
3317
|
+
nav .collapsible > button,
|
|
3318
|
+
nav .collapsible > label {
|
|
3319
|
+
background-color: #41403e;
|
|
3320
|
+
background-color: var(--main-background);
|
|
3321
|
+
display: none;
|
|
3322
|
+
font-size: 0.5rem;
|
|
3323
|
+
margin-right: 1rem;
|
|
3324
|
+
padding: 0.25rem;
|
|
3325
|
+
position: absolute;
|
|
3326
|
+
right: 0;
|
|
3327
|
+
top: 0.2rem;
|
|
3328
|
+
}
|
|
3329
|
+
@media only screen and (max-width: 768px) {
|
|
3330
|
+
nav .collapsible > button,
|
|
3331
|
+
nav .collapsible > label {
|
|
3332
|
+
display: block;
|
|
3333
|
+
}
|
|
3334
|
+
}
|
|
3335
|
+
font-family: "Neucha", sans-serif;
|
|
3336
|
+
font-size: 20px;
|
|
3337
|
+
}
|
|
3338
|
+
:host .papier.is--dark {
|
|
3339
|
+
--primary: #fff;
|
|
3340
|
+
--secondary: #5595ce;
|
|
3341
|
+
--success: #70c272;
|
|
3342
|
+
--warning: #d4c252;
|
|
3343
|
+
--danger: #df4c57;
|
|
3344
|
+
--muted: #868e96;
|
|
3345
|
+
--primary-light: white;
|
|
3346
|
+
--secondary-light: #69a1d4;
|
|
3347
|
+
--success-light: #82ca84;
|
|
3348
|
+
--warning-light: #d9c966;
|
|
3349
|
+
--danger-light: #e3626b;
|
|
3350
|
+
--muted-light: #949ba2;
|
|
3351
|
+
--primary-dark: gray;
|
|
3352
|
+
--secondary-dark: #1f476b;
|
|
3353
|
+
--success-dark: #265927;
|
|
3354
|
+
--warning-dark: #71651c;
|
|
3355
|
+
--danger-dark: #7c161e;
|
|
3356
|
+
--muted-dark: #313538;
|
|
3357
|
+
--primary-light-10: white;
|
|
3358
|
+
--secondary-light-10: #7daed9;
|
|
3359
|
+
--success-light-10: #94d195;
|
|
3360
|
+
--warning-light-10: #ded07b;
|
|
3361
|
+
--danger-light-10: #e77780;
|
|
3362
|
+
--muted-light-10: #a1a8ae;
|
|
3363
|
+
--primary-dark-10: #e6e6e6;
|
|
3364
|
+
--secondary-dark-10: #367cba;
|
|
3365
|
+
--success-dark-10: #4cb34f;
|
|
3366
|
+
--warning-dark-10: #c3ae30;
|
|
3367
|
+
--danger-dark-10: #d22633;
|
|
3368
|
+
--muted-dark-10: #6c757d;
|
|
3369
|
+
--primary-shaded-50: #343332;
|
|
3370
|
+
--primary-shaded-70: #2f2e2d;
|
|
3371
|
+
--white-dark: rgba(255, 255, 255, 0.03);
|
|
3372
|
+
--white-dark-light-80: rgba(255, 255, 255, 0.03);
|
|
3373
|
+
--light-dark: rgba(255, 255, 255, 0.7);
|
|
3374
|
+
--white: white;
|
|
3375
|
+
--main-background: #41403e;
|
|
3376
|
+
--main-background-light: #c1c0bd;
|
|
3377
|
+
--black: black;
|
|
3378
|
+
--primary-text: #41403e;
|
|
3379
|
+
--secondary-text: #1f476b;
|
|
3380
|
+
--success-text: #265927;
|
|
3381
|
+
--warning-text: #71651c;
|
|
3382
|
+
--danger-text: #7c161e;
|
|
3383
|
+
--muted-text: #949ba2;
|
|
3384
|
+
--shadow-color-regular: rgba(0, 0, 0, 0.2);
|
|
3385
|
+
--shadow-color-hover: rgba(0, 0, 0, 0.3);
|
|
3386
|
+
--primary-inverse: #41403e;
|
|
3387
|
+
}
|
|
3388
|
+
:host .papier:not(.is--dark) {
|
|
3389
|
+
--primary: #41403e;
|
|
3390
|
+
--secondary: #0b74d5;
|
|
3391
|
+
--success: #86a361;
|
|
3392
|
+
--warning: #ddcd45;
|
|
3393
|
+
--danger: #a7342d;
|
|
3394
|
+
--muted: #868e96;
|
|
3395
|
+
--primary-light: #cdcccb;
|
|
3396
|
+
--secondary-light: #d8ebfd;
|
|
3397
|
+
--success-light: #d5dfc8;
|
|
3398
|
+
--warning-light: #f5f0c6;
|
|
3399
|
+
--danger-light: #f0cbc9;
|
|
3400
|
+
--muted-light: #e6e7e9;
|
|
3401
|
+
--primary-dark: black;
|
|
3402
|
+
--secondary-dark: black;
|
|
3403
|
+
--success-dark: #374427;
|
|
3404
|
+
--warning-dark: #746a15;
|
|
3405
|
+
--danger-dark: black;
|
|
3406
|
+
--muted-dark: #313538;
|
|
3407
|
+
--primary-light-10: #5b5a57;
|
|
3408
|
+
--secondary-light-10: #208ef3;
|
|
3409
|
+
--success-light-10: #9fb681;
|
|
3410
|
+
--warning-light-10: #e5d970;
|
|
3411
|
+
--danger-light-10: #cb453c;
|
|
3412
|
+
--muted-light-10: #a1a8ae;
|
|
3413
|
+
--primary-dark-10: #272625;
|
|
3414
|
+
--secondary-dark-10: #085aa5;
|
|
3415
|
+
--success-dark-10: #4a5a35;
|
|
3416
|
+
--warning-dark-10: #746a15;
|
|
3417
|
+
--danger-dark-10: #7f2722;
|
|
3418
|
+
--muted-dark-10: #6c757d;
|
|
3419
|
+
--primary-shaded-50: #c1c0bd;
|
|
3420
|
+
--primary-shaded-70: #f2f2f2;
|
|
3421
|
+
--white-dark: rgba(0, 0, 0, 0.03);
|
|
3422
|
+
--white-dark-light-80: rgba(204, 204, 204, 0.03);
|
|
3423
|
+
--light-dark: rgba(0, 0, 0, 0.7);
|
|
3424
|
+
--white: white;
|
|
3425
|
+
--main-background: white;
|
|
3426
|
+
--main-background-light: white;
|
|
3427
|
+
--black: black;
|
|
3428
|
+
--primary-text: #272625;
|
|
3429
|
+
--secondary-text: #085aa5;
|
|
3430
|
+
--success-text: #4a5a35;
|
|
3431
|
+
--warning-text: #746a15;
|
|
3432
|
+
--danger-text: #7f2722;
|
|
3433
|
+
--muted-text: #6c757d;
|
|
3434
|
+
--shadow-color-regular: rgba(0, 0, 0, 0.2);
|
|
3435
|
+
--shadow-color-hover: rgba(0, 0, 0, 0.3);
|
|
3436
|
+
--primary-inverse: #fff;
|
|
3437
|
+
}
|
|
3438
|
+
:host .papier.is--block {
|
|
3439
|
+
display: block;
|
|
3440
|
+
}
|
|
3441
|
+
:host .papier:not(.is--block) {
|
|
3442
|
+
display: inline-block;
|
|
3443
|
+
}
|
|
3444
|
+
:host .alert, :host .papier {
|
|
3445
|
+
display: block;
|
|
3446
|
+
width: 100%;
|
|
3447
|
+
box-sizing: border-box;
|
|
3448
|
+
}
|