glance 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,109 @@
1
+ @charset "utf-8";
2
+
3
+ // Created by Sander Voerman <mailto:sander@savoerman.nl> using the Solarized
4
+ // color scheme by Ethan Schoonover <https://ethanschoonover.com/solarized>.
5
+
6
+ // Mixed with paperCSS by Coink
7
+
8
+ // Color scheme
9
+ // ------------
10
+ // The inline comments show the canonical L*a*b values for each color.
11
+
12
+ $sol-base03: #002b36; // 15 -12 -12
13
+ $sol-base02: #073642; // 20 -12 -12
14
+ $sol-base01: #586e75; // 45 -07 -07
15
+ $sol-base00: #657b83; // 50 -07 -07
16
+ $sol-base0: #839496; // 60 -06 -03
17
+ $sol-base1: #93a1a1; // 65 -05 -02
18
+ $sol-base2: #eee8d5; // 92 -00 10
19
+ $sol-base3: #fdf6e3; // 97 00 10
20
+
21
+ $sol-yellow: #b58900; // 60 10 65
22
+ $sol-orange: #cb4b16; // 50 50 55
23
+ $sol-red: #dc322f; // 50 65 45
24
+ $sol-magenta: #d33682; // 50 65 -05
25
+ $sol-violet: #6c71c4; // 50 15 -45
26
+ $sol-blue: #268bd2; // 55 -10 -45
27
+ $sol-cyan: #2aa198; // 60 -35 -05
28
+ $sol-green: #859900; // 60 -20 65
29
+
30
+ $paper-blue: #0071de;
31
+ $paper-blue-light: #deefff;
32
+ $paper-green: #86a361;
33
+ $paper-green-light: #d0dbc2;
34
+ $paper-yellow: #ddcd45;
35
+ $paper-yellow-light:#f5f0c6;
36
+ $paper-red: #a7342d;
37
+ $paper-red-light: #f0cbc9;
38
+
39
+ $sol-mono3: $sol-base3;
40
+ $sol-mono2: $sol-base2;
41
+ $sol-mono1: $sol-base1;
42
+ $sol-mono00: $sol-base00;
43
+ $sol-mono01: $sol-base01;
44
+
45
+
46
+ // Syntax highlighting styles
47
+ // --------------------------
48
+
49
+ .highlight {
50
+ .c { color: $sol-mono1; font-style: italic } // Comment
51
+ .err { color: $sol-red } // Error
52
+ .k { color: $paper-blue; font-weight: bold } // Keyword
53
+ .o { color: $sol-mono01; font-weight: bold } // Operator
54
+ .cm { color: $sol-mono1; font-style: italic } // Comment.Multiline
55
+ .cp { color: $sol-mono1; font-weight: bold } // Comment.Preproc
56
+ .c1 { color: $sol-mono1; font-style: italic } // Comment.Single
57
+ .cs { color: $sol-mono1; font-weight: bold; font-style: italic } // Comment.Special
58
+ .gd { color: $sol-red } // Generic.Deleted
59
+ .gd .x { color: $sol-red } // Generic.Deleted.Specific
60
+ .ge { color: $sol-mono00; font-style: italic } // Generic.Emph
61
+ .gr { color: $sol-red } // Generic.Error
62
+ .gh { color: $sol-mono1 } // Generic.Heading
63
+ .gi { color: $sol-green } // Generic.Inserted
64
+ .gi .x { color: $sol-green } // Generic.Inserted.Specific
65
+ .go { color: $sol-mono00 } // Generic.Output
66
+ .gp { color: $sol-mono00 } // Generic.Prompt
67
+ .gs { color: $sol-mono01; font-weight: bold } // Generic.Strong
68
+ .gu { color: $sol-mono1 } // Generic.Subheading
69
+ .gt { color: $sol-red } // Generic.Traceback
70
+ .kc { color: $paper-blue; font-weight: bold } // Keyword.Constant
71
+ .kd { color: $paper-blue; font-weight: bold } // Keyword.Declaration
72
+ .kp { color: $paper-blue; font-weight: bold } // Keyword.Pseudo
73
+ .kr { color: $paper-blue; font-weight: bold } // Keyword.Reserved
74
+ .kt { color: $sol-violet; font-weight: bold } // Keyword.Type
75
+ .m { color: $paper-green } // Literal.Number
76
+ .s { color: $sol-magenta } // Literal.String
77
+ .na { color: $sol-cyan } // Name.Attribute
78
+ .nb { color: $sol-blue } // Name.Builtin
79
+ .nc { color: $sol-violet; font-weight: bold } // Name.Class
80
+ .no { color: $sol-cyan } // Name.Constant
81
+ .ni { color: $sol-violet } // Name.Entity
82
+ .ne { color: $sol-violet; font-weight: bold } // Name.Exception
83
+ .nf { color: $sol-blue; font-weight: bold } // Name.Function
84
+ .nn { color: $sol-mono00 } // Name.Namespace
85
+ .nt { color: $sol-blue } // Name.Tag
86
+ .nv { color: $sol-cyan } // Name.Variable
87
+ .ow { color: $sol-mono01; font-weight: bold } // Operator.Word
88
+ .w { color: $sol-mono1 } // Text.Whitespace
89
+ .mf { color: $sol-cyan } // Literal.Number.Float
90
+ .mh { color: $sol-cyan } // Literal.Number.Hex
91
+ .mi { color: $sol-cyan } // Literal.Number.Integer
92
+ .mo { color: $sol-cyan } // Literal.Number.Oct
93
+ .sb { color: $sol-magenta } // Literal.String.Backtick
94
+ .sc { color: $sol-magenta } // Literal.String.Char
95
+ .sd { color: $sol-magenta } // Literal.String.Doc
96
+ .s2 { color: $sol-magenta } // Literal.String.Double
97
+ .se { color: $sol-magenta } // Literal.String.Escape
98
+ .sh { color: $sol-magenta } // Literal.String.Heredoc
99
+ .si { color: $sol-magenta } // Literal.String.Interpol
100
+ .sx { color: $sol-magenta } // Literal.String.Other
101
+ .sr { color: $sol-green } // Literal.String.Regex
102
+ .s1 { color: $sol-magenta } // Literal.String.Single
103
+ .ss { color: $sol-magenta } // Literal.String.Symbol
104
+ .bp { color: $sol-mono1 } // Name.Builtin.Pseudo
105
+ .vc { color: $sol-cyan } // Name.Variable.Class
106
+ .vg { color: $sol-cyan } // Name.Variable.Global
107
+ .vi { color: $sol-cyan } // Name.Variable.Instance
108
+ .il { color: $sol-cyan } // Literal.Number.Integer.Long
109
+ }
@@ -0,0 +1,124 @@
1
+ /**
2
+ * Site header
3
+ */
4
+ .site-header {
5
+ margin: $base-global-margin;
6
+ min-height: $spacing-unit * 1.865;
7
+ line-height: $base-line-height * $base-font-size * 2.25;
8
+
9
+ // Positioning context for the mobile navigation icon
10
+ position: relative;
11
+ }
12
+
13
+ /**
14
+ * Site footer
15
+ */
16
+ .site-footer {
17
+ margin: $base-global-margin;
18
+ padding: $spacing-unit * 0.5 0;
19
+ text-align: center;
20
+ }
21
+
22
+ /**
23
+ * Page content
24
+ */
25
+ .page-content {
26
+ padding: $spacing-unit 0;
27
+ // Let footer keeping fixed on bottom
28
+ flex: 1 0 auto;
29
+ }
30
+
31
+ /**
32
+ * Links
33
+ */
34
+ a {
35
+ color: $link-base-color;
36
+ text-decoration: none;
37
+
38
+ &:visited {
39
+ color: $link-visited-color;
40
+ }
41
+
42
+ &:hover {
43
+ color: $text-color;
44
+ }
45
+ }
46
+
47
+ /**
48
+ * Post links
49
+ */
50
+ .post-link {
51
+ display: block;
52
+ @include relative-font-size(1.5);
53
+ a {
54
+ // Clean the underline from paperCSS
55
+ background-image: none;
56
+ }
57
+ }
58
+
59
+ /**
60
+ * Clean links
61
+ */
62
+ .clean-link {
63
+ // Clean the underline from paperCSS
64
+ background-image: none;
65
+ }
66
+
67
+ /**
68
+ * Post subtitles
69
+ */
70
+ .post-subtitle{
71
+ @include relative-font-size(0.8);
72
+ }
73
+
74
+ /**
75
+ * Button to page top
76
+ */
77
+ .to-top-btn {
78
+ padding: .6em 1em;
79
+ background: #fff;
80
+ position: fixed;
81
+ right: 1.5rem;
82
+ bottom: 1.5rem;
83
+ z-index: 1;
84
+ }
85
+
86
+ /**
87
+ * works card container
88
+ */
89
+ .works-card-container {
90
+ display: -webkit-flex; /* Safari */
91
+ display: flex;
92
+ flex-direction: row;
93
+ flex-wrap: wrap;
94
+ justify-content:space-between;
95
+ -webkit-justify-content: space-evenly !important;
96
+ -moz-justify-content:space-evenly;
97
+ }
98
+
99
+ .works-card{
100
+ width: 20rem;
101
+ margin: 1rem 0;
102
+ }
103
+
104
+
105
+ /**
106
+ * links container
107
+ */
108
+ .friend-links-container{
109
+ display: -webkit-flex; /* Safari */
110
+ display: flex;
111
+ flex-direction: row;
112
+ flex-wrap: wrap;
113
+ justify-content:space-between;
114
+ -webkit-justify-content: space-evenly !important;
115
+ -moz-justify-content:space-evenly;
116
+ }
117
+
118
+ .friend-links{
119
+ min-width: 10rem;
120
+ margin: 1rem 0;
121
+ display: -webkit-flex; /* Safari */
122
+ display: flex;
123
+ justify-content: center;
124
+ }
@@ -0,0 +1,49 @@
1
+ @charset "utf-8";
2
+
3
+ // Define defaults for each variable.
4
+
5
+ $base-font-family: Neucha, -apple-system, BlinkMacSystemFont, PingFangSC-Regular, Roboto, Helvetica, Arial, sans-serif !default;
6
+ $base-font-size: 20px !default;
7
+ $base-font-weight: 400 !default;
8
+ $small-font-size: $base-font-size * 0.875 !default;
9
+ $base-line-height: 1.5 !default;
10
+ $base-global-margin: .3rem !default;
11
+
12
+ $spacing-unit: 30px !default;
13
+
14
+ $table-text-align: left !default;
15
+
16
+ // Width of the content area
17
+ $content-width: 1000px + (2 * $spacing-unit) !default;
18
+
19
+ $on-palm: 600px !default;
20
+ $on-laptop: 800px !default;
21
+
22
+ $on-medium: $on-palm !default;
23
+ $on-large: $on-laptop !default;
24
+
25
+ // Use media queries like this:
26
+ // @include media-query($on-palm) {
27
+ // .wrapper {
28
+ // padding-right: $spacing-unit / 2;
29
+ // padding-left: $spacing-unit / 2;
30
+ // }
31
+ // }
32
+ // Notice the following mixin uses max-width, in a deprecated, desktop-first
33
+ // approach, whereas media queries used elsewhere now use min-width.
34
+ @mixin media-query($device) {
35
+ @media screen and (max-width: $device) {
36
+ @content;
37
+ }
38
+ }
39
+
40
+ @mixin relative-font-size($ratio) {
41
+ font-size: #{$ratio}rem;
42
+ }
43
+
44
+ // Import pre-styling-overrides hook and style-partials.
45
+ @import
46
+ "base", // Defines element resets.
47
+ "layout", // Defines structure and style based on CSS selectors.
48
+ "highlight" // Defines code highlight colors.
49
+ ;
@@ -0,0 +1,2381 @@
1
+ @charset "UTF-8";
2
+ // @import url(https://fonts.googleapis.com/css?family=Neucha|Patrick+Hand+SC);
3
+
4
+ // incase that cannot connect to google (Coink)
5
+ @import url(../../assets/css/fonts.css);
6
+
7
+ .text-primary {
8
+ color: #41403e
9
+ }
10
+ .background-primary {
11
+ background-color: #c1c0bd
12
+ }
13
+ .text-secondary {
14
+ color: #0071de
15
+ }
16
+ .background-secondary {
17
+ background-color: #deefff
18
+ }
19
+ .text-success {
20
+ color: #86a361
21
+ }
22
+ .background-success {
23
+ background-color: #d0dbc2
24
+ }
25
+ .text-warning {
26
+ color: #ddcd45
27
+ }
28
+ .background-warning {
29
+ background-color: #f5f0c6
30
+ }
31
+ .text-danger {
32
+ color: #a7342d
33
+ }
34
+ .background-danger {
35
+ background-color: #f0cbc9
36
+ }
37
+ .text-muted {
38
+ color: #868e96
39
+ }
40
+ .background-muted {
41
+ background-color: #e6e7e9
42
+ }
43
+ /*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
44
+ html {
45
+ line-height: 1.15;
46
+ -ms-text-size-adjust: 100%;
47
+ -webkit-text-size-adjust: 100%
48
+ }
49
+ body {
50
+ margin: 0
51
+ }
52
+ article,
53
+ aside,
54
+ footer,
55
+ header,
56
+ nav,
57
+ section {
58
+ display: block
59
+ }
60
+ h1 {
61
+ font-size: 2em;
62
+ margin: .67em 0
63
+ }
64
+ figcaption,
65
+ figure,
66
+ main {
67
+ display: block
68
+ }
69
+ figure {
70
+ margin: 1em 40px
71
+ }
72
+ hr {
73
+ box-sizing: content-box;
74
+ height: 0;
75
+ overflow: visible
76
+ }
77
+ pre {
78
+ font-family: monospace,monospace;
79
+ font-size: 1em
80
+ }
81
+ a {
82
+ background-color: transparent;
83
+ -webkit-text-decoration-skip: objects
84
+ }
85
+ abbr[title] {
86
+ border-bottom: none;
87
+ text-decoration: underline;
88
+ -webkit-text-decoration: underline dotted;
89
+ text-decoration: underline dotted
90
+ }
91
+ b,
92
+ strong {
93
+ font-weight: inherit
94
+ }
95
+ b,
96
+ strong {
97
+ font-weight: bolder
98
+ }
99
+ code,
100
+ kbd,
101
+ samp {
102
+ font-family: monospace,monospace;
103
+ font-size: 1em
104
+ }
105
+ dfn {
106
+ font-style: italic
107
+ }
108
+ mark {
109
+ background-color: #ff0;
110
+ color: #000
111
+ }
112
+ small {
113
+ font-size: 80%
114
+ }
115
+ sub,
116
+ sup {
117
+ font-size: 75%;
118
+ line-height: 0;
119
+ position: relative;
120
+ vertical-align: baseline
121
+ }
122
+ sub {
123
+ bottom: -.25em
124
+ }
125
+ sup {
126
+ top: -.5em
127
+ }
128
+ audio,
129
+ video {
130
+ display: inline-block
131
+ }
132
+ audio:not([controls]) {
133
+ display: none;
134
+ height: 0
135
+ }
136
+ img {
137
+ border-style: none
138
+ }
139
+ svg:not(:root) {
140
+ overflow: hidden
141
+ }
142
+ button,
143
+ input,
144
+ optgroup,
145
+ select,
146
+ textarea {
147
+ font-family: sans-serif;
148
+ font-size: 100%;
149
+ line-height: 1.15;
150
+ margin: 0
151
+ }
152
+ button,
153
+ input {
154
+ overflow: visible
155
+ }
156
+ button,
157
+ select {
158
+ text-transform: none
159
+ }
160
+ [type=reset],
161
+ [type=submit],
162
+ button,
163
+ html [type=button] {
164
+ -webkit-appearance: button
165
+ }
166
+ [type=button]::-moz-focus-inner,
167
+ [type=reset]::-moz-focus-inner,
168
+ [type=submit]::-moz-focus-inner,
169
+ button::-moz-focus-inner {
170
+ border-style: none;
171
+ padding: 0
172
+ }
173
+ [type=button]:-moz-focusring,
174
+ [type=reset]:-moz-focusring,
175
+ [type=submit]:-moz-focusring,
176
+ button:-moz-focusring {
177
+ outline: 1px dotted ButtonText
178
+ }
179
+ fieldset {
180
+ padding: .35em .75em .625em
181
+ }
182
+ legend {
183
+ box-sizing: border-box;
184
+ color: inherit;
185
+ display: table;
186
+ max-width: 100%;
187
+ padding: 0;
188
+ white-space: normal
189
+ }
190
+ progress {
191
+ display: inline-block;
192
+ vertical-align: baseline
193
+ }
194
+ textarea {
195
+ overflow: auto
196
+ }
197
+ [type=checkbox],
198
+ [type=radio] {
199
+ box-sizing: border-box;
200
+ padding: 0
201
+ }
202
+ [type=number]::-webkit-inner-spin-button,
203
+ [type=number]::-webkit-outer-spin-button {
204
+ height: auto
205
+ }
206
+ [type=search] {
207
+ -webkit-appearance: textfield;
208
+ outline-offset: -2px
209
+ }
210
+ [type=search]::-webkit-search-cancel-button,
211
+ [type=search]::-webkit-search-decoration {
212
+ -webkit-appearance: none
213
+ }
214
+ ::-webkit-file-upload-button {
215
+ -webkit-appearance: button;
216
+ font: inherit
217
+ }
218
+ details,
219
+ menu {
220
+ display: block
221
+ }
222
+ summary {
223
+ display: list-item
224
+ }
225
+ canvas {
226
+ display: inline-block
227
+ }
228
+ template {
229
+ display: none
230
+ }
231
+ [hidden] {
232
+ display: none
233
+ }
234
+ html {
235
+ box-sizing: border-box
236
+ }
237
+ *,
238
+ :after,
239
+ :before {
240
+ box-sizing: inherit
241
+ }
242
+ .container {
243
+ margin: 0 auto;
244
+ max-width: 960px;
245
+ position: relative;
246
+ width: 100%
247
+ }
248
+ @media only screen and (max-width:992px) {
249
+ .container {
250
+ width: 85%
251
+ }
252
+ }
253
+ @media only screen and (max-width:480px) {
254
+ .container {
255
+ width: 90%
256
+ }
257
+ }
258
+ .section {
259
+ margin-bottom: 2rem;
260
+ margin-top: 1rem;
261
+ word-wrap: break-word
262
+ }
263
+ .section::after {
264
+ color: #8f8d89;
265
+ content: '~~~';
266
+ display: block;
267
+ font-size: 1.5rem;
268
+ position: relative;
269
+ text-align: center
270
+ }
271
+ hr {
272
+ border: 0
273
+ }
274
+ hr::after {
275
+ color: #8f8d89;
276
+ content: '~~~';
277
+ display: block;
278
+ font-size: 1.5rem;
279
+ position: relative;
280
+ text-align: center;
281
+ top: -.75rem
282
+ }
283
+ .paper {
284
+ background-color: #fff;
285
+ border: 1px solid #c1c0bd;
286
+ box-shadow: -1px 5px 35px -9px rgba(0,0,0,.2);
287
+ margin-bottom: 1rem;
288
+ margin-top: 1rem;
289
+ padding: 2rem
290
+ }
291
+ @media only screen and (max-width:480px) {
292
+ .paper {
293
+ margin-bottom: 0;
294
+ margin-top: 0;
295
+ padding: 1rem;
296
+ width: 100%
297
+ }
298
+ }
299
+ .row {
300
+ display: flex;
301
+ flex-flow: row wrap;
302
+ margin-bottom: 1rem;
303
+ margin-left: auto;
304
+ margin-right: auto
305
+ }
306
+ .row.flex-right {
307
+ justify-content: flex-end
308
+ }
309
+ .row.flex-center {
310
+ justify-content: center
311
+ }
312
+ .row.flex-edges {
313
+ justify-content: space-between
314
+ }
315
+ .row.flex-spaces {
316
+ justify-content: space-around
317
+ }
318
+ .row.flex-top {
319
+ align-items: flex-start
320
+ }
321
+ .row.flex-middle {
322
+ align-items: center
323
+ }
324
+ .row.flex-bottom {
325
+ align-items: flex-end
326
+ }
327
+ .col {
328
+ padding: 1rem
329
+ }
330
+ @media only screen and (max-width:768px) {
331
+ .col {
332
+ flex: 0 0 100%;
333
+ max-width: 100%
334
+ }
335
+ }
336
+ .col-fill {
337
+ flex: 1 1 0;
338
+ width: auto
339
+ }
340
+ @media only screen and (min-width:0) {
341
+ .col-1 {
342
+ flex: 0 0 8.33333%;
343
+ max-width: 8.33333%
344
+ }
345
+ .col-2 {
346
+ flex: 0 0 16.66667%;
347
+ max-width: 16.66667%
348
+ }
349
+ .col-3 {
350
+ flex: 0 0 25%;
351
+ max-width: 25%
352
+ }
353
+ .col-4 {
354
+ flex: 0 0 33.33333%;
355
+ max-width: 33.33333%
356
+ }
357
+ .col-5 {
358
+ flex: 0 0 41.66667%;
359
+ max-width: 41.66667%
360
+ }
361
+ .col-6 {
362
+ flex: 0 0 50%;
363
+ max-width: 50%
364
+ }
365
+ .col-7 {
366
+ flex: 0 0 58.33333%;
367
+ max-width: 58.33333%
368
+ }
369
+ .col-8 {
370
+ flex: 0 0 66.66667%;
371
+ max-width: 66.66667%
372
+ }
373
+ .col-9 {
374
+ flex: 0 0 75%;
375
+ max-width: 75%
376
+ }
377
+ .col-10 {
378
+ flex: 0 0 83.33333%;
379
+ max-width: 83.33333%
380
+ }
381
+ .col-11 {
382
+ flex: 0 0 91.66667%;
383
+ max-width: 91.66667%
384
+ }
385
+ .col-12 {
386
+ flex: 0 0 100%;
387
+ max-width: 100%
388
+ }
389
+ }
390
+ @media only screen and (min-width:480px) {
391
+ .xs-1 {
392
+ flex: 0 0 8.33333%;
393
+ max-width: 8.33333%
394
+ }
395
+ .xs-2 {
396
+ flex: 0 0 16.66667%;
397
+ max-width: 16.66667%
398
+ }
399
+ .xs-3 {
400
+ flex: 0 0 25%;
401
+ max-width: 25%
402
+ }
403
+ .xs-4 {
404
+ flex: 0 0 33.33333%;
405
+ max-width: 33.33333%
406
+ }
407
+ .xs-5 {
408
+ flex: 0 0 41.66667%;
409
+ max-width: 41.66667%
410
+ }
411
+ .xs-6 {
412
+ flex: 0 0 50%;
413
+ max-width: 50%
414
+ }
415
+ .xs-7 {
416
+ flex: 0 0 58.33333%;
417
+ max-width: 58.33333%
418
+ }
419
+ .xs-8 {
420
+ flex: 0 0 66.66667%;
421
+ max-width: 66.66667%
422
+ }
423
+ .xs-9 {
424
+ flex: 0 0 75%;
425
+ max-width: 75%
426
+ }
427
+ .xs-10 {
428
+ flex: 0 0 83.33333%;
429
+ max-width: 83.33333%
430
+ }
431
+ .xs-11 {
432
+ flex: 0 0 91.66667%;
433
+ max-width: 91.66667%
434
+ }
435
+ .xs-12 {
436
+ flex: 0 0 100%;
437
+ max-width: 100%
438
+ }
439
+ }
440
+ @media only screen and (min-width:768px) {
441
+ .sm-1 {
442
+ flex: 0 0 8.33333%;
443
+ max-width: 8.33333%
444
+ }
445
+ .sm-2 {
446
+ flex: 0 0 16.66667%;
447
+ max-width: 16.66667%
448
+ }
449
+ .sm-3 {
450
+ flex: 0 0 25%;
451
+ max-width: 25%
452
+ }
453
+ .sm-4 {
454
+ flex: 0 0 33.33333%;
455
+ max-width: 33.33333%
456
+ }
457
+ .sm-5 {
458
+ flex: 0 0 41.66667%;
459
+ max-width: 41.66667%
460
+ }
461
+ .sm-6 {
462
+ flex: 0 0 50%;
463
+ max-width: 50%
464
+ }
465
+ .sm-7 {
466
+ flex: 0 0 58.33333%;
467
+ max-width: 58.33333%
468
+ }
469
+ .sm-8 {
470
+ flex: 0 0 66.66667%;
471
+ max-width: 66.66667%
472
+ }
473
+ .sm-9 {
474
+ flex: 0 0 75%;
475
+ max-width: 75%
476
+ }
477
+ .sm-10 {
478
+ flex: 0 0 83.33333%;
479
+ max-width: 83.33333%
480
+ }
481
+ .sm-11 {
482
+ flex: 0 0 91.66667%;
483
+ max-width: 91.66667%
484
+ }
485
+ .sm-12 {
486
+ flex: 0 0 100%;
487
+ max-width: 100%
488
+ }
489
+ }
490
+ @media only screen and (min-width:992px) {
491
+ .md-1 {
492
+ flex: 0 0 8.33333%;
493
+ max-width: 8.33333%
494
+ }
495
+ .md-2 {
496
+ flex: 0 0 16.66667%;
497
+ max-width: 16.66667%
498
+ }
499
+ .md-3 {
500
+ flex: 0 0 25%;
501
+ max-width: 25%
502
+ }
503
+ .md-4 {
504
+ flex: 0 0 33.33333%;
505
+ max-width: 33.33333%
506
+ }
507
+ .md-5 {
508
+ flex: 0 0 41.66667%;
509
+ max-width: 41.66667%
510
+ }
511
+ .md-6 {
512
+ flex: 0 0 50%;
513
+ max-width: 50%
514
+ }
515
+ .md-7 {
516
+ flex: 0 0 58.33333%;
517
+ max-width: 58.33333%
518
+ }
519
+ .md-8 {
520
+ flex: 0 0 66.66667%;
521
+ max-width: 66.66667%
522
+ }
523
+ .md-9 {
524
+ flex: 0 0 75%;
525
+ max-width: 75%
526
+ }
527
+ .md-10 {
528
+ flex: 0 0 83.33333%;
529
+ max-width: 83.33333%
530
+ }
531
+ .md-11 {
532
+ flex: 0 0 91.66667%;
533
+ max-width: 91.66667%
534
+ }
535
+ .md-12 {
536
+ flex: 0 0 100%;
537
+ max-width: 100%
538
+ }
539
+ }
540
+ @media only screen and (min-width:1200px) {
541
+ .lg-1 {
542
+ flex: 0 0 8.33333%;
543
+ max-width: 8.33333%
544
+ }
545
+ .lg-2 {
546
+ flex: 0 0 16.66667%;
547
+ max-width: 16.66667%
548
+ }
549
+ .lg-3 {
550
+ flex: 0 0 25%;
551
+ max-width: 25%
552
+ }
553
+ .lg-4 {
554
+ flex: 0 0 33.33333%;
555
+ max-width: 33.33333%
556
+ }
557
+ .lg-5 {
558
+ flex: 0 0 41.66667%;
559
+ max-width: 41.66667%
560
+ }
561
+ .lg-6 {
562
+ flex: 0 0 50%;
563
+ max-width: 50%
564
+ }
565
+ .lg-7 {
566
+ flex: 0 0 58.33333%;
567
+ max-width: 58.33333%
568
+ }
569
+ .lg-8 {
570
+ flex: 0 0 66.66667%;
571
+ max-width: 66.66667%
572
+ }
573
+ .lg-9 {
574
+ flex: 0 0 75%;
575
+ max-width: 75%
576
+ }
577
+ .lg-10 {
578
+ flex: 0 0 83.33333%;
579
+ max-width: 83.33333%
580
+ }
581
+ .lg-11 {
582
+ flex: 0 0 91.66667%;
583
+ max-width: 91.66667%
584
+ }
585
+ .lg-12 {
586
+ flex: 0 0 100%;
587
+ max-width: 100%
588
+ }
589
+ }
590
+ .align-top {
591
+ align-self: flex-start
592
+ }
593
+ .align-middle {
594
+ align-self: center
595
+ }
596
+ .align-bottom {
597
+ align-self: flex-end
598
+ }
599
+ .container {
600
+ margin: 0 auto;
601
+ max-width: 960px;
602
+ position: relative;
603
+ width: 100%
604
+ }
605
+ @media only screen and (max-width:992px) {
606
+ .container {
607
+ width: 85%
608
+ }
609
+ }
610
+ @media only screen and (max-width:480px) {
611
+ .container {
612
+ width: 90%
613
+ }
614
+ }
615
+ code {
616
+ background-color: #f2f2f2;
617
+ border-radius: 3px;
618
+ color: #0071de;
619
+ font-size: 80%;
620
+ padding: 2px 4px
621
+ }
622
+ kbd {
623
+ background-color: #41403e;
624
+ border-radius: 3px;
625
+ color: #fff;
626
+ font-size: 80%;
627
+ padding: 2px 4px
628
+ }
629
+ pre {
630
+ background-color: #fafafa;
631
+ border: 1px solid #c1c0bd;
632
+ border-radius: 3px;
633
+ color: #41403e;
634
+ display: block;
635
+ font-size: 80%;
636
+ line-height: 1.5;
637
+ overflow-x: auto;
638
+ padding: 1em;
639
+ white-space: pre;
640
+ word-break: break-all;
641
+ word-wrap: break-word
642
+ }
643
+ pre code {
644
+ background: 0 0;
645
+ color: inherit;
646
+ display: block;
647
+ font-size: inherit;
648
+ padding: initial;
649
+ white-space: pre
650
+ }
651
+ html {
652
+ color: #41403e;
653
+ font-family: Neucha,sans-serif;
654
+ font-size: 20px
655
+ }
656
+ a,
657
+ button,
658
+ input,
659
+ option,
660
+ p,
661
+ select,
662
+ table,
663
+ tbody,
664
+ td,
665
+ textarea,
666
+ th,
667
+ thead,
668
+ tr {
669
+ font-family: Neucha,sans-serif
670
+ }
671
+ h1,
672
+ h2,
673
+ h3,
674
+ h4,
675
+ h5,
676
+ h6 {
677
+ // font-family: "Patrick Hand SC",sans-serif;
678
+ // The "Patrick Hand SC" font can be confused cause it only has upper case letters (Coink)
679
+ font-family: Neucha,sans-serif;
680
+ font-weight: 400
681
+ }
682
+ h1 {
683
+ font-size: 4rem
684
+ }
685
+ h2 {
686
+ font-size: 3rem
687
+ }
688
+ h3 {
689
+ font-size: 2rem
690
+ }
691
+ h4 {
692
+ font-size: 1.5rem
693
+ }
694
+ h5 {
695
+ font-size: 1rem
696
+ }
697
+ h6 {
698
+ font-size: .8rem
699
+ }
700
+ .text-left {
701
+ text-align: left
702
+ }
703
+ .text-center {
704
+ text-align: center
705
+ }
706
+ .text-right {
707
+ text-align: right
708
+ }
709
+ img {
710
+ border-bottom-left-radius: 15px 255px;
711
+ border-bottom-right-radius: 225px 15px;
712
+ border-top-left-radius: 255px 15px;
713
+ border-top-right-radius: 15px 225px;
714
+ border: 2px solid #41403e;
715
+ display: block;
716
+ height: auto;
717
+ max-width: 100%
718
+ }
719
+ img.float-left {
720
+ float: left;
721
+ margin: 1rem 1rem 1rem 0
722
+ }
723
+ img.float-right {
724
+ float: right;
725
+ margin: 1rem 0 1rem 1rem
726
+ }
727
+ img.no-responsive {
728
+ display: initial;
729
+ height: initial;
730
+ max-width: initial
731
+ }
732
+ img.no-border {
733
+ border: 0;
734
+ border-radius: 0
735
+ }
736
+ ol {
737
+ list-style-type: decimal
738
+ }
739
+ ol ol {
740
+ list-style-type: upper-alpha
741
+ }
742
+ ol ol ol {
743
+ list-style-type: upper-roman
744
+ }
745
+ ol ol ol ol {
746
+ list-style-type: lower-alpha
747
+ }
748
+ ol ol ol ol ol {
749
+ list-style-type: lower-roman
750
+ }
751
+ ul {
752
+ list-style: none;
753
+ margin-left: 0
754
+ }
755
+ ul li::before {
756
+ content: "-"
757
+ }
758
+ ul li {
759
+ text-indent: -7px
760
+ }
761
+ ul li .badge,
762
+ ul li [popover-bottom]::after,
763
+ ul li [popover-left]::after,
764
+ ul li [popover-right]::after,
765
+ ul li [popover-top]::after {
766
+ text-indent: 0
767
+ }
768
+ ul li::before {
769
+ left: -7px;
770
+ position: relative
771
+ }
772
+ ul ul li::before {
773
+ content: "+"
774
+ }
775
+ ul ul ul li::before {
776
+ content: "~"
777
+ }
778
+ ul ul ul ul li::before {
779
+ content: "⤍"
780
+ }
781
+ ul ul ul ul ul li::before {
782
+ content: "⁎"
783
+ }
784
+ ul.inline li {
785
+ display: inline;
786
+ margin-left: 5px
787
+ }
788
+ table {
789
+ box-sizing: border-box;
790
+ max-width: 100%;
791
+ overflow-x: auto;
792
+ width: 100%
793
+ }
794
+ @media only screen and (max-width:480px) {
795
+ table thead tr th {
796
+ padding: 2%
797
+ }
798
+ table tbody tr td {
799
+ padding: 2%
800
+ }
801
+ }
802
+ table thead tr th {
803
+ line-height: 1.5;
804
+ padding: 8px;
805
+ text-align: left;
806
+ vertical-align: bottom
807
+ }
808
+ table tbody tr td {
809
+ border-top: 1px dashed #d9d9d8;
810
+ line-height: 1.5;
811
+ padding: 8px;
812
+ vertical-align: top
813
+ }
814
+ table.table-hover tbody tr:hover {
815
+ color: #0071de
816
+ }
817
+ table.table-alternating tbody tr:nth-of-type(even) {
818
+ color: #82807c
819
+ }
820
+ .border {
821
+ border: 2px solid #41403e
822
+ }
823
+ .border,
824
+ .border-1,
825
+ .child-borders > :nth-child(6n+1) {
826
+ border-bottom-left-radius: 15px 255px;
827
+ border-bottom-right-radius: 225px 15px;
828
+ border-top-left-radius: 255px 15px;
829
+ border-top-right-radius: 15px 225px
830
+ }
831
+ .border-2,
832
+ .child-borders > :nth-child(6n+2) {
833
+ border-bottom-left-radius: 185px 25px;
834
+ border-bottom-right-radius: 20px 205px;
835
+ border-top-left-radius: 125px 25px;
836
+ border-top-right-radius: 10px 205px
837
+ }
838
+ .border-3,
839
+ .child-borders > :nth-child(6n+3) {
840
+ border-bottom-left-radius: 225px 15px;
841
+ border-bottom-right-radius: 15px 255px;
842
+ border-top-left-radius: 15px 225px;
843
+ border-top-right-radius: 255px 15px
844
+ }
845
+ .border-4,
846
+ .child-borders > :nth-child(6n+4) {
847
+ border-bottom-left-radius: 25px 115px;
848
+ border-bottom-right-radius: 155px 25px;
849
+ border-top-left-radius: 15px 225px;
850
+ border-top-right-radius: 25px 150px
851
+ }
852
+ .border-5,
853
+ .child-borders > :nth-child(6n+5) {
854
+ border-bottom-left-radius: 20px 115px;
855
+ border-bottom-right-radius: 15px 105px;
856
+ border-top-left-radius: 250px 15px;
857
+ border-top-right-radius: 25px 80px
858
+ }
859
+ .border-6,
860
+ .child-borders > :nth-child(6n+6) {
861
+ border-bottom-left-radius: 15px 225px;
862
+ border-bottom-right-radius: 20px 205px;
863
+ border-top-left-radius: 28px 125px;
864
+ border-top-right-radius: 100px 30px
865
+ }
866
+ .child-borders > * {
867
+ border: 2px solid #41403e
868
+ }
869
+ .border-white {
870
+ border-color: #fff
871
+ }
872
+ .border-dotted {
873
+ border-style: dotted
874
+ }
875
+ .border-dashed {
876
+ border-style: dashed
877
+ }
878
+ .border-thick {
879
+ border-width: 5px
880
+ }
881
+ .border-primary {
882
+ border-color: #41403e
883
+ }
884
+ .border-secondary {
885
+ border-color: #0071de
886
+ }
887
+ .border-success {
888
+ border-color: #86a361
889
+ }
890
+ .border-warning {
891
+ border-color: #ddcd45
892
+ }
893
+ .border-danger {
894
+ border-color: #a7342d
895
+ }
896
+ .border-muted {
897
+ border-color: #868e96
898
+ }
899
+ .shadow {
900
+ transition: all 235ms ease 0s;
901
+ box-shadow: 15px 28px 25px -18px rgba(0,0,0,.2)
902
+ }
903
+ .shadow.shadow-large {
904
+ transition: all 235ms ease 0s;
905
+ box-shadow: 20px 38px 34px -26px rgba(0,0,0,.2)
906
+ }
907
+ .shadow.shadow-small {
908
+ transition: all 235ms ease 0s;
909
+ box-shadow: 10px 19px 17px -13px rgba(0,0,0,.2)
910
+ }
911
+ .shadow.shadow-hover:hover {
912
+ -webkit-transform: translate3d(0,2px,0);
913
+ transform: translate3d(0,2px,0);
914
+ box-shadow: 2px 8px 8px -5px rgba(0,0,0,.3)
915
+ }
916
+ .child-shadows > * {
917
+ transition: all 235ms ease 0s;
918
+ box-shadow: 15px 28px 25px -18px rgba(0,0,0,.2)
919
+ }
920
+ .child-shadows-hover > * {
921
+ transition: all 235ms ease 0s;
922
+ box-shadow: 15px 28px 25px -18px rgba(0,0,0,.2)
923
+ }
924
+ .child-shadows-hover > :hover {
925
+ -webkit-transform: translate3d(0,2px,0);
926
+ transform: translate3d(0,2px,0);
927
+ box-shadow: 2px 8px 8px -5px rgba(0,0,0,.3)
928
+ }
929
+ .collapsible {
930
+ display: flex;
931
+ flex-direction: column
932
+ }
933
+ .collapsible:nth-of-type(1) {
934
+ border-top: 1px solid #e6e7e9
935
+ }
936
+ .collapsible .collapsible-body {
937
+ transition: all 235ms ease-in-out 0s;
938
+ background-color: rgba(204,204,204,.03);
939
+ border-bottom: 1px solid #e6e7e9;
940
+ margin: 0;
941
+ max-height: 0;
942
+ opacity: 0;
943
+ overflow: hidden;
944
+ padding: 0 .75rem
945
+ }
946
+ .collapsible input {
947
+ display: none
948
+ }
949
+ .collapsible input:checked + label {
950
+ color: #41403e
951
+ }
952
+ .collapsible input[id^=collapsible]:checked ~ div.collapsible-body {
953
+ margin: 0;
954
+ max-height: 960px;
955
+ opacity: 1;
956
+ padding: .75rem
957
+ }
958
+ .collapsible label {
959
+ border-bottom: 1px solid #e6e7e9;
960
+ color: #41403e;
961
+ display: inline-block;
962
+ font-weight: 600;
963
+ margin: 0 0 -1px;
964
+ padding: .75rem;
965
+ text-align: center
966
+ }
967
+ .collapsible label:hover {
968
+ color: #868e96;
969
+ cursor: pointer
970
+ }
971
+ .alert {
972
+ border-bottom-left-radius: 15px 255px;
973
+ border-bottom-right-radius: 225px 15px;
974
+ border-top-left-radius: 255px 15px;
975
+ border-top-right-radius: 15px 225px;
976
+ border: 2px solid #41403e;
977
+ margin-bottom: 20px;
978
+ padding: 15px;
979
+ width: 100%
980
+ }
981
+ .alert.dismissible {
982
+ transition: all 235ms ease-in-out 0s;
983
+ display: flex;
984
+ justify-content: space-between;
985
+ max-height: 48rem;
986
+ overflow: hidden
987
+ }
988
+ .alert .btn-close {
989
+ transition: all 235ms ease-in-out 0s;
990
+ color: #5b5a57;
991
+ cursor: pointer;
992
+ margin-left: .75rem
993
+ }
994
+ .alert .btn-close:active,
995
+ .alert .btn-close:focus,
996
+ .alert .btn-close:hover {
997
+ color: #272625
998
+ }
999
+ .alert-primary {
1000
+ background-color: #c1c0bd;
1001
+ border-color: #41403e;
1002
+ color: #41403e
1003
+ }
1004
+ .alert-primary .btn-close {
1005
+ color: #5b5a57
1006
+ }
1007
+ .alert-primary .btn-close:active,
1008
+ .alert-primary .btn-close:focus,
1009
+ .alert-primary .btn-close:hover {
1010
+ color: #272625
1011
+ }
1012
+ .alert-secondary {
1013
+ background-color: #deefff;
1014
+ border-color: #0071de;
1015
+ color: #0071de
1016
+ }
1017
+ .alert-secondary .btn-close {
1018
+ color: #128bff
1019
+ }
1020
+ .alert-secondary .btn-close:active,
1021
+ .alert-secondary .btn-close:focus,
1022
+ .alert-secondary .btn-close:hover {
1023
+ color: #0057ab
1024
+ }
1025
+ .alert-success {
1026
+ background-color: #d0dbc2;
1027
+ border-color: #86a361;
1028
+ color: #86a361
1029
+ }
1030
+ .alert-success .btn-close {
1031
+ color: #9fb681
1032
+ }
1033
+ .alert-success .btn-close:active,
1034
+ .alert-success .btn-close:focus,
1035
+ .alert-success .btn-close:hover {
1036
+ color: #6c844d
1037
+ }
1038
+ .alert-warning {
1039
+ background-color: #f5f0c6;
1040
+ border-color: #ddcd45;
1041
+ color: #ddcd45
1042
+ }
1043
+ .alert-warning .btn-close {
1044
+ color: #e5d970
1045
+ }
1046
+ .alert-warning .btn-close:active,
1047
+ .alert-warning .btn-close:focus,
1048
+ .alert-warning .btn-close:hover {
1049
+ color: #cab925
1050
+ }
1051
+ .alert-danger {
1052
+ background-color: #f0cbc9;
1053
+ border-color: #a7342d;
1054
+ color: #a7342d
1055
+ }
1056
+ .alert-danger .btn-close {
1057
+ color: #cb453c
1058
+ }
1059
+ .alert-danger .btn-close:active,
1060
+ .alert-danger .btn-close:focus,
1061
+ .alert-danger .btn-close:hover {
1062
+ color: #7f2722
1063
+ }
1064
+ .alert-muted {
1065
+ background-color: #e6e7e9;
1066
+ border-color: #868e96;
1067
+ color: #868e96
1068
+ }
1069
+ .alert-muted .btn-close {
1070
+ color: #a1a8ae
1071
+ }
1072
+ .alert-muted .btn-close:active,
1073
+ .alert-muted .btn-close:focus,
1074
+ .alert-muted .btn-close:hover {
1075
+ color: #6c757d
1076
+ }
1077
+ .alert-state {
1078
+ display: none
1079
+ }
1080
+ .alert-state:checked + .dismissible {
1081
+ border-width: 0;
1082
+ margin: 0;
1083
+ max-height: 0;
1084
+ opacity: 0;
1085
+ padding-bottom: 0;
1086
+ padding-top: 0
1087
+ }
1088
+ article .article-title {
1089
+ font-size: 3rem
1090
+ }
1091
+ article .article-meta {
1092
+ color: #868e96;
1093
+ font-size: 15px
1094
+ }
1095
+ article .article-meta a {
1096
+ background-image: none;
1097
+ color: #41403e
1098
+ }
1099
+ article .article-meta a:hover {
1100
+ color: rgba(0,0,0,.7)
1101
+ }
1102
+ article .text-lead {
1103
+ font-size: 30px;
1104
+ line-height: 1.3;
1105
+ margin: 35px
1106
+ }
1107
+ article button:not(:first-of-type) {
1108
+ margin-left: 2rem
1109
+ }
1110
+ @media only screen and (max-width:480px) {
1111
+ article button:not(:first-of-type) {
1112
+ margin-left: 0
1113
+ }
1114
+ }
1115
+ article p {
1116
+ line-height: 1.6
1117
+ }
1118
+ .badge {
1119
+ border-bottom-left-radius: 15px 255px;
1120
+ border-bottom-right-radius: 225px 15px;
1121
+ border-top-left-radius: 255px 15px;
1122
+ border-top-right-radius: 15px 225px;
1123
+ background-color: #868e96;
1124
+ border: 2px solid #41403e;
1125
+ border-color: transparent;
1126
+ color: #fff;
1127
+ display: inline-block;
1128
+ font-size: 75%;
1129
+ font-weight: 700;
1130
+ line-height: 1;
1131
+ padding: .25em .4em;
1132
+ text-align: center;
1133
+ vertical-align: baseline;
1134
+ white-space: nowrap
1135
+ }
1136
+ .badge.primary {
1137
+ background-color: #41403e
1138
+ }
1139
+ .badge.secondary {
1140
+ background-color: #0071de
1141
+ }
1142
+ .badge.success {
1143
+ background-color: #86a361
1144
+ }
1145
+ .badge.warning {
1146
+ background-color: #ddcd45
1147
+ }
1148
+ .badge.danger {
1149
+ background-color: #a7342d
1150
+ }
1151
+ .badge.muted {
1152
+ background-color: #868e96
1153
+ }
1154
+ .paper-btn,
1155
+ [type=button],
1156
+ button {
1157
+ border-bottom-left-radius: 15px 255px;
1158
+ border-bottom-right-radius: 225px 15px;
1159
+ border-top-left-radius: 255px 15px;
1160
+ border-top-right-radius: 15px 225px;
1161
+ transition: all 235ms ease 0s;
1162
+ box-shadow: 15px 28px 25px -18px rgba(0,0,0,.2);
1163
+ transition: all 235ms ease-in-out 0s;
1164
+ align-self: center;
1165
+ background: 0 0;
1166
+ border: 2px solid #41403e;
1167
+ color: #41403e;
1168
+ cursor: pointer;
1169
+ display: inline-block;
1170
+ font-size: 1rem;
1171
+ outline: 0;
1172
+ padding: .75rem
1173
+ }
1174
+ @media only screen and (max-width:520px) {
1175
+ .paper-btn,
1176
+ [type=button],
1177
+ button {
1178
+ display: inline-block;
1179
+ margin: 0 auto;
1180
+ margin-bottom: 1rem;
1181
+ text-align: center
1182
+ }
1183
+ }
1184
+ .paper-btn.btn-large,
1185
+ [type=button].btn-large,
1186
+ button.btn-large {
1187
+ transition: all 235ms ease 0s;
1188
+ box-shadow: 20px 38px 34px -26px rgba(0,0,0,.2);
1189
+ font-size: 2rem;
1190
+ padding: 1rem
1191
+ }
1192
+ .paper-btn.btn-small,
1193
+ [type=button].btn-small,
1194
+ button.btn-small {
1195
+ transition: all 235ms ease 0s;
1196
+ box-shadow: 10px 19px 17px -13px rgba(0,0,0,.2);
1197
+ font-size: .75rem;
1198
+ padding: .5rem
1199
+ }
1200
+ .paper-btn.btn-block,
1201
+ [type=button].btn-block,
1202
+ button.btn-block {
1203
+ display: block;
1204
+ width: 100%
1205
+ }
1206
+ .paper-btn:hover,
1207
+ [type=button]:hover,
1208
+ button:hover {
1209
+ -webkit-transform: translate3d(0,2px,0);
1210
+ transform: translate3d(0,2px,0);
1211
+ box-shadow: 2px 8px 8px -5px rgba(0,0,0,.3)
1212
+ }
1213
+ .paper-btn:focus,
1214
+ [type=button]:focus,
1215
+ button:focus {
1216
+ border: 2px solid #0071de;
1217
+ box-shadow: 2px 8px 4px -6px rgba(0,0,0,.3)
1218
+ }
1219
+ .paper-btn:active,
1220
+ [type=button]:active,
1221
+ button:active {
1222
+ border-color: rgba(0,0,0,.2);
1223
+ transition: none
1224
+ }
1225
+ .paper-btn.disabled,
1226
+ .paper-btn[disabled],
1227
+ [type=button].disabled,
1228
+ [type=button][disabled],
1229
+ button.disabled,
1230
+ button[disabled],
1231
+ input.paper-btn[disabled],
1232
+ input[type=button][disabled],
1233
+ select.paper-btn[disabled],
1234
+ select[type=button][disabled],
1235
+ textarea.paper-btn[disabled],
1236
+ textarea[type=button][disabled] {
1237
+ cursor: not-allowed;
1238
+ opacity: .5
1239
+ }
1240
+ a {
1241
+ background-image: linear-gradient(5deg,transparent 65%,#0071de 80%,transparent 90%),linear-gradient(165deg,transparent 5%,#0071de 15%,transparent 25%),linear-gradient(165deg,transparent 45%,#0071de 55%,transparent 65%),linear-gradient(15deg,transparent 25%,#0071de 35%,transparent 50%);
1242
+ background-position: 0 90%;
1243
+ background-repeat: repeat-x;
1244
+ background-size: 4px 3px;
1245
+ text-decoration: none
1246
+ }
1247
+ a:visited {
1248
+ color: #41403e;
1249
+ text-decoration: none
1250
+ }
1251
+ .alert-primary {
1252
+ background-color: #c1c0bd;
1253
+ border-color: #41403e;
1254
+ color: #41403e
1255
+ }
1256
+ .paper-btn.btn-primary,
1257
+ [type=button].btn-primary,
1258
+ button.btn-primary {
1259
+ background-color: #c1c0bd;
1260
+ border-color: #41403e;
1261
+ color: #fff
1262
+ }
1263
+ .paper-btn.btn-primary:hover:active,
1264
+ [type=button].btn-primary:hover:active,
1265
+ button.btn-primary:hover:active {
1266
+ background-color: #a8a6a3
1267
+ }
1268
+ .alert-secondary {
1269
+ background-color: #deefff;
1270
+ border-color: #0071de;
1271
+ color: #0071de
1272
+ }
1273
+ .paper-btn.btn-secondary,
1274
+ [type=button].btn-secondary,
1275
+ button.btn-secondary {
1276
+ background-color: #deefff;
1277
+ border-color: #0071de;
1278
+ color: #41403e
1279
+ }
1280
+ .paper-btn.btn-secondary:hover:active,
1281
+ [type=button].btn-secondary:hover:active,
1282
+ button.btn-secondary:hover:active {
1283
+ background-color: #abd6ff
1284
+ }
1285
+ .alert-success {
1286
+ background-color: #d0dbc2;
1287
+ border-color: #86a361;
1288
+ color: #86a361
1289
+ }
1290
+ .paper-btn.btn-success,
1291
+ [type=button].btn-success,
1292
+ button.btn-success {
1293
+ background-color: #d0dbc2;
1294
+ border-color: #86a361;
1295
+ color: #41403e
1296
+ }
1297
+ .paper-btn.btn-success:hover:active,
1298
+ [type=button].btn-success:hover:active,
1299
+ button.btn-success:hover:active {
1300
+ background-color: #b7c9a1
1301
+ }
1302
+ .alert-warning {
1303
+ background-color: #f5f0c6;
1304
+ border-color: #ddcd45;
1305
+ color: #ddcd45
1306
+ }
1307
+ .paper-btn.btn-warning,
1308
+ [type=button].btn-warning,
1309
+ button.btn-warning {
1310
+ background-color: #f5f0c6;
1311
+ border-color: #ddcd45;
1312
+ color: #41403e
1313
+ }
1314
+ .paper-btn.btn-warning:hover:active,
1315
+ [type=button].btn-warning:hover:active,
1316
+ button.btn-warning:hover:active {
1317
+ background-color: #ede49b
1318
+ }
1319
+ .alert-danger {
1320
+ background-color: #f0cbc9;
1321
+ border-color: #a7342d;
1322
+ color: #a7342d
1323
+ }
1324
+ .paper-btn.btn-danger,
1325
+ [type=button].btn-danger,
1326
+ button.btn-danger {
1327
+ background-color: #f0cbc9;
1328
+ border-color: #a7342d;
1329
+ color: #41403e
1330
+ }
1331
+ .paper-btn.btn-danger:hover:active,
1332
+ [type=button].btn-danger:hover:active,
1333
+ button.btn-danger:hover:active {
1334
+ background-color: #e6a5a1
1335
+ }
1336
+ .alert-muted {
1337
+ background-color: #e6e7e9;
1338
+ border-color: #868e96;
1339
+ color: #868e96
1340
+ }
1341
+ .paper-btn.btn-muted,
1342
+ [type=button].btn-muted,
1343
+ button.btn-muted {
1344
+ background-color: #e6e7e9;
1345
+ border-color: #868e96;
1346
+ color: #41403e
1347
+ }
1348
+ .paper-btn.btn-muted:hover:active,
1349
+ [type=button].btn-muted:hover:active,
1350
+ button.btn-muted:hover:active {
1351
+ background-color: #caced1
1352
+ }
1353
+ .card {
1354
+ transition: all 235ms ease 0s;
1355
+ box-shadow: 15px 28px 25px -18px rgba(0,0,0,.2);
1356
+ -webkit-backface-visibility: hidden;
1357
+ backface-visibility: hidden;
1358
+ border: 2px solid #e6e7e9;
1359
+ display: flex;
1360
+ flex-direction: column;
1361
+ position: relative;
1362
+ will-change: transform;
1363
+ word-wrap: break-word
1364
+ }
1365
+ .card:hover {
1366
+ -webkit-transform: translate3d(0,2px,0);
1367
+ transform: translate3d(0,2px,0);
1368
+ box-shadow: 2px 8px 8px -5px rgba(0,0,0,.3)
1369
+ }
1370
+ .card .card-footer,
1371
+ .card .card-header {
1372
+ background-color: rgba(0,0,0,.03);
1373
+ padding: .75rem 1.25rem
1374
+ }
1375
+ .card .card-header {
1376
+ border-bottom: 2px solid #e6e7e9
1377
+ }
1378
+ .card .card-footer {
1379
+ border-top: 2px solid #e6e7e9
1380
+ }
1381
+ .card .card-body {
1382
+ flex: 1 1 auto;
1383
+ padding: 1.25rem
1384
+ }
1385
+ .card .card-body .card-title,
1386
+ .card .card-body h4 {
1387
+ margin-bottom: .5rem;
1388
+ margin-top: 0
1389
+ }
1390
+ .card .card-body .card-subtitle,
1391
+ .card .card-body h5 {
1392
+ color: #0071de;
1393
+ margin-bottom: .5rem;
1394
+ margin-top: 0
1395
+ }
1396
+ .card .card-body .card-text,
1397
+ .card .card-body p {
1398
+ margin-bottom: 1rem;
1399
+ margin-top: 0
1400
+ }
1401
+ .card .card-body .card-link + .card-link,
1402
+ .card .card-body a + a {
1403
+ margin-left: 1.25rem
1404
+ }
1405
+ .card .image-bottom,
1406
+ .card .image-top,
1407
+ .card img {
1408
+ border: 0;
1409
+ border-radius: 0
1410
+ }
1411
+ input,
1412
+ select,
1413
+ textarea {
1414
+ background: 0 0;
1415
+ border: 2px solid #41403e;
1416
+ border-bottom-left-radius: 15px 255px;
1417
+ border-bottom-right-radius: 225px 15px;
1418
+ border-top-left-radius: 255px 15px;
1419
+ border-top-right-radius: 15px 225px;
1420
+ color: #41403e;
1421
+ display: block;
1422
+ font-size: 1rem;
1423
+ outline: 0;
1424
+ padding: .5rem
1425
+ }
1426
+ input:focus,
1427
+ select:focus,
1428
+ textarea:focus {
1429
+ border: 2px solid #0071de
1430
+ }
1431
+ select {
1432
+ height: 2.35rem
1433
+ }
1434
+ .disabled,
1435
+ input.disabled,
1436
+ input[disabled],
1437
+ select.disabled,
1438
+ select[disabled],
1439
+ textarea.disabled,
1440
+ textarea[disabled] {
1441
+ cursor: not-allowed;
1442
+ opacity: .5
1443
+ }
1444
+ .form-group {
1445
+ margin-bottom: 1rem
1446
+ }
1447
+ .form-group > label,
1448
+ .form-group legend {
1449
+ display: inline-block;
1450
+ margin-bottom: .5rem
1451
+ }
1452
+ .form-group .input-block {
1453
+ width: 100%
1454
+ }
1455
+ .form-group textarea {
1456
+ max-height: 90vh;
1457
+ max-width: 100%
1458
+ }
1459
+ .form-group textarea.no-resize {
1460
+ resize: none
1461
+ }
1462
+ .form-group .paper-check,
1463
+ .form-group .paper-radio {
1464
+ cursor: pointer;
1465
+ display: block;
1466
+ margin-bottom: .5rem
1467
+ }
1468
+ .form-group .paper-check input,
1469
+ .form-group .paper-radio input {
1470
+ border: 0;
1471
+ height: 1px;
1472
+ margin: -1px;
1473
+ opacity: 0;
1474
+ overflow: hidden;
1475
+ padding: 0;
1476
+ position: absolute;
1477
+ width: 1px
1478
+ }
1479
+ .form-group .paper-check input + span,
1480
+ .form-group .paper-radio input + span {
1481
+ display: block
1482
+ }
1483
+ .form-group .paper-check input + span::before,
1484
+ .form-group .paper-radio input + span::before {
1485
+ border: 2px solid #41403e;
1486
+ content: '';
1487
+ display: inline-block;
1488
+ height: 1rem;
1489
+ margin-right: .75em;
1490
+ position: relative;
1491
+ vertical-align: -.25em;
1492
+ width: 1rem
1493
+ }
1494
+ .form-group .paper-check input[type=radio] + span::before,
1495
+ .form-group .paper-radio input[type=radio] + span::before {
1496
+ border-bottom-left-radius: .7rem 1rem;
1497
+ border-bottom-right-radius: 1rem .9rem;
1498
+ border-top-left-radius: 1rem 1rem;
1499
+ border-top-right-radius: 1rem .6rem
1500
+ }
1501
+ .form-group .paper-check input[type=radio]:checked + span::before,
1502
+ .form-group .paper-radio input[type=radio]:checked + span::before {
1503
+ 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
1504
+ }
1505
+ .form-group .paper-check input[type=checkbox] + span::before,
1506
+ .form-group .paper-radio input[type=checkbox] + span::before {
1507
+ border-bottom-left-radius: 15px 255px;
1508
+ border-bottom-right-radius: 225px 15px;
1509
+ border-top-left-radius: 255px 15px;
1510
+ border-top-right-radius: 15px 225px
1511
+ }
1512
+ .form-group .paper-check input[type=checkbox]:checked + span::before,
1513
+ .form-group .paper-radio input[type=checkbox]:checked + span::before {
1514
+ 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'%230071de'%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
1515
+ }
1516
+ fieldset.form-group {
1517
+ border: 0;
1518
+ padding: 0
1519
+ }
1520
+ .modal {
1521
+ transition: opacity 235ms ease-in-out 0s;
1522
+ background: rgba(0,0,0,.6);
1523
+ bottom: 0;
1524
+ flex: 1 1 auto;
1525
+ left: 0;
1526
+ opacity: 0;
1527
+ position: fixed;
1528
+ right: 0;
1529
+ text-align: left;
1530
+ top: 0;
1531
+ visibility: hidden;
1532
+ word-wrap: break-word;
1533
+ z-index: 12
1534
+ }
1535
+ .modal-bg {
1536
+ bottom: 0;
1537
+ cursor: pointer;
1538
+ left: 0;
1539
+ position: absolute;
1540
+ right: 0;
1541
+ top: 0
1542
+ }
1543
+ .modal .modal-body {
1544
+ transition: all 235ms ease-in-out 0s;
1545
+ -webkit-backface-visibility: hidden;
1546
+ backface-visibility: hidden;
1547
+ background: #fff;
1548
+ border: 2px solid #e6e7e9;
1549
+ left: 50%;
1550
+ padding: 1.25rem;
1551
+ position: absolute;
1552
+ top: 0;
1553
+ -webkit-transform: translate(-50%,-50%);
1554
+ transform: translate(-50%,-50%)
1555
+ }
1556
+ @media only screen and (max-width:768px) {
1557
+ .modal .modal-body {
1558
+ box-sizing: border-box;
1559
+ width: 90%
1560
+ }
1561
+ }
1562
+ .modal .btn-close {
1563
+ transition: all 235ms ease-in-out 0s;
1564
+ color: #c1c0bd;
1565
+ cursor: pointer;
1566
+ font-size: 30px;
1567
+ height: 1.1rem;
1568
+ position: absolute;
1569
+ right: 1rem;
1570
+ text-decoration: none;
1571
+ top: 1rem;
1572
+ width: 1.1rem
1573
+ }
1574
+ .modal .btn-close:active,
1575
+ .modal .btn-close:focus,
1576
+ .modal .btn-close:hover {
1577
+ color: #41403e
1578
+ }
1579
+ .modal .modal-title,
1580
+ .modal h4 {
1581
+ margin-bottom: .5rem;
1582
+ margin-top: 0
1583
+ }
1584
+ .modal .modal-subtitle,
1585
+ .modal h5 {
1586
+ color: #0071de;
1587
+ margin-bottom: .5rem;
1588
+ margin-top: 0
1589
+ }
1590
+ .modal .modal-text,
1591
+ .modal p {
1592
+ margin-bottom: 1rem;
1593
+ margin-top: 0
1594
+ }
1595
+ .modal .modal-link + .modal-link,
1596
+ .modal a + a {
1597
+ margin-left: 1.25rem
1598
+ }
1599
+ .modal .paper-btn {
1600
+ background: #fff;
1601
+ display: inline-block;
1602
+ text-decoration: none
1603
+ }
1604
+ .modal .modal-link,
1605
+ .modal a {
1606
+ background-image: linear-gradient(5deg,transparent 65%,#0071de 80%,transparent 90%),linear-gradient(165deg,transparent 5%,#0071de 15%,transparent 25%),linear-gradient(165deg,transparent 45%,#0071de 55%,transparent 65%),linear-gradient(15deg,transparent 25%,#0071de 35%,transparent 50%);
1607
+ background-position: 0 90%;
1608
+ background-repeat: repeat-x;
1609
+ background-size: 4px 3px;
1610
+ cursor: pointer;
1611
+ text-decoration: none
1612
+ }
1613
+ .modal .modal-link:focus,
1614
+ .modal .modal-link:hover,
1615
+ .modal .modal-link:visited,
1616
+ .modal a:focus,
1617
+ .modal a:hover,
1618
+ .modal a:visited {
1619
+ color: #41403e;
1620
+ text-decoration: none
1621
+ }
1622
+ .modal-state {
1623
+ display: none
1624
+ }
1625
+ .modal-state:checked + .modal {
1626
+ opacity: 1;
1627
+ visibility: visible
1628
+ }
1629
+ .modal-state:checked + .modal .modal-body {
1630
+ top: 50%
1631
+ }
1632
+ [popover-bottom],
1633
+ [popover-left],
1634
+ [popover-right],
1635
+ [popover-top] {
1636
+ margin: 24px;
1637
+ position: relative
1638
+ }
1639
+ [popover-bottom]:hover::after,
1640
+ [popover-left]:hover::after,
1641
+ [popover-right]:hover::after,
1642
+ [popover-top]:hover::after {
1643
+ opacity: 1;
1644
+ transition: opacity .2s ease-out
1645
+ }
1646
+ [popover-bottom]::after,
1647
+ [popover-left]::after,
1648
+ [popover-right]::after,
1649
+ [popover-top]::after {
1650
+ border-bottom-left-radius: 15px 255px;
1651
+ border-bottom-right-radius: 225px 15px;
1652
+ border-top-left-radius: 255px 15px;
1653
+ border-top-right-radius: 15px 225px;
1654
+ transition: opacity 235ms ease-in-out 0s;
1655
+ background: rgba(0,0,0,.7);
1656
+ border: 2px solid #41403e;
1657
+ color: #fff;
1658
+ font-size: .7em;
1659
+ left: 50%;
1660
+ min-width: 80px;
1661
+ opacity: 0;
1662
+ padding: 4px 2px;
1663
+ position: absolute;
1664
+ text-align: center;
1665
+ top: -6px;
1666
+ -webkit-transform: translateX(-50%) translateY(-100%);
1667
+ transform: translateX(-50%) translateY(-100%)
1668
+ }
1669
+ [popover-left]::before {
1670
+ left: 0;
1671
+ margin-left: -12px;
1672
+ top: 50%;
1673
+ -webkit-transform: translateY(-50%) rotate(-90deg);
1674
+ transform: translateY(-50%) rotate(-90deg)
1675
+ }
1676
+ [popover-left]::after {
1677
+ content: attr(popover-left);
1678
+ left: 0;
1679
+ margin-left: -8px;
1680
+ top: 50%;
1681
+ -webkit-transform: translateX(-100%) translateY(-50%);
1682
+ transform: translateX(-100%) translateY(-50%)
1683
+ }
1684
+ [popover-right]::before {
1685
+ left: 100%;
1686
+ margin-left: 1px;
1687
+ top: 50%;
1688
+ -webkit-transform: translatey(-50%) rotate(90deg);
1689
+ transform: translatey(-50%) rotate(90deg)
1690
+ }
1691
+ [popover-right]::after {
1692
+ content: attr(popover-right);
1693
+ left: 100%;
1694
+ margin-left: 8px;
1695
+ top: 50%;
1696
+ -webkit-transform: translateX(0) translateY(-50%);
1697
+ transform: translateX(0) translateY(-50%)
1698
+ }
1699
+ [popover-top]::before {
1700
+ left: 50%
1701
+ }
1702
+ [popover-top]::after {
1703
+ content: attr(popover-top);
1704
+ left: 50%
1705
+ }
1706
+ [popover-bottom]::before {
1707
+ margin-top: 8px;
1708
+ top: 100%;
1709
+ -webkit-transform: translateX(-50%) translatey(-100%) rotate(-180deg);
1710
+ transform: translateX(-50%) translatey(-100%) rotate(-180deg)
1711
+ }
1712
+ [popover-bottom]::after {
1713
+ content: attr(popover-bottom);
1714
+ margin-top: 8px;
1715
+ top: 100%;
1716
+ -webkit-transform: translateX(-50%) translateY(0);
1717
+ transform: translateX(-50%) translateY(0)
1718
+ }
1719
+ .progress {
1720
+ border-bottom-left-radius: 20px 115px;
1721
+ border-bottom-right-radius: 15px 105px;
1722
+ border-top-left-radius: 250px 15px;
1723
+ border-top-right-radius: 25px 80px;
1724
+ border: 2px solid #41403e;
1725
+ box-shadow: 2px 8px 8px -5px rgba(0,0,0,.3);
1726
+ height: 1.2rem;
1727
+ overflow: hidden;
1728
+ width: 100%
1729
+ }
1730
+ .progress .bar {
1731
+ border-bottom-left-radius: 20px 115px;
1732
+ border-bottom-right-radius: 15px 105px;
1733
+ border-top-left-radius: 250px 15px;
1734
+ border-top-right-radius: 25px 80px;
1735
+ transition: all 235ms ease-in-out 0s;
1736
+ background-color: #c1c0bd;
1737
+ border-right: 2px solid #41403e;
1738
+ display: flex;
1739
+ flex-direction: column;
1740
+ font-size: .6rem;
1741
+ height: 100%;
1742
+ justify-content: center;
1743
+ text-align: center;
1744
+ width: 0%
1745
+ }
1746
+ .progress .bar.striped {
1747
+ background: repeating-linear-gradient(45deg,#c1c0bd,#c1c0bd .25rem,#a8a6a3 .25rem,#a8a6a3 .5rem)
1748
+ }
1749
+ .progress .bar.primary {
1750
+ background-color: #c1c0bd
1751
+ }
1752
+ .progress .bar.primary.striped {
1753
+ background: repeating-linear-gradient(45deg,#c1c0bd,#c1c0bd .25rem,#a8a6a3 .25rem,#a8a6a3 .5rem)
1754
+ }
1755
+ .progress .bar.secondary {
1756
+ background-color: #deefff
1757
+ }
1758
+ .progress .bar.secondary.striped {
1759
+ background: repeating-linear-gradient(45deg,#deefff,#deefff .25rem,#abd6ff .25rem,#abd6ff .5rem)
1760
+ }
1761
+ .progress .bar.success {
1762
+ background-color: #d0dbc2
1763
+ }
1764
+ .progress .bar.success.striped {
1765
+ background: repeating-linear-gradient(45deg,#d0dbc2,#d0dbc2 .25rem,#b7c9a1 .25rem,#b7c9a1 .5rem)
1766
+ }
1767
+ .progress .bar.warning {
1768
+ background-color: #f5f0c6
1769
+ }
1770
+ .progress .bar.warning.striped {
1771
+ background: repeating-linear-gradient(45deg,#f5f0c6,#f5f0c6 .25rem,#ede49b .25rem,#ede49b .5rem)
1772
+ }
1773
+ .progress .bar.danger {
1774
+ background-color: #f0cbc9
1775
+ }
1776
+ .progress .bar.danger.striped {
1777
+ background: repeating-linear-gradient(45deg,#f0cbc9,#f0cbc9 .25rem,#e6a5a1 .25rem,#e6a5a1 .5rem)
1778
+ }
1779
+ .progress .bar.muted {
1780
+ background-color: #e6e7e9
1781
+ }
1782
+ .progress .bar.muted.striped {
1783
+ background: repeating-linear-gradient(45deg,#e6e7e9,#e6e7e9 .25rem,#caced1 .25rem,#caced1 .5rem)
1784
+ }
1785
+ .progress .bar.w-0 {
1786
+ width: 0%
1787
+ }
1788
+ .progress .bar.w-1 {
1789
+ width: 1%
1790
+ }
1791
+ .progress .bar.w-2 {
1792
+ width: 2%
1793
+ }
1794
+ .progress .bar.w-3 {
1795
+ width: 3%
1796
+ }
1797
+ .progress .bar.w-4 {
1798
+ width: 4%
1799
+ }
1800
+ .progress .bar.w-5 {
1801
+ width: 5%
1802
+ }
1803
+ .progress .bar.w-6 {
1804
+ width: 6%
1805
+ }
1806
+ .progress .bar.w-7 {
1807
+ width: 7%
1808
+ }
1809
+ .progress .bar.w-8 {
1810
+ width: 8%
1811
+ }
1812
+ .progress .bar.w-9 {
1813
+ width: 9%
1814
+ }
1815
+ .progress .bar.w-10 {
1816
+ width: 10%
1817
+ }
1818
+ .progress .bar.w-11 {
1819
+ width: 11%
1820
+ }
1821
+ .progress .bar.w-12 {
1822
+ width: 12%
1823
+ }
1824
+ .progress .bar.w-13 {
1825
+ width: 13%
1826
+ }
1827
+ .progress .bar.w-14 {
1828
+ width: 14%
1829
+ }
1830
+ .progress .bar.w-15 {
1831
+ width: 15%
1832
+ }
1833
+ .progress .bar.w-16 {
1834
+ width: 16%
1835
+ }
1836
+ .progress .bar.w-17 {
1837
+ width: 17%
1838
+ }
1839
+ .progress .bar.w-18 {
1840
+ width: 18%
1841
+ }
1842
+ .progress .bar.w-19 {
1843
+ width: 19%
1844
+ }
1845
+ .progress .bar.w-20 {
1846
+ width: 20%
1847
+ }
1848
+ .progress .bar.w-21 {
1849
+ width: 21%
1850
+ }
1851
+ .progress .bar.w-22 {
1852
+ width: 22%
1853
+ }
1854
+ .progress .bar.w-23 {
1855
+ width: 23%
1856
+ }
1857
+ .progress .bar.w-24 {
1858
+ width: 24%
1859
+ }
1860
+ .progress .bar.w-25 {
1861
+ width: 25%
1862
+ }
1863
+ .progress .bar.w-26 {
1864
+ width: 26%
1865
+ }
1866
+ .progress .bar.w-27 {
1867
+ width: 27%
1868
+ }
1869
+ .progress .bar.w-28 {
1870
+ width: 28%
1871
+ }
1872
+ .progress .bar.w-29 {
1873
+ width: 29%
1874
+ }
1875
+ .progress .bar.w-30 {
1876
+ width: 30%
1877
+ }
1878
+ .progress .bar.w-31 {
1879
+ width: 31%
1880
+ }
1881
+ .progress .bar.w-32 {
1882
+ width: 32%
1883
+ }
1884
+ .progress .bar.w-33 {
1885
+ width: 33%
1886
+ }
1887
+ .progress .bar.w-34 {
1888
+ width: 34%
1889
+ }
1890
+ .progress .bar.w-35 {
1891
+ width: 35%
1892
+ }
1893
+ .progress .bar.w-36 {
1894
+ width: 36%
1895
+ }
1896
+ .progress .bar.w-37 {
1897
+ width: 37%
1898
+ }
1899
+ .progress .bar.w-38 {
1900
+ width: 38%
1901
+ }
1902
+ .progress .bar.w-39 {
1903
+ width: 39%
1904
+ }
1905
+ .progress .bar.w-40 {
1906
+ width: 40%
1907
+ }
1908
+ .progress .bar.w-41 {
1909
+ width: 41%
1910
+ }
1911
+ .progress .bar.w-42 {
1912
+ width: 42%
1913
+ }
1914
+ .progress .bar.w-43 {
1915
+ width: 43%
1916
+ }
1917
+ .progress .bar.w-44 {
1918
+ width: 44%
1919
+ }
1920
+ .progress .bar.w-45 {
1921
+ width: 45%
1922
+ }
1923
+ .progress .bar.w-46 {
1924
+ width: 46%
1925
+ }
1926
+ .progress .bar.w-47 {
1927
+ width: 47%
1928
+ }
1929
+ .progress .bar.w-48 {
1930
+ width: 48%
1931
+ }
1932
+ .progress .bar.w-49 {
1933
+ width: 49%
1934
+ }
1935
+ .progress .bar.w-50 {
1936
+ width: 50%
1937
+ }
1938
+ .progress .bar.w-51 {
1939
+ width: 51%
1940
+ }
1941
+ .progress .bar.w-52 {
1942
+ width: 52%
1943
+ }
1944
+ .progress .bar.w-53 {
1945
+ width: 53%
1946
+ }
1947
+ .progress .bar.w-54 {
1948
+ width: 54%
1949
+ }
1950
+ .progress .bar.w-55 {
1951
+ width: 55%
1952
+ }
1953
+ .progress .bar.w-56 {
1954
+ width: 56%
1955
+ }
1956
+ .progress .bar.w-57 {
1957
+ width: 57%
1958
+ }
1959
+ .progress .bar.w-58 {
1960
+ width: 58%
1961
+ }
1962
+ .progress .bar.w-59 {
1963
+ width: 59%
1964
+ }
1965
+ .progress .bar.w-60 {
1966
+ width: 60%
1967
+ }
1968
+ .progress .bar.w-61 {
1969
+ width: 61%
1970
+ }
1971
+ .progress .bar.w-62 {
1972
+ width: 62%
1973
+ }
1974
+ .progress .bar.w-63 {
1975
+ width: 63%
1976
+ }
1977
+ .progress .bar.w-64 {
1978
+ width: 64%
1979
+ }
1980
+ .progress .bar.w-65 {
1981
+ width: 65%
1982
+ }
1983
+ .progress .bar.w-66 {
1984
+ width: 66%
1985
+ }
1986
+ .progress .bar.w-67 {
1987
+ width: 67%
1988
+ }
1989
+ .progress .bar.w-68 {
1990
+ width: 68%
1991
+ }
1992
+ .progress .bar.w-69 {
1993
+ width: 69%
1994
+ }
1995
+ .progress .bar.w-70 {
1996
+ width: 70%
1997
+ }
1998
+ .progress .bar.w-71 {
1999
+ width: 71%
2000
+ }
2001
+ .progress .bar.w-72 {
2002
+ width: 72%
2003
+ }
2004
+ .progress .bar.w-73 {
2005
+ width: 73%
2006
+ }
2007
+ .progress .bar.w-74 {
2008
+ width: 74%
2009
+ }
2010
+ .progress .bar.w-75 {
2011
+ width: 75%
2012
+ }
2013
+ .progress .bar.w-76 {
2014
+ width: 76%
2015
+ }
2016
+ .progress .bar.w-77 {
2017
+ width: 77%
2018
+ }
2019
+ .progress .bar.w-78 {
2020
+ width: 78%
2021
+ }
2022
+ .progress .bar.w-79 {
2023
+ width: 79%
2024
+ }
2025
+ .progress .bar.w-80 {
2026
+ width: 80%
2027
+ }
2028
+ .progress .bar.w-81 {
2029
+ width: 81%
2030
+ }
2031
+ .progress .bar.w-82 {
2032
+ width: 82%
2033
+ }
2034
+ .progress .bar.w-83 {
2035
+ width: 83%
2036
+ }
2037
+ .progress .bar.w-84 {
2038
+ width: 84%
2039
+ }
2040
+ .progress .bar.w-85 {
2041
+ width: 85%
2042
+ }
2043
+ .progress .bar.w-86 {
2044
+ width: 86%
2045
+ }
2046
+ .progress .bar.w-87 {
2047
+ width: 87%
2048
+ }
2049
+ .progress .bar.w-88 {
2050
+ width: 88%
2051
+ }
2052
+ .progress .bar.w-89 {
2053
+ width: 89%
2054
+ }
2055
+ .progress .bar.w-90 {
2056
+ width: 90%
2057
+ }
2058
+ .progress .bar.w-91 {
2059
+ width: 91%
2060
+ }
2061
+ .progress .bar.w-92 {
2062
+ width: 92%
2063
+ }
2064
+ .progress .bar.w-93 {
2065
+ width: 93%
2066
+ }
2067
+ .progress .bar.w-94 {
2068
+ width: 94%
2069
+ }
2070
+ .progress .bar.w-95 {
2071
+ width: 95%
2072
+ }
2073
+ .progress .bar.w-96 {
2074
+ width: 96%
2075
+ }
2076
+ .progress .bar.w-97 {
2077
+ width: 97%
2078
+ }
2079
+ .progress .bar.w-98 {
2080
+ width: 98%
2081
+ }
2082
+ .progress .bar.w-99 {
2083
+ width: 99%
2084
+ }
2085
+ .progress .bar.w-100 {
2086
+ width: 100%
2087
+ }
2088
+ .progress .bar.w-0,
2089
+ .progress .bar.w-100 {
2090
+ border-right: 0
2091
+ }
2092
+ .tabs .content {
2093
+ display: none;
2094
+ padding: .75rem 0 0
2095
+ }
2096
+ .tabs input {
2097
+ display: none
2098
+ }
2099
+ .tabs input:checked + label {
2100
+ border-bottom: solid 3px #0071de;
2101
+ color: #41403e
2102
+ }
2103
+ .tabs input[id=tab1]:checked ~ div[id=content1] {
2104
+ display: block
2105
+ }
2106
+ .tabs input[id=tab2]:checked ~ div[id=content2] {
2107
+ display: block
2108
+ }
2109
+ .tabs input[id=tab3]:checked ~ div[id=content3] {
2110
+ display: block
2111
+ }
2112
+ .tabs input[id=tab4]:checked ~ div[id=content4] {
2113
+ display: block
2114
+ }
2115
+ .tabs input[id=tab5]:checked ~ div[id=content5] {
2116
+ display: block
2117
+ }
2118
+ .tabs label {
2119
+ color: #c1c0bd;
2120
+ display: inline-block;
2121
+ font-weight: 600;
2122
+ margin: 0 0 -1px;
2123
+ padding: .75rem;
2124
+ text-align: center
2125
+ }
2126
+ .tabs label:hover {
2127
+ color: #868e96;
2128
+ cursor: pointer
2129
+ }
2130
+ .margin {
2131
+ margin: 1rem
2132
+ }
2133
+ .margin-top {
2134
+ margin-top: 1rem
2135
+ }
2136
+ .margin-top-large {
2137
+ margin-top: 2rem
2138
+ }
2139
+ .margin-top-small {
2140
+ margin-top: .5rem
2141
+ }
2142
+ .margin-top-none {
2143
+ margin-top: 0
2144
+ }
2145
+ .margin-right {
2146
+ margin-right: 1rem
2147
+ }
2148
+ .margin-right-large {
2149
+ margin-right: 2rem
2150
+ }
2151
+ .margin-right-small {
2152
+ margin-right: .5rem
2153
+ }
2154
+ .margin-right-none {
2155
+ margin-right: 0
2156
+ }
2157
+ .margin-bottom {
2158
+ margin-bottom: 1rem
2159
+ }
2160
+ .margin-bottom-large {
2161
+ margin-bottom: 2rem
2162
+ }
2163
+ .margin-bottom-small {
2164
+ margin-bottom: .5rem
2165
+ }
2166
+ .margin-bottom-none {
2167
+ margin-bottom: 0
2168
+ }
2169
+ .margin-left {
2170
+ margin-left: 1rem
2171
+ }
2172
+ .margin-left-large {
2173
+ margin-left: 2rem
2174
+ }
2175
+ .margin-left-small {
2176
+ margin-left: .5rem
2177
+ }
2178
+ .margin-left-none {
2179
+ margin-left: 0
2180
+ }
2181
+ .margin-large {
2182
+ margin: 2rem
2183
+ }
2184
+ .margin-small {
2185
+ margin: .5rem
2186
+ }
2187
+ .margin-none {
2188
+ margin: 0
2189
+ }
2190
+ .padding {
2191
+ padding: 1rem
2192
+ }
2193
+ .padding-top {
2194
+ padding-top: 1rem
2195
+ }
2196
+ .padding-top-large {
2197
+ padding-top: 2rem
2198
+ }
2199
+ .padding-top-small {
2200
+ padding-top: .5rem
2201
+ }
2202
+ .padding-top-none {
2203
+ padding-top: 0
2204
+ }
2205
+ .padding-right {
2206
+ padding-right: 1rem
2207
+ }
2208
+ .padding-right-large {
2209
+ padding-right: 2rem
2210
+ }
2211
+ .padding-right-small {
2212
+ padding-right: .5rem
2213
+ }
2214
+ .padding-right-none {
2215
+ padding-right: 0
2216
+ }
2217
+ .padding-bottom {
2218
+ padding-bottom: 1rem
2219
+ }
2220
+ .padding-bottom-large {
2221
+ padding-bottom: 2rem
2222
+ }
2223
+ .padding-bottom-small {
2224
+ padding-bottom: .5rem
2225
+ }
2226
+ .padding-bottom-none {
2227
+ padding-bottom: 0
2228
+ }
2229
+ .padding-left {
2230
+ padding-left: 1rem
2231
+ }
2232
+ .padding-left-large {
2233
+ padding-left: 2rem
2234
+ }
2235
+ .padding-left-small {
2236
+ padding-left: .5rem
2237
+ }
2238
+ .padding-left-none {
2239
+ padding-left: 0
2240
+ }
2241
+ .padding-large {
2242
+ padding: 2rem
2243
+ }
2244
+ .padding-small {
2245
+ padding: .5rem
2246
+ }
2247
+ .padding-none {
2248
+ padding: 0
2249
+ }
2250
+ nav {
2251
+ background-color: #fff;
2252
+ display: flex;
2253
+ padding: .3rem;
2254
+ position: relative;
2255
+ width: 100%;
2256
+ z-index: 100
2257
+ }
2258
+ @media only screen and (max-width:768px) {
2259
+ nav {
2260
+ display: block
2261
+ }
2262
+ }
2263
+ nav .bar1,
2264
+ nav .bar2,
2265
+ nav .bar3 {
2266
+ background-color: #41403e;
2267
+ border-bottom: 5px solid #41403e;
2268
+ border-bottom-left-radius: 15px 5px;
2269
+ border-bottom-right-radius: 15px 3px;
2270
+ color: #41403e;
2271
+ margin: 6px 0;
2272
+ transition: .4s;
2273
+ width: 2rem
2274
+ }
2275
+ nav .collapsible input[id^=collapsible]:checked + button .bar1 {
2276
+ -webkit-transform: rotate(-45deg) translate(-9px,7px);
2277
+ transform: rotate(-45deg) translate(-9px,7px)
2278
+ }
2279
+ nav .collapsible input[id^=collapsible]:checked + button .bar2 {
2280
+ opacity: 0
2281
+ }
2282
+ nav .collapsible input[id^=collapsible]:checked + button .bar3 {
2283
+ -webkit-transform: rotate(45deg) translate(-8px,-9px);
2284
+ transform: rotate(45deg) translate(-8px,-9px)
2285
+ }
2286
+ nav.split-nav {
2287
+ justify-content: space-between
2288
+ }
2289
+ nav.fixed {
2290
+ left: 0;
2291
+ position: fixed;
2292
+ right: 0;
2293
+ top: 0
2294
+ }
2295
+ nav div {
2296
+ margin: 0 1rem
2297
+ }
2298
+ nav ul.inline {
2299
+ margin-bottom: 0;
2300
+ margin-top: 10px;
2301
+ padding: 0
2302
+ }
2303
+ nav ul.inline li {
2304
+ display: inline-block;
2305
+ margin: 0 .5rem
2306
+ }
2307
+ @media only screen and (max-width:768px) {
2308
+ nav ul.inline li {
2309
+ display: block;
2310
+ margin: 1rem 0
2311
+ }
2312
+ }
2313
+ nav a {
2314
+ background-image: none;
2315
+ border-bottom: 5px solid #41403e;
2316
+ border-bottom-left-radius: 15px 3px;
2317
+ border-bottom-right-radius: 15px 5px;
2318
+ color: #41403e;
2319
+ padding-bottom: .1rem
2320
+ }
2321
+ nav a:hover {
2322
+ border-bottom: 5px solid #c1c0bd
2323
+ }
2324
+ nav ul.inline li a {
2325
+ font-size: 1.3rem
2326
+ }
2327
+ nav ul.inline li::before {
2328
+ content: ''
2329
+ }
2330
+ @media only screen and (max-width:992px) {
2331
+ nav ul {
2332
+ text-align: center
2333
+ }
2334
+ }
2335
+ nav .nav-brand h1,
2336
+ nav .nav-brand h2,
2337
+ nav .nav-brand h3,
2338
+ nav .nav-brand h4,
2339
+ nav .nav-brand h5,
2340
+ nav .nav-brand h6 {
2341
+ margin: 0;
2342
+ margin-bottom: .2rem
2343
+ }
2344
+ nav .collapsible input[id^=collapsible]:checked ~ div.collapsible-body {
2345
+ margin: 0;
2346
+ max-height: 960px;
2347
+ opacity: 1;
2348
+ padding: 0
2349
+ }
2350
+ nav .collapsible .collapsible-body,
2351
+ nav .collapsible:nth-of-type(1) {
2352
+ border: 0
2353
+ }
2354
+ @media only screen and (min-width:769px) {
2355
+ nav .collapsible .collapsible-body,
2356
+ nav .collapsible:nth-of-type(1) {
2357
+ display: contents
2358
+ }
2359
+ }
2360
+ nav div.collapsible-body {
2361
+ padding: none
2362
+ }
2363
+ nav .collapsible label {
2364
+ border-bottom: 0;
2365
+ padding: 0
2366
+ }
2367
+ nav .collapsible > button {
2368
+ background-color: #fff;
2369
+ display: none;
2370
+ font-size: .5rem;
2371
+ margin-right: 1rem;
2372
+ padding: .25rem;
2373
+ position: absolute;
2374
+ right: 0;
2375
+ top: .2rem
2376
+ }
2377
+ @media only screen and (max-width:768px) {
2378
+ nav .collapsible > button {
2379
+ display: block
2380
+ }
2381
+ }