bulma 0.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,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: ed8fff07c7e9e572282f0c6a0f82936014cdac80
4
+ data.tar.gz: f47f50a586959c5d41817ee5263b7c27e61d0701
5
+ SHA512:
6
+ metadata.gz: 4b5128ab2e4408f14a279a3fe4c494b92015d2590a01312c1c6810368d98eefd223321c4c42d723471307b05d479bfb78475d9091db90fcf694dcff56cee756c
7
+ data.tar.gz: cad8a0e3fbbe8c61e06aba9de3263b17635304c5c5043995e20690efc6af5701c88fe54a6e30472f60f9674b76822d97e4444c613b79c4e3edbfd065a7256769
Binary file
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
@@ -0,0 +1,4 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.2.3
4
+ before_install: gem install bundler -v 1.10.6
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in bulma.gemspec
4
+ gemspec
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 RAHUL LAKHANEY
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,49 @@
1
+ # Bulma CSS Framework
2
+
3
+ A ruby gem for bulma [Modern CSS framework based on Flexbox](https://github.com/jgthms/bulma)
4
+
5
+ ![](/bulma-banner.png)
6
+
7
+ [Live Demo](http://bulma.io/)
8
+
9
+ ## Installation
10
+
11
+ Add this line to your application's Gemfile:
12
+
13
+ ```ruby
14
+ gem 'bulma'
15
+ ```
16
+
17
+ And then execute:
18
+
19
+ $ bundle
20
+
21
+ Or install it yourself as:
22
+
23
+ $ gem install bulma
24
+
25
+ ## Usage
26
+
27
+ In your application.css, add:
28
+
29
+ ```CSS
30
+ @import "bulma";
31
+ ```
32
+
33
+
34
+
35
+ ## Customizations
36
+ [Click Here to checkout complete documentation](http://bulma.io/)
37
+
38
+
39
+ ## Contributing
40
+
41
+ Bug reports and pull requests are welcome on GitHub at https://github.com/rahullakhaney/sweetalert.
42
+
43
+ Follow me on [Twitter](https://www.twitter.com/istereotyepe) to see my #20in20 challenge
44
+
45
+
46
+ ## License
47
+
48
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
49
+
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "bulma"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
@@ -0,0 +1,7 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
6
+
7
+ # Do any other automated setup that you need to do here
Binary file
@@ -0,0 +1,28 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'bulma/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "bulma"
8
+ spec.version = Bulma::VERSION
9
+ spec.authors = ["RAHUL LAKHANEY"]
10
+ spec.email = ["rahul@codebrew.io"]
11
+
12
+ spec.summary = %q{A ruby gem for bulma Modern CSS framework based on Flexbox}
13
+ spec.description = %q{A ruby gem for bulma Modern CSS framework based on Flexbox}
14
+ spec.homepage = "https://github.com/rahullakhaney/bulma-on-rails"
15
+ spec.license = "MIT"
16
+
17
+ # Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
18
+ # delete this section to allow pushing this gem to any host.
19
+
20
+
21
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
22
+ spec.bindir = "exe"
23
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
24
+ spec.require_paths = ["lib"]
25
+
26
+ spec.add_development_dependency "bundler", "~> 1.10"
27
+ spec.add_development_dependency "rake", "~> 10.0"
28
+ end
@@ -0,0 +1,5 @@
1
+ require "bulma/version"
2
+
3
+ module Bulma
4
+ class Engine < ::Rails::Engine; end
5
+ end
@@ -0,0 +1,3 @@
1
+ module Bulma
2
+ VERSION = "0.1.0"
3
+ end
Binary file
Binary file
@@ -0,0 +1,3867 @@
1
+ html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, menu, nav, section, time, mark, audio, video, details, summary {
2
+ margin: 0;
3
+ padding: 0;
4
+ border: 0;
5
+ font-size: 100%;
6
+ font-weight: normal;
7
+ vertical-align: baseline;
8
+ background: transparent;
9
+ }
10
+
11
+ article, aside, figure, footer, header, nav, section, details, summary {
12
+ display: block;
13
+ }
14
+
15
+ html {
16
+ box-sizing: border-box;
17
+ }
18
+
19
+ *,
20
+ *:before,
21
+ *:after {
22
+ box-sizing: inherit;
23
+ }
24
+
25
+ img,
26
+ object,
27
+ embed {
28
+ max-width: 100%;
29
+ }
30
+
31
+ html {
32
+ overflow-y: scroll;
33
+ }
34
+
35
+ ul {
36
+ list-style: none;
37
+ }
38
+
39
+ blockquote, q {
40
+ quotes: none;
41
+ }
42
+
43
+ blockquote:before,
44
+ blockquote:after,
45
+ q:before,
46
+ q:after {
47
+ content: '';
48
+ content: none;
49
+ }
50
+
51
+ a {
52
+ margin: 0;
53
+ padding: 0;
54
+ font-size: 100%;
55
+ vertical-align: baseline;
56
+ background: transparent;
57
+ }
58
+
59
+ del {
60
+ text-decoration: line-through;
61
+ }
62
+
63
+ abbr[title], dfn[title] {
64
+ border-bottom: 1px dotted #000;
65
+ cursor: help;
66
+ }
67
+
68
+ table {
69
+ border-collapse: collapse;
70
+ border-spacing: 0;
71
+ }
72
+
73
+ th {
74
+ font-weight: bold;
75
+ vertical-align: bottom;
76
+ }
77
+
78
+ td {
79
+ font-weight: normal;
80
+ vertical-align: top;
81
+ }
82
+
83
+ hr {
84
+ display: block;
85
+ height: 1px;
86
+ border: 0;
87
+ border-top: 1px solid #ccc;
88
+ margin: 1em 0;
89
+ padding: 0;
90
+ }
91
+
92
+ input, select {
93
+ vertical-align: middle;
94
+ }
95
+
96
+ pre {
97
+ white-space: pre;
98
+ white-space: pre-wrap;
99
+ white-space: pre-line;
100
+ word-wrap: break-word;
101
+ }
102
+
103
+ input[type="radio"] {
104
+ vertical-align: text-bottom;
105
+ }
106
+
107
+ input[type="checkbox"] {
108
+ vertical-align: bottom;
109
+ }
110
+
111
+ select, input, textarea {
112
+ font: 99% sans-serif;
113
+ }
114
+
115
+ table {
116
+ font-size: inherit;
117
+ font: 100%;
118
+ }
119
+
120
+ small {
121
+ font-size: 85%;
122
+ }
123
+
124
+ strong {
125
+ font-weight: bold;
126
+ }
127
+
128
+ td, td img {
129
+ vertical-align: top;
130
+ }
131
+
132
+ sub, sup {
133
+ font-size: 75%;
134
+ line-height: 0;
135
+ position: relative;
136
+ }
137
+
138
+ sup {
139
+ top: -0.5em;
140
+ }
141
+
142
+ sub {
143
+ bottom: -0.25em;
144
+ }
145
+
146
+ pre, code, kbd, samp {
147
+ font-family: monospace, sans-serif;
148
+ }
149
+
150
+ label,
151
+ input[type=button],
152
+ input[type=submit],
153
+ input[type=file],
154
+ button {
155
+ cursor: pointer;
156
+ }
157
+
158
+ button, input, select, textarea {
159
+ margin: 0;
160
+ }
161
+
162
+ button,
163
+ input[type=button] {
164
+ width: auto;
165
+ overflow: visible;
166
+ }
167
+
168
+ @keyframes spin-around {
169
+ from {
170
+ transform: rotate(0deg);
171
+ }
172
+ to {
173
+ transform: rotate(359deg);
174
+ }
175
+ }
176
+
177
+ html {
178
+ background: #f5f7fa;
179
+ font-size: 14px;
180
+ -moz-osx-font-smoothing: grayscale;
181
+ -webkit-font-smoothing: antialiased;
182
+ min-width: 300px;
183
+ overflow-x: hidden;
184
+ overflow-y: scroll;
185
+ text-rendering: optimizeLegibility;
186
+ }
187
+
188
+ body,
189
+ button,
190
+ input,
191
+ select,
192
+ textarea {
193
+ font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
194
+ }
195
+
196
+ code,
197
+ pre {
198
+ -moz-osx-font-smoothing: auto;
199
+ -webkit-font-smoothing: auto;
200
+ font-family: monospace;
201
+ line-height: 1.25;
202
+ }
203
+
204
+ body {
205
+ color: #69707a;
206
+ font-size: 1rem;
207
+ line-height: 1.428571428571429;
208
+ }
209
+
210
+ a {
211
+ color: #1fc8db;
212
+ cursor: pointer;
213
+ text-decoration: none;
214
+ transition: none 86ms ease-out;
215
+ }
216
+
217
+ a:hover {
218
+ color: #222324;
219
+ }
220
+
221
+ code {
222
+ background: #f5f7fa;
223
+ color: #42afe3;
224
+ font-size: 12px;
225
+ font-weight: normal;
226
+ padding: 1px 2px 2px;
227
+ }
228
+
229
+ hr {
230
+ border-top-color: #d3d6db;
231
+ margin: 20px 0;
232
+ }
233
+
234
+ img {
235
+ max-height: 100%;
236
+ max-width: 100%;
237
+ }
238
+
239
+ input[type="checkbox"],
240
+ input[type="radio"] {
241
+ vertical-align: baseline;
242
+ }
243
+
244
+ small {
245
+ font-size: 11px;
246
+ }
247
+
248
+ strong {
249
+ color: #222324;
250
+ }
251
+
252
+ article,
253
+ aside,
254
+ figure,
255
+ footer,
256
+ header,
257
+ hgroup,
258
+ section {
259
+ display: block;
260
+ }
261
+
262
+ pre {
263
+ background: #f5f7fa;
264
+ color: #69707a;
265
+ white-space: pre;
266
+ word-wrap: normal;
267
+ }
268
+
269
+ pre code {
270
+ background: #f5f7fa;
271
+ color: #69707a;
272
+ display: block;
273
+ overflow-x: auto;
274
+ padding: 16px 20px;
275
+ }
276
+
277
+ table {
278
+ width: 100%;
279
+ }
280
+
281
+ table th,
282
+ table td {
283
+ text-align: left;
284
+ vertical-align: top;
285
+ }
286
+
287
+ table th {
288
+ color: #222324;
289
+ }
290
+
291
+ .container {
292
+ margin: 0 auto;
293
+ max-width: 960px;
294
+ position: relative;
295
+ }
296
+
297
+ .fa {
298
+ font-size: 21px;
299
+ text-align: center;
300
+ vertical-align: top;
301
+ }
302
+
303
+ .content:not(:last-child) {
304
+ margin-bottom: 20px;
305
+ }
306
+
307
+ .content h1,
308
+ .content h2,
309
+ .content h3,
310
+ .content h4,
311
+ .content h5,
312
+ .content h6 {
313
+ color: #222324;
314
+ font-weight: 300;
315
+ line-height: 1.125;
316
+ margin-bottom: 20px;
317
+ }
318
+
319
+ .content h1:not(:first-child),
320
+ .content h2:not(:first-child),
321
+ .content h3:not(:first-child) {
322
+ margin-top: 40px;
323
+ }
324
+
325
+ .content h1 {
326
+ font-size: 2em;
327
+ }
328
+
329
+ .content h2 {
330
+ font-size: 1.75em;
331
+ }
332
+
333
+ .content h3 {
334
+ font-size: 1.5em;
335
+ }
336
+
337
+ .content h4 {
338
+ font-size: 1.25em;
339
+ }
340
+
341
+ .content h5 {
342
+ font-size: 1.125em;
343
+ }
344
+
345
+ .content h6 {
346
+ font-size: 1em;
347
+ }
348
+
349
+ .content p:not(:last-child) {
350
+ margin-bottom: 1em;
351
+ }
352
+
353
+ .content li + li {
354
+ margin-top: 0.25em;
355
+ }
356
+
357
+ .content ol {
358
+ list-style: decimal outside;
359
+ margin: 1em 2em;
360
+ }
361
+
362
+ .content ul {
363
+ list-style: disc outside;
364
+ margin: 1em 2em;
365
+ }
366
+
367
+ .content ul ul {
368
+ list-style-type: circle;
369
+ margin-top: 0.5em;
370
+ }
371
+
372
+ .content ul ul ul {
373
+ list-style-type: square;
374
+ }
375
+
376
+ .content blockquote {
377
+ background: #f5f7fa;
378
+ border-left: 5px solid #d3d6db;
379
+ padding: 1.5em;
380
+ }
381
+
382
+ .content blockquote:not(:last-child) {
383
+ margin-bottom: 1em;
384
+ }
385
+
386
+ .highlight {
387
+ background-color: #fdf6e3;
388
+ color: #586e75;
389
+ }
390
+
391
+ .highlight .c {
392
+ color: #93a1a1;
393
+ }
394
+
395
+ .highlight .err,
396
+ .highlight .g {
397
+ color: #586e75;
398
+ }
399
+
400
+ .highlight .k {
401
+ color: #859900;
402
+ }
403
+
404
+ .highlight .l,
405
+ .highlight .n {
406
+ color: #586e75;
407
+ }
408
+
409
+ .highlight .o {
410
+ color: #859900;
411
+ }
412
+
413
+ .highlight .x {
414
+ color: #cb4b16;
415
+ }
416
+
417
+ .highlight .p {
418
+ color: #586e75;
419
+ }
420
+
421
+ .highlight .cm {
422
+ color: #93a1a1;
423
+ }
424
+
425
+ .highlight .cp {
426
+ color: #859900;
427
+ }
428
+
429
+ .highlight .c1 {
430
+ color: #93a1a1;
431
+ }
432
+
433
+ .highlight .cs {
434
+ color: #859900;
435
+ }
436
+
437
+ .highlight .gd {
438
+ color: #2aa198;
439
+ }
440
+
441
+ .highlight .ge {
442
+ color: #586e75;
443
+ font-style: italic;
444
+ }
445
+
446
+ .highlight .gr {
447
+ color: #dc322f;
448
+ }
449
+
450
+ .highlight .gh {
451
+ color: #cb4b16;
452
+ }
453
+
454
+ .highlight .gi {
455
+ color: #859900;
456
+ }
457
+
458
+ .highlight .go,
459
+ .highlight .gp {
460
+ color: #586e75;
461
+ }
462
+
463
+ .highlight .gs {
464
+ color: #586e75;
465
+ font-weight: bold;
466
+ }
467
+
468
+ .highlight .gu {
469
+ color: #cb4b16;
470
+ }
471
+
472
+ .highlight .gt {
473
+ color: #586e75;
474
+ }
475
+
476
+ .highlight .kc {
477
+ color: #cb4b16;
478
+ }
479
+
480
+ .highlight .kd {
481
+ color: #268bd2;
482
+ }
483
+
484
+ .highlight .kn,
485
+ .highlight .kp {
486
+ color: #859900;
487
+ }
488
+
489
+ .highlight .kr {
490
+ color: #268bd2;
491
+ }
492
+
493
+ .highlight .kt {
494
+ color: #dc322f;
495
+ }
496
+
497
+ .highlight .ld {
498
+ color: #586e75;
499
+ }
500
+
501
+ .highlight .m,
502
+ .highlight .s {
503
+ color: #2aa198;
504
+ }
505
+
506
+ .highlight .na {
507
+ color: #B58900;
508
+ }
509
+
510
+ .highlight .nb {
511
+ color: #586e75;
512
+ }
513
+
514
+ .highlight .nc {
515
+ color: #268bd2;
516
+ }
517
+
518
+ .highlight .no {
519
+ color: #cb4b16;
520
+ }
521
+
522
+ .highlight .nd {
523
+ color: #268bd2;
524
+ }
525
+
526
+ .highlight .ni,
527
+ .highlight .ne {
528
+ color: #cb4b16;
529
+ }
530
+
531
+ .highlight .nf {
532
+ color: #268bd2;
533
+ }
534
+
535
+ .highlight .nl,
536
+ .highlight .nn,
537
+ .highlight .nx,
538
+ .highlight .py {
539
+ color: #586e75;
540
+ }
541
+
542
+ .highlight .nt,
543
+ .highlight .nv {
544
+ color: #268bd2;
545
+ }
546
+
547
+ .highlight .ow {
548
+ color: #859900;
549
+ }
550
+
551
+ .highlight .w {
552
+ color: #586e75;
553
+ }
554
+
555
+ .highlight .mf,
556
+ .highlight .mh,
557
+ .highlight .mi,
558
+ .highlight .mo {
559
+ color: #2aa198;
560
+ }
561
+
562
+ .highlight .sb {
563
+ color: #93a1a1;
564
+ }
565
+
566
+ .highlight .sc {
567
+ color: #2aa198;
568
+ }
569
+
570
+ .highlight .sd {
571
+ color: #586e75;
572
+ }
573
+
574
+ .highlight .s2 {
575
+ color: #2aa198;
576
+ }
577
+
578
+ .highlight .se {
579
+ color: #cb4b16;
580
+ }
581
+
582
+ .highlight .sh {
583
+ color: #586e75;
584
+ }
585
+
586
+ .highlight .si,
587
+ .highlight .sx {
588
+ color: #2aa198;
589
+ }
590
+
591
+ .highlight .sr {
592
+ color: #dc322f;
593
+ }
594
+
595
+ .highlight .s1,
596
+ .highlight .ss {
597
+ color: #2aa198;
598
+ }
599
+
600
+ .highlight .bp,
601
+ .highlight .vc,
602
+ .highlight .vg,
603
+ .highlight .vi {
604
+ color: #268bd2;
605
+ }
606
+
607
+ .highlight .il {
608
+ color: #2aa198;
609
+ }
610
+
611
+ .is-centered {
612
+ text-align: center;
613
+ }
614
+
615
+ .is-left {
616
+ text-align: left;
617
+ }
618
+
619
+ .is-right {
620
+ text-align: right;
621
+ }
622
+
623
+ .is-block {
624
+ display: block;
625
+ }
626
+
627
+ .is-disabled {
628
+ pointer-events: none;
629
+ }
630
+
631
+ .is-inline {
632
+ display: inline;
633
+ }
634
+
635
+ .is-marginless {
636
+ margin: 0 !important;
637
+ }
638
+
639
+ .is-unselectable {
640
+ -webkit-touch-callout: none;
641
+ -webkit-user-select: none;
642
+ -moz-user-select: none;
643
+ -ms-user-select: none;
644
+ user-select: none;
645
+ }
646
+
647
+ .input, .textarea {
648
+ -moz-appearance: none;
649
+ -webkit-appearance: none;
650
+ background: white;
651
+ border: 1px solid #d3d6db;
652
+ border-radius: 3px;
653
+ color: #222324;
654
+ display: inline-block;
655
+ font-size: 14px;
656
+ height: 32px;
657
+ line-height: 24px;
658
+ padding: 3px 8px;
659
+ position: relative;
660
+ vertical-align: top;
661
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
662
+ display: block;
663
+ max-width: 100%;
664
+ width: 100%;
665
+ }
666
+
667
+ .input:hover, .textarea:hover {
668
+ border-color: #aeb1b5;
669
+ }
670
+
671
+ .input:active, .textarea:active, .input:focus, .textarea:focus {
672
+ border-color: #1fc8db;
673
+ outline: none;
674
+ }
675
+
676
+ .input[disabled], [disabled].textarea, .input[disabled]:hover, [disabled].textarea:hover {
677
+ background: #f5f7fa;
678
+ border-color: #d3d6db;
679
+ }
680
+
681
+ .input[disabled]::-moz-placeholder, [disabled].textarea::-moz-placeholder, .input[disabled]:hover::-moz-placeholder, [disabled].textarea:hover::-moz-placeholder {
682
+ color: rgba(34, 35, 36, 0.3);
683
+ }
684
+
685
+ .input[disabled]::-webkit-input-placeholder, [disabled].textarea::-webkit-input-placeholder, .input[disabled]:hover::-webkit-input-placeholder, [disabled].textarea:hover::-webkit-input-placeholder {
686
+ color: rgba(34, 35, 36, 0.3);
687
+ }
688
+
689
+ .input[disabled]:-moz-placeholder, [disabled].textarea:-moz-placeholder, .input[disabled]:hover:-moz-placeholder, [disabled].textarea:hover:-moz-placeholder {
690
+ color: rgba(34, 35, 36, 0.3);
691
+ }
692
+
693
+ .input[disabled]:-ms-input-placeholder, [disabled].textarea:-ms-input-placeholder, .input[disabled]:hover:-ms-input-placeholder, [disabled].textarea:hover:-ms-input-placeholder {
694
+ color: rgba(34, 35, 36, 0.3);
695
+ }
696
+
697
+ .input[type="search"], [type="search"].textarea {
698
+ border-radius: 290486px;
699
+ }
700
+
701
+ .input.is-flat, .is-flat.textarea {
702
+ border: none;
703
+ box-shadow: none;
704
+ padding: 4px 8px;
705
+ }
706
+
707
+ .input.is-small, .is-small.textarea {
708
+ border-radius: 2px;
709
+ font-size: 11px;
710
+ height: 24px;
711
+ line-height: 16px;
712
+ padding: 3px 6px;
713
+ }
714
+
715
+ .input.is-small.is-flat, .is-small.is-flat.textarea {
716
+ padding: 4px 6px;
717
+ }
718
+
719
+ .input.is-medium, .is-medium.textarea {
720
+ font-size: 18px;
721
+ height: 40px;
722
+ line-height: 32px;
723
+ padding: 3px 10px;
724
+ }
725
+
726
+ .input.is-medium.is-flat, .is-medium.is-flat.textarea {
727
+ padding: 4px 10px;
728
+ }
729
+
730
+ .input.is-large, .is-large.textarea {
731
+ font-size: 24px;
732
+ height: 48px;
733
+ line-height: 40px;
734
+ padding: 3px 12px;
735
+ }
736
+
737
+ .input.is-large.is-flat, .is-large.is-flat.textarea {
738
+ padding: 4px 12px;
739
+ }
740
+
741
+ .input.is-fullwidth, .is-fullwidth.textarea {
742
+ display: block;
743
+ width: 100%;
744
+ }
745
+
746
+ .input.is-inline, .is-inline.textarea {
747
+ display: inline;
748
+ width: auto;
749
+ }
750
+
751
+ .textarea {
752
+ line-height: 1.2;
753
+ max-height: 600px;
754
+ max-width: 100%;
755
+ min-height: 120px;
756
+ min-width: 100%;
757
+ padding: 10px;
758
+ resize: vertical;
759
+ }
760
+
761
+ .checkbox, .menu-checkbox, .radio {
762
+ cursor: pointer;
763
+ display: inline-block;
764
+ line-height: 16px;
765
+ padding-left: 18px;
766
+ position: relative;
767
+ vertical-align: top;
768
+ }
769
+
770
+ .checkbox input, .menu-checkbox input, .radio input {
771
+ -moz-appearance: none;
772
+ -webkit-appearance: none;
773
+ background: white;
774
+ border: 1px solid #d3d6db;
775
+ border-radius: 3px;
776
+ color: #222324;
777
+ display: inline-block;
778
+ font-size: 14px;
779
+ height: 32px;
780
+ line-height: 24px;
781
+ padding: 3px 8px;
782
+ position: relative;
783
+ vertical-align: top;
784
+ border-radius: 1px;
785
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
786
+ cursor: pointer;
787
+ float: left;
788
+ height: 14px;
789
+ left: 0;
790
+ outline: none;
791
+ padding: 0;
792
+ position: absolute;
793
+ top: 1px;
794
+ width: 14px;
795
+ }
796
+
797
+ .checkbox input:hover, .menu-checkbox input:hover, .radio input:hover {
798
+ border-color: #aeb1b5;
799
+ }
800
+
801
+ .checkbox input:active, .menu-checkbox input:active, .radio input:active, .checkbox input:focus, .menu-checkbox input:focus, .radio input:focus {
802
+ border-color: #1fc8db;
803
+ outline: none;
804
+ }
805
+
806
+ .checkbox input[disabled], .menu-checkbox input[disabled], .radio input[disabled], .checkbox input[disabled]:hover, .menu-checkbox input[disabled]:hover, .radio input[disabled]:hover {
807
+ background: #f5f7fa;
808
+ border-color: #d3d6db;
809
+ }
810
+
811
+ .checkbox input[disabled]::-moz-placeholder, .menu-checkbox input[disabled]::-moz-placeholder, .radio input[disabled]::-moz-placeholder, .checkbox input[disabled]:hover::-moz-placeholder, .menu-checkbox input[disabled]:hover::-moz-placeholder, .radio input[disabled]:hover::-moz-placeholder {
812
+ color: rgba(34, 35, 36, 0.3);
813
+ }
814
+
815
+ .checkbox input[disabled]::-webkit-input-placeholder, .menu-checkbox input[disabled]::-webkit-input-placeholder, .radio input[disabled]::-webkit-input-placeholder, .checkbox input[disabled]:hover::-webkit-input-placeholder, .menu-checkbox input[disabled]:hover::-webkit-input-placeholder, .radio input[disabled]:hover::-webkit-input-placeholder {
816
+ color: rgba(34, 35, 36, 0.3);
817
+ }
818
+
819
+ .checkbox input[disabled]:-moz-placeholder, .menu-checkbox input[disabled]:-moz-placeholder, .radio input[disabled]:-moz-placeholder, .checkbox input[disabled]:hover:-moz-placeholder, .menu-checkbox input[disabled]:hover:-moz-placeholder, .radio input[disabled]:hover:-moz-placeholder {
820
+ color: rgba(34, 35, 36, 0.3);
821
+ }
822
+
823
+ .checkbox input[disabled]:-ms-input-placeholder, .menu-checkbox input[disabled]:-ms-input-placeholder, .radio input[disabled]:-ms-input-placeholder, .checkbox input[disabled]:hover:-ms-input-placeholder, .menu-checkbox input[disabled]:hover:-ms-input-placeholder, .radio input[disabled]:hover:-ms-input-placeholder {
824
+ color: rgba(34, 35, 36, 0.3);
825
+ }
826
+
827
+ .checkbox input:after, .menu-checkbox input:after, .radio input:after {
828
+ border: 1px solid white;
829
+ border-right: 0;
830
+ border-top: 0;
831
+ content: " ";
832
+ display: block;
833
+ height: 7px;
834
+ pointer-events: none;
835
+ position: absolute;
836
+ transform: rotate(-45deg);
837
+ width: 7px;
838
+ height: 4px;
839
+ left: 3px;
840
+ opacity: 0;
841
+ position: absolute;
842
+ top: 3px;
843
+ transform: rotate(-45deg) scale(1);
844
+ }
845
+
846
+ .checkbox input:checked, .menu-checkbox input:checked, .radio input:checked {
847
+ background: #1fc8db;
848
+ border-color: #1fc8db;
849
+ box-shadow: none;
850
+ }
851
+
852
+ .checkbox input:checked:after, .menu-checkbox input:checked:after, .radio input:checked:after {
853
+ opacity: 1;
854
+ }
855
+
856
+ .checkbox:hover, .menu-checkbox:hover, .radio:hover {
857
+ color: #222324;
858
+ }
859
+
860
+ .checkbox:hover input, .menu-checkbox:hover input, .radio:hover input {
861
+ border-color: #aeb1b5;
862
+ }
863
+
864
+ .checkbox:hover input:checked, .menu-checkbox:hover input:checked, .radio:hover input:checked {
865
+ border-color: #1fc8db;
866
+ }
867
+
868
+ .is-disabled.checkbox, .is-disabled.menu-checkbox, .is-disabled.radio, .is-disabled.checkbox:hover, .is-disabled.menu-checkbox:hover, .is-disabled.radio:hover {
869
+ color: #aeb1b5;
870
+ }
871
+
872
+ .radio + .radio {
873
+ margin-left: 10px;
874
+ }
875
+
876
+ .radio input {
877
+ border-radius: 8px;
878
+ }
879
+
880
+ .radio input:after {
881
+ background: white;
882
+ border: 0;
883
+ border-radius: 2px;
884
+ left: 4px;
885
+ top: 4px;
886
+ transform: none;
887
+ width: 4px;
888
+ }
889
+
890
+ .select {
891
+ display: inline-block;
892
+ height: 32px;
893
+ position: relative;
894
+ vertical-align: top;
895
+ }
896
+
897
+ .select select {
898
+ -moz-appearance: none;
899
+ -webkit-appearance: none;
900
+ background: white;
901
+ border: 1px solid #d3d6db;
902
+ border-radius: 3px;
903
+ color: #222324;
904
+ display: inline-block;
905
+ font-size: 14px;
906
+ height: 32px;
907
+ line-height: 24px;
908
+ padding: 3px 8px;
909
+ position: relative;
910
+ vertical-align: top;
911
+ cursor: pointer;
912
+ display: block;
913
+ outline: none;
914
+ padding-right: 36px;
915
+ }
916
+
917
+ .select select:hover {
918
+ border-color: #aeb1b5;
919
+ }
920
+
921
+ .select select:active, .select select:focus {
922
+ border-color: #1fc8db;
923
+ outline: none;
924
+ }
925
+
926
+ .select select[disabled], .select select[disabled]:hover {
927
+ background: #f5f7fa;
928
+ border-color: #d3d6db;
929
+ }
930
+
931
+ .select select[disabled]::-moz-placeholder, .select select[disabled]:hover::-moz-placeholder {
932
+ color: rgba(34, 35, 36, 0.3);
933
+ }
934
+
935
+ .select select[disabled]::-webkit-input-placeholder, .select select[disabled]:hover::-webkit-input-placeholder {
936
+ color: rgba(34, 35, 36, 0.3);
937
+ }
938
+
939
+ .select select[disabled]:-moz-placeholder, .select select[disabled]:hover:-moz-placeholder {
940
+ color: rgba(34, 35, 36, 0.3);
941
+ }
942
+
943
+ .select select[disabled]:-ms-input-placeholder, .select select[disabled]:hover:-ms-input-placeholder {
944
+ color: rgba(34, 35, 36, 0.3);
945
+ }
946
+
947
+ .select select:hover {
948
+ border-color: #aeb1b5;
949
+ }
950
+
951
+ .select select::ms-expand {
952
+ display: none;
953
+ }
954
+
955
+ .select:after {
956
+ border: 1px solid #1fc8db;
957
+ border-right: 0;
958
+ border-top: 0;
959
+ content: " ";
960
+ display: block;
961
+ height: 7px;
962
+ pointer-events: none;
963
+ position: absolute;
964
+ transform: rotate(-45deg);
965
+ width: 7px;
966
+ margin-top: -6px;
967
+ right: 16px;
968
+ top: 50%;
969
+ }
970
+
971
+ .select:hover:after {
972
+ border-color: #222324;
973
+ }
974
+
975
+ .control {
976
+ position: relative;
977
+ text-align: left;
978
+ }
979
+
980
+ .control.is-loading:after {
981
+ position: absolute !important;
982
+ right: 8px;
983
+ top: 8px;
984
+ }
985
+
986
+ .control:not(:last-child) {
987
+ margin-bottom: 10px;
988
+ }
989
+
990
+ .control.is-withicon .fa {
991
+ display: inline-block;
992
+ font-size: 14px;
993
+ height: 20px;
994
+ line-height: 20px;
995
+ text-align: center;
996
+ vertical-align: top;
997
+ width: 20px;
998
+ color: #aeb1b5;
999
+ left: 6px;
1000
+ pointer-events: none;
1001
+ position: absolute;
1002
+ top: 6px;
1003
+ z-index: 1;
1004
+ }
1005
+
1006
+ .control.is-withicon .input, .control.is-withicon .textarea {
1007
+ padding-left: 32px;
1008
+ }
1009
+
1010
+ .control.is-withicon .input:focus + .fa, .control.is-withicon .textarea:focus + .fa {
1011
+ color: #1fc8db;
1012
+ }
1013
+
1014
+ .control.is-horizontal {
1015
+ display: flex;
1016
+ }
1017
+
1018
+ .control.is-horizontal > .button:not(:last-child),
1019
+ .control.is-horizontal > .input:not(:last-child),
1020
+ .control.is-horizontal > .textarea:not(:last-child),
1021
+ .control.is-horizontal > .select:not(:last-child) {
1022
+ margin-right: 10px;
1023
+ }
1024
+
1025
+ .control.is-horizontal > .input, .control.is-horizontal > .textarea {
1026
+ flex: 1;
1027
+ }
1028
+
1029
+ .control.is-grouped {
1030
+ display: flex;
1031
+ }
1032
+
1033
+ .control.is-grouped .input, .control.is-grouped .textarea,
1034
+ .control.is-grouped .button,
1035
+ .control.is-grouped .select {
1036
+ border-radius: 0;
1037
+ margin-right: -1px;
1038
+ }
1039
+
1040
+ .control.is-grouped .input:hover, .control.is-grouped .textarea:hover,
1041
+ .control.is-grouped .button:hover,
1042
+ .control.is-grouped .select:hover {
1043
+ z-index: 2;
1044
+ }
1045
+
1046
+ .control.is-grouped .input:active, .control.is-grouped .textarea:active, .control.is-grouped .input:focus, .control.is-grouped .textarea:focus,
1047
+ .control.is-grouped .button:active,
1048
+ .control.is-grouped .button:focus,
1049
+ .control.is-grouped .select:active,
1050
+ .control.is-grouped .select:focus {
1051
+ z-index: 3;
1052
+ }
1053
+
1054
+ .control.is-grouped .input:first-child, .control.is-grouped .textarea:first-child,
1055
+ .control.is-grouped .button:first-child,
1056
+ .control.is-grouped .select:first-child {
1057
+ border-radius: 3px 0 0 3px;
1058
+ }
1059
+
1060
+ .control.is-grouped .input:first-child select, .control.is-grouped .textarea:first-child select,
1061
+ .control.is-grouped .button:first-child select,
1062
+ .control.is-grouped .select:first-child select {
1063
+ border-radius: 3px 0 0 3px;
1064
+ }
1065
+
1066
+ .control.is-grouped .input:last-child, .control.is-grouped .textarea:last-child,
1067
+ .control.is-grouped .button:last-child,
1068
+ .control.is-grouped .select:last-child {
1069
+ border-radius: 0 3px 3px 0;
1070
+ }
1071
+
1072
+ .control.is-grouped.is-centered {
1073
+ justify-content: center;
1074
+ }
1075
+
1076
+ .button {
1077
+ -moz-appearance: none;
1078
+ -webkit-appearance: none;
1079
+ background: white;
1080
+ border: 1px solid #d3d6db;
1081
+ border-radius: 3px;
1082
+ color: #222324;
1083
+ display: inline-block;
1084
+ font-size: 14px;
1085
+ height: 32px;
1086
+ line-height: 24px;
1087
+ padding: 3px 8px;
1088
+ position: relative;
1089
+ vertical-align: top;
1090
+ -webkit-touch-callout: none;
1091
+ -webkit-user-select: none;
1092
+ -moz-user-select: none;
1093
+ -ms-user-select: none;
1094
+ user-select: none;
1095
+ padding: 3px 10px;
1096
+ text-align: center;
1097
+ white-space: nowrap;
1098
+ }
1099
+
1100
+ .button:hover {
1101
+ border-color: #aeb1b5;
1102
+ }
1103
+
1104
+ .button:active, .button:focus {
1105
+ border-color: #1fc8db;
1106
+ outline: none;
1107
+ }
1108
+
1109
+ .button[disabled], .button[disabled]:hover {
1110
+ background: #f5f7fa;
1111
+ border-color: #d3d6db;
1112
+ }
1113
+
1114
+ .button[disabled]::-moz-placeholder, .button[disabled]:hover::-moz-placeholder {
1115
+ color: rgba(34, 35, 36, 0.3);
1116
+ }
1117
+
1118
+ .button[disabled]::-webkit-input-placeholder, .button[disabled]:hover::-webkit-input-placeholder {
1119
+ color: rgba(34, 35, 36, 0.3);
1120
+ }
1121
+
1122
+ .button[disabled]:-moz-placeholder, .button[disabled]:hover:-moz-placeholder {
1123
+ color: rgba(34, 35, 36, 0.3);
1124
+ }
1125
+
1126
+ .button[disabled]:-ms-input-placeholder, .button[disabled]:hover:-ms-input-placeholder {
1127
+ color: rgba(34, 35, 36, 0.3);
1128
+ }
1129
+
1130
+ .button strong {
1131
+ color: inherit;
1132
+ }
1133
+
1134
+ .button small {
1135
+ display: block;
1136
+ font-size: 11px;
1137
+ line-height: 1;
1138
+ margin-top: 5px;
1139
+ }
1140
+
1141
+ .button .fa {
1142
+ line-height: 24px;
1143
+ margin: 0 -2px;
1144
+ width: 24px;
1145
+ }
1146
+
1147
+ .button:hover {
1148
+ color: #222324;
1149
+ }
1150
+
1151
+ .button:active {
1152
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
1153
+ }
1154
+
1155
+ .button.is-dark {
1156
+ background: #222324;
1157
+ border-color: transparent;
1158
+ color: white;
1159
+ }
1160
+
1161
+ .button.is-dark:hover, .button.is-dark:focus {
1162
+ background: #090a0a;
1163
+ border-color: transparent;
1164
+ color: white;
1165
+ }
1166
+
1167
+ .button.is-dark:active {
1168
+ border-color: transparent;
1169
+ }
1170
+
1171
+ .button.is-dark.is-outlined {
1172
+ background: transparent;
1173
+ border-color: #222324;
1174
+ color: #222324;
1175
+ }
1176
+
1177
+ .button.is-dark.is-outlined:hover, .button.is-dark.is-outlined:focus {
1178
+ border-color: #090a0a;
1179
+ color: #090a0a;
1180
+ }
1181
+
1182
+ .button.is-dark.is-inverted {
1183
+ background: white;
1184
+ color: #222324;
1185
+ }
1186
+
1187
+ .button.is-dark.is-inverted:hover {
1188
+ background: #f2f2f2;
1189
+ }
1190
+
1191
+ .button.is-dark.is-inverted.is-outlined {
1192
+ background-color: transparent;
1193
+ border-color: white;
1194
+ color: white;
1195
+ }
1196
+
1197
+ .button.is-dark.is-inverted.is-outlined:hover {
1198
+ background: rgba(0, 0, 0, 0.05);
1199
+ }
1200
+
1201
+ .button.is-dark.is-loading:after {
1202
+ border-color: transparent transparent white white !important;
1203
+ }
1204
+
1205
+ .button.is-primary {
1206
+ background: #1fc8db;
1207
+ border-color: transparent;
1208
+ color: white;
1209
+ }
1210
+
1211
+ .button.is-primary:hover, .button.is-primary:focus {
1212
+ background: #199fae;
1213
+ border-color: transparent;
1214
+ color: white;
1215
+ }
1216
+
1217
+ .button.is-primary:active {
1218
+ border-color: transparent;
1219
+ }
1220
+
1221
+ .button.is-primary.is-outlined {
1222
+ background: transparent;
1223
+ border-color: #1fc8db;
1224
+ color: #1fc8db;
1225
+ }
1226
+
1227
+ .button.is-primary.is-outlined:hover, .button.is-primary.is-outlined:focus {
1228
+ border-color: #199fae;
1229
+ color: #199fae;
1230
+ }
1231
+
1232
+ .button.is-primary.is-inverted {
1233
+ background: white;
1234
+ color: #1fc8db;
1235
+ }
1236
+
1237
+ .button.is-primary.is-inverted:hover {
1238
+ background: #f2f2f2;
1239
+ }
1240
+
1241
+ .button.is-primary.is-inverted.is-outlined {
1242
+ background-color: transparent;
1243
+ border-color: white;
1244
+ color: white;
1245
+ }
1246
+
1247
+ .button.is-primary.is-inverted.is-outlined:hover {
1248
+ background: rgba(0, 0, 0, 0.05);
1249
+ }
1250
+
1251
+ .button.is-primary.is-loading:after {
1252
+ border-color: transparent transparent white white !important;
1253
+ }
1254
+
1255
+ .button.is-info {
1256
+ background: #42afe3;
1257
+ border-color: transparent;
1258
+ color: white;
1259
+ }
1260
+
1261
+ .button.is-info:hover, .button.is-info:focus {
1262
+ background: #1f99d3;
1263
+ border-color: transparent;
1264
+ color: white;
1265
+ }
1266
+
1267
+ .button.is-info:active {
1268
+ border-color: transparent;
1269
+ }
1270
+
1271
+ .button.is-info.is-outlined {
1272
+ background: transparent;
1273
+ border-color: #42afe3;
1274
+ color: #42afe3;
1275
+ }
1276
+
1277
+ .button.is-info.is-outlined:hover, .button.is-info.is-outlined:focus {
1278
+ border-color: #1f99d3;
1279
+ color: #1f99d3;
1280
+ }
1281
+
1282
+ .button.is-info.is-inverted {
1283
+ background: white;
1284
+ color: #42afe3;
1285
+ }
1286
+
1287
+ .button.is-info.is-inverted:hover {
1288
+ background: #f2f2f2;
1289
+ }
1290
+
1291
+ .button.is-info.is-inverted.is-outlined {
1292
+ background-color: transparent;
1293
+ border-color: white;
1294
+ color: white;
1295
+ }
1296
+
1297
+ .button.is-info.is-inverted.is-outlined:hover {
1298
+ background: rgba(0, 0, 0, 0.05);
1299
+ }
1300
+
1301
+ .button.is-info.is-loading:after {
1302
+ border-color: transparent transparent white white !important;
1303
+ }
1304
+
1305
+ .button.is-success {
1306
+ background: #97cd76;
1307
+ border-color: transparent;
1308
+ color: white;
1309
+ }
1310
+
1311
+ .button.is-success:hover, .button.is-success:focus {
1312
+ background: #7bbf51;
1313
+ border-color: transparent;
1314
+ color: white;
1315
+ }
1316
+
1317
+ .button.is-success:active {
1318
+ border-color: transparent;
1319
+ }
1320
+
1321
+ .button.is-success.is-outlined {
1322
+ background: transparent;
1323
+ border-color: #97cd76;
1324
+ color: #97cd76;
1325
+ }
1326
+
1327
+ .button.is-success.is-outlined:hover, .button.is-success.is-outlined:focus {
1328
+ border-color: #7bbf51;
1329
+ color: #7bbf51;
1330
+ }
1331
+
1332
+ .button.is-success.is-inverted {
1333
+ background: white;
1334
+ color: #97cd76;
1335
+ }
1336
+
1337
+ .button.is-success.is-inverted:hover {
1338
+ background: #f2f2f2;
1339
+ }
1340
+
1341
+ .button.is-success.is-inverted.is-outlined {
1342
+ background-color: transparent;
1343
+ border-color: white;
1344
+ color: white;
1345
+ }
1346
+
1347
+ .button.is-success.is-inverted.is-outlined:hover {
1348
+ background: rgba(0, 0, 0, 0.05);
1349
+ }
1350
+
1351
+ .button.is-success.is-loading:after {
1352
+ border-color: transparent transparent white white !important;
1353
+ }
1354
+
1355
+ .button.is-warning {
1356
+ background: #fce473;
1357
+ border-color: transparent;
1358
+ color: rgba(0, 0, 0, 0.5);
1359
+ }
1360
+
1361
+ .button.is-warning:hover, .button.is-warning:focus {
1362
+ background: #fbda41;
1363
+ border-color: transparent;
1364
+ color: rgba(0, 0, 0, 0.5);
1365
+ }
1366
+
1367
+ .button.is-warning:active {
1368
+ border-color: transparent;
1369
+ }
1370
+
1371
+ .button.is-warning.is-outlined {
1372
+ background: transparent;
1373
+ border-color: #fce473;
1374
+ color: #fce473;
1375
+ }
1376
+
1377
+ .button.is-warning.is-outlined:hover, .button.is-warning.is-outlined:focus {
1378
+ border-color: #fbda41;
1379
+ color: #fbda41;
1380
+ }
1381
+
1382
+ .button.is-warning.is-inverted {
1383
+ background: rgba(0, 0, 0, 0.5);
1384
+ color: #fce473;
1385
+ }
1386
+
1387
+ .button.is-warning.is-inverted:hover {
1388
+ background: rgba(0, 0, 0, 0.5);
1389
+ }
1390
+
1391
+ .button.is-warning.is-inverted.is-outlined {
1392
+ background-color: transparent;
1393
+ border-color: rgba(0, 0, 0, 0.5);
1394
+ color: rgba(0, 0, 0, 0.5);
1395
+ }
1396
+
1397
+ .button.is-warning.is-inverted.is-outlined:hover {
1398
+ background: rgba(0, 0, 0, 0.05);
1399
+ }
1400
+
1401
+ .button.is-warning.is-loading:after {
1402
+ border-color: transparent transparent rgba(0, 0, 0, 0.5) rgba(0, 0, 0, 0.5) !important;
1403
+ }
1404
+
1405
+ .button.is-danger {
1406
+ background: #ed6c63;
1407
+ border-color: transparent;
1408
+ color: white;
1409
+ }
1410
+
1411
+ .button.is-danger:hover, .button.is-danger:focus {
1412
+ background: #e84135;
1413
+ border-color: transparent;
1414
+ color: white;
1415
+ }
1416
+
1417
+ .button.is-danger:active {
1418
+ border-color: transparent;
1419
+ }
1420
+
1421
+ .button.is-danger.is-outlined {
1422
+ background: transparent;
1423
+ border-color: #ed6c63;
1424
+ color: #ed6c63;
1425
+ }
1426
+
1427
+ .button.is-danger.is-outlined:hover, .button.is-danger.is-outlined:focus {
1428
+ border-color: #e84135;
1429
+ color: #e84135;
1430
+ }
1431
+
1432
+ .button.is-danger.is-inverted {
1433
+ background: white;
1434
+ color: #ed6c63;
1435
+ }
1436
+
1437
+ .button.is-danger.is-inverted:hover {
1438
+ background: #f2f2f2;
1439
+ }
1440
+
1441
+ .button.is-danger.is-inverted.is-outlined {
1442
+ background-color: transparent;
1443
+ border-color: white;
1444
+ color: white;
1445
+ }
1446
+
1447
+ .button.is-danger.is-inverted.is-outlined:hover {
1448
+ background: rgba(0, 0, 0, 0.05);
1449
+ }
1450
+
1451
+ .button.is-danger.is-loading:after {
1452
+ border-color: transparent transparent white white !important;
1453
+ }
1454
+
1455
+ .button.is-small {
1456
+ border-radius: 2px;
1457
+ font-size: 11px;
1458
+ height: 24px;
1459
+ line-height: 16px;
1460
+ padding: 3px 6px;
1461
+ }
1462
+
1463
+ .button.is-medium {
1464
+ font-size: 18px;
1465
+ height: 40px;
1466
+ padding: 7px 14px;
1467
+ }
1468
+
1469
+ .button.is-large {
1470
+ font-size: 22px;
1471
+ height: 48px;
1472
+ padding: 11px 20px;
1473
+ }
1474
+
1475
+ .button.is-fullwidth {
1476
+ display: block;
1477
+ width: 100%;
1478
+ }
1479
+
1480
+ .button.is-flexible {
1481
+ height: auto;
1482
+ }
1483
+
1484
+ .button.is-loading {
1485
+ color: transparent;
1486
+ pointer-events: none;
1487
+ }
1488
+
1489
+ .button.is-loading:after {
1490
+ left: 50%;
1491
+ margin-left: -8px;
1492
+ margin-top: -8px;
1493
+ position: absolute;
1494
+ top: 50%;
1495
+ position: absolute !important;
1496
+ }
1497
+
1498
+ .button.is-disabled, .button[disabled] {
1499
+ opacity: 0.5;
1500
+ pointer-events: none;
1501
+ }
1502
+
1503
+ @media screen and (min-width: 769px) {
1504
+ .button small {
1505
+ color: #69707a;
1506
+ left: 0;
1507
+ margin-top: 10px;
1508
+ position: absolute;
1509
+ top: 100%;
1510
+ width: 100%;
1511
+ }
1512
+ }
1513
+
1514
+ .title,
1515
+ .subtitle {
1516
+ font-weight: 300;
1517
+ }
1518
+
1519
+ .title:not(:last-child),
1520
+ .subtitle:not(:last-child) {
1521
+ margin-bottom: 20px;
1522
+ }
1523
+
1524
+ .title {
1525
+ color: #222324;
1526
+ font-size: 28px;
1527
+ line-height: 1;
1528
+ }
1529
+
1530
+ .title strong {
1531
+ color: inherit;
1532
+ }
1533
+
1534
+ .title code {
1535
+ display: inline-block;
1536
+ font-size: 28px;
1537
+ }
1538
+
1539
+ .title + .subtitle {
1540
+ margin-top: -10px;
1541
+ }
1542
+
1543
+ .title + .highlight {
1544
+ margin-top: -10px;
1545
+ }
1546
+
1547
+ .title.is-normal {
1548
+ font-weight: 400;
1549
+ }
1550
+
1551
+ .title.is-normal strong {
1552
+ font-weight: 700;
1553
+ }
1554
+
1555
+ .title.is-1 {
1556
+ font-size: 48px;
1557
+ }
1558
+
1559
+ .title.is-1 code {
1560
+ font-size: 40px;
1561
+ }
1562
+
1563
+ .title.is-2 {
1564
+ font-size: 40px;
1565
+ }
1566
+
1567
+ .title.is-2 code {
1568
+ font-size: 28px;
1569
+ }
1570
+
1571
+ .title.is-3 {
1572
+ font-size: 28px;
1573
+ }
1574
+
1575
+ .title.is-3 code {
1576
+ font-size: 24px;
1577
+ }
1578
+
1579
+ .title.is-4 {
1580
+ font-size: 24px;
1581
+ }
1582
+
1583
+ .title.is-4 code {
1584
+ font-size: 18px;
1585
+ }
1586
+
1587
+ .title.is-5 {
1588
+ font-size: 18px;
1589
+ }
1590
+
1591
+ .title.is-5 code {
1592
+ font-size: 14px;
1593
+ }
1594
+
1595
+ .title.is-6 {
1596
+ font-size: 14px;
1597
+ }
1598
+
1599
+ .title.is-6 code {
1600
+ font-size: 14px;
1601
+ }
1602
+
1603
+ @media screen and (min-width: 769px) {
1604
+ .title + .subtitle {
1605
+ margin-top: -15px;
1606
+ }
1607
+ }
1608
+
1609
+ .subtitle {
1610
+ font-size: 18px;
1611
+ line-height: 1.125;
1612
+ }
1613
+
1614
+ .subtitle strong {
1615
+ color: #222324;
1616
+ font-weight: 400;
1617
+ }
1618
+
1619
+ .subtitle code {
1620
+ border-radius: 3px;
1621
+ display: inline-block;
1622
+ font-size: 14px;
1623
+ padding: 2px 3px;
1624
+ vertical-align: top;
1625
+ }
1626
+
1627
+ .subtitle + .text {
1628
+ margin-top: 20px;
1629
+ }
1630
+
1631
+ .subtitle.is-normal {
1632
+ font-weight: 400;
1633
+ }
1634
+
1635
+ .subtitle.is-normal strong {
1636
+ font-weight: 700;
1637
+ }
1638
+
1639
+ .subtitle.is-1 {
1640
+ font-size: 48px;
1641
+ }
1642
+
1643
+ .subtitle.is-1 code {
1644
+ font-size: 40px;
1645
+ }
1646
+
1647
+ .subtitle.is-2 {
1648
+ font-size: 40px;
1649
+ }
1650
+
1651
+ .subtitle.is-2 code {
1652
+ font-size: 28px;
1653
+ }
1654
+
1655
+ .subtitle.is-3 {
1656
+ font-size: 28px;
1657
+ }
1658
+
1659
+ .subtitle.is-3 code {
1660
+ font-size: 24px;
1661
+ }
1662
+
1663
+ .subtitle.is-4 {
1664
+ font-size: 24px;
1665
+ }
1666
+
1667
+ .subtitle.is-4 code {
1668
+ font-size: 18px;
1669
+ }
1670
+
1671
+ .subtitle.is-5 {
1672
+ font-size: 18px;
1673
+ }
1674
+
1675
+ .subtitle.is-5 code {
1676
+ font-size: 14px;
1677
+ }
1678
+
1679
+ .subtitle.is-6 {
1680
+ font-size: 14px;
1681
+ }
1682
+
1683
+ .subtitle.is-6 code {
1684
+ font-size: 14px;
1685
+ }
1686
+
1687
+ .message-body {
1688
+ border: 1px solid #d3d6db;
1689
+ border-radius: 3px;
1690
+ padding: 12px 15px;
1691
+ }
1692
+
1693
+ .message-body strong {
1694
+ color: inherit;
1695
+ }
1696
+
1697
+ .message-header {
1698
+ background: #69707a;
1699
+ border-radius: 3px 3px 0 0;
1700
+ color: white;
1701
+ font-size: 10px;
1702
+ font-weight: bold;
1703
+ letter-spacing: 1px;
1704
+ padding: 3px 8px;
1705
+ text-transform: uppercase;
1706
+ }
1707
+
1708
+ .message-header + .message-body {
1709
+ border-radius: 0 0 3px 3px;
1710
+ border-top: none;
1711
+ }
1712
+
1713
+ .message {
1714
+ background: #f5f7fa;
1715
+ border-radius: 3px;
1716
+ }
1717
+
1718
+ .message:not(:last-child) {
1719
+ margin-bottom: 20px;
1720
+ }
1721
+
1722
+ .message.is-dark {
1723
+ background: whitesmoke;
1724
+ }
1725
+
1726
+ .message.is-dark .message-header {
1727
+ background: #222324;
1728
+ color: white;
1729
+ }
1730
+
1731
+ .message.is-dark .message-body {
1732
+ border-color: #222324;
1733
+ color: gray;
1734
+ }
1735
+
1736
+ .message.is-primary {
1737
+ background: #edfbfc;
1738
+ }
1739
+
1740
+ .message.is-primary .message-header {
1741
+ background: #1fc8db;
1742
+ color: white;
1743
+ }
1744
+
1745
+ .message.is-primary .message-body {
1746
+ border-color: #1fc8db;
1747
+ color: gray;
1748
+ }
1749
+
1750
+ .message.is-info {
1751
+ background: #edf7fc;
1752
+ }
1753
+
1754
+ .message.is-info .message-header {
1755
+ background: #42afe3;
1756
+ color: white;
1757
+ }
1758
+
1759
+ .message.is-info .message-body {
1760
+ border-color: #42afe3;
1761
+ color: gray;
1762
+ }
1763
+
1764
+ .message.is-success {
1765
+ background: #f4faf0;
1766
+ }
1767
+
1768
+ .message.is-success .message-header {
1769
+ background: #97cd76;
1770
+ color: white;
1771
+ }
1772
+
1773
+ .message.is-success .message-body {
1774
+ border-color: #97cd76;
1775
+ color: gray;
1776
+ }
1777
+
1778
+ .message.is-warning {
1779
+ background: #fffbeb;
1780
+ }
1781
+
1782
+ .message.is-warning .message-header {
1783
+ background: #fce473;
1784
+ color: rgba(0, 0, 0, 0.5);
1785
+ }
1786
+
1787
+ .message.is-warning .message-body {
1788
+ border-color: #fce473;
1789
+ color: #666666;
1790
+ }
1791
+
1792
+ .message.is-danger {
1793
+ background: #fdeeed;
1794
+ }
1795
+
1796
+ .message.is-danger .message-header {
1797
+ background: #ed6c63;
1798
+ color: white;
1799
+ }
1800
+
1801
+ .message.is-danger .message-body {
1802
+ border-color: #ed6c63;
1803
+ color: gray;
1804
+ }
1805
+
1806
+ .notification {
1807
+ background: #f5f7fa;
1808
+ border-radius: 3px;
1809
+ padding: 16px 20px;
1810
+ position: relative;
1811
+ }
1812
+
1813
+ .notification:after {
1814
+ clear: both;
1815
+ content: " ";
1816
+ display: table;
1817
+ }
1818
+
1819
+ .notification:not(:last-child) {
1820
+ margin-bottom: 20px;
1821
+ }
1822
+
1823
+ .notification .title {
1824
+ color: inherit;
1825
+ }
1826
+
1827
+ .notification.is-dark {
1828
+ background: #222324;
1829
+ color: white;
1830
+ }
1831
+
1832
+ .notification.is-primary {
1833
+ background: #1fc8db;
1834
+ color: white;
1835
+ }
1836
+
1837
+ .notification.is-info {
1838
+ background: #42afe3;
1839
+ color: white;
1840
+ }
1841
+
1842
+ .notification.is-success {
1843
+ background: #97cd76;
1844
+ color: white;
1845
+ }
1846
+
1847
+ .notification.is-warning {
1848
+ background: #fce473;
1849
+ color: rgba(0, 0, 0, 0.5);
1850
+ }
1851
+
1852
+ .notification.is-danger {
1853
+ background: #ed6c63;
1854
+ color: white;
1855
+ }
1856
+
1857
+ .notification .delete {
1858
+ border-radius: 0 3px;
1859
+ float: right;
1860
+ margin: -16px -20px 0 20px;
1861
+ }
1862
+
1863
+ .delete {
1864
+ -webkit-touch-callout: none;
1865
+ -webkit-user-select: none;
1866
+ -moz-user-select: none;
1867
+ -ms-user-select: none;
1868
+ user-select: none;
1869
+ -moz-appearance: none;
1870
+ -webkit-appearance: none;
1871
+ background: rgba(0, 0, 0, 0.2);
1872
+ border: none;
1873
+ border-radius: 290486px;
1874
+ cursor: pointer;
1875
+ display: inline-block;
1876
+ height: 24px;
1877
+ position: relative;
1878
+ vertical-align: top;
1879
+ width: 24px;
1880
+ }
1881
+
1882
+ .delete:before, .delete:after {
1883
+ background: white;
1884
+ content: "";
1885
+ display: block;
1886
+ height: 2px;
1887
+ left: 6px;
1888
+ position: absolute;
1889
+ top: 11px;
1890
+ width: 12px;
1891
+ }
1892
+
1893
+ .delete:before {
1894
+ transform: rotate(45deg);
1895
+ }
1896
+
1897
+ .delete:after {
1898
+ transform: rotate(-45deg);
1899
+ }
1900
+
1901
+ .delete:hover {
1902
+ background: rgba(0, 0, 0, 0.5);
1903
+ }
1904
+
1905
+ .delete.is-small, .tag:not(.is-large) .delete {
1906
+ height: 16px;
1907
+ width: 16px;
1908
+ }
1909
+
1910
+ .delete.is-small:before, .tag:not(.is-large) .delete:before, .delete.is-small:after, .tag:not(.is-large) .delete:after {
1911
+ left: 4px;
1912
+ top: 7px;
1913
+ width: 8px;
1914
+ }
1915
+
1916
+ .icon {
1917
+ display: inline-block;
1918
+ font-size: 21px;
1919
+ height: 24px;
1920
+ line-height: 24px;
1921
+ text-align: center;
1922
+ vertical-align: top;
1923
+ width: 24px;
1924
+ }
1925
+
1926
+ .icon .fa {
1927
+ font-size: inherit;
1928
+ line-height: inherit;
1929
+ }
1930
+
1931
+ .icon.is-small {
1932
+ display: inline-block;
1933
+ font-size: 14px;
1934
+ height: 20px;
1935
+ line-height: 20px;
1936
+ text-align: center;
1937
+ vertical-align: top;
1938
+ width: 20px;
1939
+ }
1940
+
1941
+ .icon.is-medium {
1942
+ display: inline-block;
1943
+ font-size: 28px;
1944
+ height: 32px;
1945
+ line-height: 32px;
1946
+ text-align: center;
1947
+ vertical-align: top;
1948
+ width: 32px;
1949
+ }
1950
+
1951
+ .icon.is-large {
1952
+ display: inline-block;
1953
+ font-size: 42px;
1954
+ height: 48px;
1955
+ line-height: 48px;
1956
+ text-align: center;
1957
+ vertical-align: top;
1958
+ width: 48px;
1959
+ }
1960
+
1961
+ .hamburger, .header-toggle {
1962
+ cursor: pointer;
1963
+ display: block;
1964
+ height: 50px;
1965
+ position: relative;
1966
+ width: 50px;
1967
+ }
1968
+
1969
+ .hamburger span, .header-toggle span {
1970
+ background: #69707a;
1971
+ display: block;
1972
+ height: 1px;
1973
+ left: 50%;
1974
+ margin-left: -7px;
1975
+ position: absolute;
1976
+ top: 50%;
1977
+ transition: none 86ms ease-out;
1978
+ transition-property: background, left, opacity, transform;
1979
+ width: 15px;
1980
+ }
1981
+
1982
+ .hamburger span:nth-child(1), .header-toggle span:nth-child(1) {
1983
+ margin-top: -6px;
1984
+ }
1985
+
1986
+ .hamburger span:nth-child(2), .header-toggle span:nth-child(2) {
1987
+ margin-top: -1px;
1988
+ }
1989
+
1990
+ .hamburger span:nth-child(3), .header-toggle span:nth-child(3) {
1991
+ margin-top: 4px;
1992
+ }
1993
+
1994
+ .hamburger:hover, .header-toggle:hover {
1995
+ background: #f5f7fa;
1996
+ }
1997
+
1998
+ .hamburger.is-active span, .is-active.header-toggle span {
1999
+ background: #1fc8db;
2000
+ }
2001
+
2002
+ .hamburger.is-active span:nth-child(1), .is-active.header-toggle span:nth-child(1) {
2003
+ margin-left: -5px;
2004
+ transform: rotate(45deg);
2005
+ transform-origin: left top;
2006
+ }
2007
+
2008
+ .hamburger.is-active span:nth-child(2), .is-active.header-toggle span:nth-child(2) {
2009
+ opacity: 0;
2010
+ }
2011
+
2012
+ .hamburger.is-active span:nth-child(3), .is-active.header-toggle span:nth-child(3) {
2013
+ margin-left: -5px;
2014
+ transform: rotate(-45deg);
2015
+ transform-origin: left bottom;
2016
+ }
2017
+
2018
+ @media screen and (min-width: 769px) {
2019
+ .hamburger, .header-toggle {
2020
+ height: 50px;
2021
+ width: 50px;
2022
+ }
2023
+ }
2024
+
2025
+ .heading {
2026
+ display: block;
2027
+ font-size: 11px;
2028
+ letter-spacing: 1px;
2029
+ margin-bottom: 5px;
2030
+ text-transform: uppercase;
2031
+ }
2032
+
2033
+ .highlight {
2034
+ font-size: 12px;
2035
+ font-weight: normal;
2036
+ max-width: 100%;
2037
+ overflow: hidden;
2038
+ padding: 0;
2039
+ }
2040
+
2041
+ .highlight:not(:last-child) {
2042
+ margin-bottom: 20px;
2043
+ }
2044
+
2045
+ .highlight pre {
2046
+ overflow: auto;
2047
+ max-width: 100%;
2048
+ }
2049
+
2050
+ .image {
2051
+ display: block;
2052
+ position: relative;
2053
+ vertical-align: top;
2054
+ }
2055
+
2056
+ .image img {
2057
+ bottom: 0;
2058
+ left: 0;
2059
+ position: absolute;
2060
+ right: 0;
2061
+ top: 0;
2062
+ display: block;
2063
+ width: 100%;
2064
+ }
2065
+
2066
+ .image.is-3x2 {
2067
+ padding-top: 66.6666%;
2068
+ }
2069
+
2070
+ .loader, .control.is-loading:after, .button.is-loading:after {
2071
+ animation: spin-around 500ms infinite linear;
2072
+ border: 2px solid #d3d6db;
2073
+ border-radius: 290486px;
2074
+ border-right-color: transparent;
2075
+ border-top-color: transparent;
2076
+ content: "";
2077
+ display: block;
2078
+ height: 16px;
2079
+ position: relative;
2080
+ width: 16px;
2081
+ }
2082
+
2083
+ .number {
2084
+ background: #f5f7fa;
2085
+ border-radius: 290486px;
2086
+ display: inline-block;
2087
+ font-size: 18px;
2088
+ vertical-align: top;
2089
+ }
2090
+
2091
+ .tag {
2092
+ background: #f5f7fa;
2093
+ border-radius: 3px;
2094
+ box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
2095
+ color: #69707a;
2096
+ display: inline-block;
2097
+ font-size: 12px;
2098
+ height: 24px;
2099
+ line-height: 16px;
2100
+ padding: 4px 10px;
2101
+ vertical-align: top;
2102
+ white-space: nowrap;
2103
+ }
2104
+
2105
+ .tag.is-dark {
2106
+ background: #69707a;
2107
+ color: white;
2108
+ }
2109
+
2110
+ .tag.is-rounded {
2111
+ border-radius: 290486px;
2112
+ }
2113
+
2114
+ .tag.is-medium {
2115
+ box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.1);
2116
+ font-size: 14px;
2117
+ height: 32px;
2118
+ padding: 7px 14px 9px;
2119
+ }
2120
+
2121
+ .tag:not(.is-large) .delete {
2122
+ margin-left: 4px;
2123
+ margin-right: -6px;
2124
+ }
2125
+
2126
+ .tag.is-large {
2127
+ box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.1);
2128
+ font-size: 18px;
2129
+ height: 40px;
2130
+ line-height: 24px;
2131
+ padding: 7px 18px 9px;
2132
+ }
2133
+
2134
+ .tag.is-large .delete {
2135
+ margin-left: 4px;
2136
+ margin-right: -8px;
2137
+ }
2138
+
2139
+ .tag.is-dark {
2140
+ background: #222324;
2141
+ color: white;
2142
+ }
2143
+
2144
+ .tag.is-primary {
2145
+ background: #1fc8db;
2146
+ color: white;
2147
+ }
2148
+
2149
+ .tag.is-info {
2150
+ background: #42afe3;
2151
+ color: white;
2152
+ }
2153
+
2154
+ .tag.is-success {
2155
+ background: #97cd76;
2156
+ color: white;
2157
+ }
2158
+
2159
+ .tag.is-warning {
2160
+ background: #fce473;
2161
+ color: rgba(0, 0, 0, 0.5);
2162
+ }
2163
+
2164
+ .tag.is-danger {
2165
+ background: #ed6c63;
2166
+ color: white;
2167
+ }
2168
+
2169
+ @media screen and (max-width: 768px) {
2170
+ .column + .column {
2171
+ margin-top: 20px;
2172
+ }
2173
+ }
2174
+
2175
+ @media screen and (min-width: 769px) {
2176
+ .column {
2177
+ flex: 1;
2178
+ }
2179
+ .column + .column {
2180
+ margin-left: 20px;
2181
+ }
2182
+ .column.is-double {
2183
+ flex: 2;
2184
+ }
2185
+ .column.is-triple {
2186
+ flex: 3;
2187
+ }
2188
+ .column.is-quadruple {
2189
+ flex: 4;
2190
+ }
2191
+ .column.is-half {
2192
+ flex: none;
2193
+ width: 50%;
2194
+ }
2195
+ .column.is-third {
2196
+ flex: none;
2197
+ width: 33.3333%;
2198
+ }
2199
+ .column.is-quarter {
2200
+ flex: none;
2201
+ width: 25%;
2202
+ }
2203
+ .column.is-1 {
2204
+ flex: none;
2205
+ width: 8.33333%;
2206
+ }
2207
+ .column.is-2 {
2208
+ flex: none;
2209
+ width: 16.66667%;
2210
+ }
2211
+ .column.is-3 {
2212
+ flex: none;
2213
+ width: 25%;
2214
+ }
2215
+ .column.is-4 {
2216
+ flex: none;
2217
+ width: 33.33333%;
2218
+ }
2219
+ .column.is-5 {
2220
+ flex: none;
2221
+ width: 41.66667%;
2222
+ }
2223
+ .column.is-6 {
2224
+ flex: none;
2225
+ width: 50%;
2226
+ }
2227
+ .column.is-7 {
2228
+ flex: none;
2229
+ width: 58.33333%;
2230
+ }
2231
+ .column.is-8 {
2232
+ flex: none;
2233
+ width: 66.66667%;
2234
+ }
2235
+ .column.is-9 {
2236
+ flex: none;
2237
+ width: 75%;
2238
+ }
2239
+ .column.is-10 {
2240
+ flex: none;
2241
+ width: 83.33333%;
2242
+ }
2243
+ .column.is-11 {
2244
+ flex: none;
2245
+ width: 91.66667%;
2246
+ }
2247
+ }
2248
+
2249
+ .columns:not(:last-child) {
2250
+ margin-bottom: 20px;
2251
+ }
2252
+
2253
+ @media screen and (min-width: 769px) {
2254
+ .columns {
2255
+ display: flex;
2256
+ }
2257
+ }
2258
+
2259
+ .columns.is-gapless > .column + .column {
2260
+ margin: 0;
2261
+ }
2262
+
2263
+ .columns.is-vcentered {
2264
+ align-items: center;
2265
+ }
2266
+
2267
+ @media screen and (min-width: 769px) {
2268
+ .columns.is-grid {
2269
+ flex-wrap: wrap;
2270
+ }
2271
+ .columns.is-grid > .column {
2272
+ flex-basis: 33.3333%;
2273
+ max-width: 33.3333%;
2274
+ padding: 10px;
2275
+ width: 33.3333%;
2276
+ }
2277
+ .columns.is-grid > .column + .column {
2278
+ margin-left: 0;
2279
+ }
2280
+ }
2281
+
2282
+ .navbar-item .title,
2283
+ .navbar-item .subtitle {
2284
+ margin-bottom: 0;
2285
+ }
2286
+
2287
+ @media screen and (max-width: 768px) {
2288
+ .navbar-item:not(:last-child) {
2289
+ margin-bottom: 10px;
2290
+ }
2291
+ }
2292
+
2293
+ .navbar:not(:last-child) {
2294
+ margin-bottom: 20px;
2295
+ }
2296
+
2297
+ .navbar code {
2298
+ border-radius: 3px;
2299
+ }
2300
+
2301
+ .navbar img {
2302
+ display: inline-block;
2303
+ vertical-align: top;
2304
+ }
2305
+
2306
+ @media screen and (min-width: 769px) {
2307
+ .navbar {
2308
+ align-items: center;
2309
+ display: flex;
2310
+ justify-content: space-between;
2311
+ }
2312
+ .navbar > .navbar-item:not(.is-narrow) {
2313
+ flex: 1;
2314
+ }
2315
+ }
2316
+
2317
+ .navbar-left .navbar-item.is-flexible,
2318
+ .navbar-right .navbar-item.is-flexible {
2319
+ flex: 1;
2320
+ }
2321
+
2322
+ .navbar-left .navbar-item:not(:last-child),
2323
+ .navbar-right .navbar-item:not(:last-child) {
2324
+ margin-right: 10px;
2325
+ }
2326
+
2327
+ @media screen and (max-width: 768px) {
2328
+ .navbar-left + .navbar-right {
2329
+ margin-top: 20px;
2330
+ }
2331
+ }
2332
+
2333
+ @media screen and (min-width: 769px) {
2334
+ .navbar-left {
2335
+ align-items: center;
2336
+ display: flex;
2337
+ }
2338
+ }
2339
+
2340
+ @media screen and (min-width: 769px) {
2341
+ .navbar-right {
2342
+ align-items: center;
2343
+ display: flex;
2344
+ justify-content: flex-end;
2345
+ }
2346
+ }
2347
+
2348
+ .card-image {
2349
+ display: block;
2350
+ position: relative;
2351
+ }
2352
+
2353
+ .card-image img {
2354
+ display: block;
2355
+ }
2356
+
2357
+ .card-image.is-square img, .card-image.is-4x3 img, .card-image.is-3x2 img {
2358
+ bottom: 0;
2359
+ left: 0;
2360
+ position: absolute;
2361
+ right: 0;
2362
+ top: 0;
2363
+ height: 100%;
2364
+ width: 100%;
2365
+ }
2366
+
2367
+ .card-image.is-square {
2368
+ padding-top: 100%;
2369
+ }
2370
+
2371
+ .card-image.is-4x3 {
2372
+ padding-top: 75%;
2373
+ }
2374
+
2375
+ .card-image.is-3x2 {
2376
+ padding-top: 66.6666%;
2377
+ }
2378
+
2379
+ .card-content {
2380
+ padding: 20px;
2381
+ }
2382
+
2383
+ .card-content .title + .subtitle {
2384
+ margin-top: -20px;
2385
+ }
2386
+
2387
+ .card-footer {
2388
+ background: #f5f7fa;
2389
+ display: block;
2390
+ padding: 10px;
2391
+ }
2392
+
2393
+ .card {
2394
+ background: white;
2395
+ box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.1);
2396
+ max-width: 100%;
2397
+ position: relative;
2398
+ width: 300px;
2399
+ }
2400
+
2401
+ .card .media:not(:last-child) {
2402
+ margin-bottom: 10px;
2403
+ }
2404
+
2405
+ .card.is-rounded {
2406
+ border-radius: 5px;
2407
+ }
2408
+
2409
+ .table {
2410
+ background: white;
2411
+ color: #222324;
2412
+ margin-bottom: 20px;
2413
+ width: 100%;
2414
+ }
2415
+
2416
+ .table th,
2417
+ .table td {
2418
+ border: 1px solid #d3d6db;
2419
+ border-width: 0 0 1px;
2420
+ padding: 8px 10px;
2421
+ vertical-align: top;
2422
+ }
2423
+
2424
+ .table th.table-link,
2425
+ .table td.table-link {
2426
+ padding: 0;
2427
+ }
2428
+
2429
+ .table th.table-link > a,
2430
+ .table td.table-link > a {
2431
+ display: block;
2432
+ padding: 8px 10px;
2433
+ }
2434
+
2435
+ .table th.table-link > a:hover,
2436
+ .table td.table-link > a:hover {
2437
+ background: #1fc8db;
2438
+ color: white;
2439
+ }
2440
+
2441
+ .table th.table-icon,
2442
+ .table td.table-icon {
2443
+ padding: 5px;
2444
+ text-align: center;
2445
+ white-space: nowrap;
2446
+ width: 1%;
2447
+ }
2448
+
2449
+ .table th.table-icon .fa,
2450
+ .table td.table-icon .fa {
2451
+ display: inline-block;
2452
+ font-size: 21px;
2453
+ height: 24px;
2454
+ line-height: 24px;
2455
+ text-align: center;
2456
+ vertical-align: top;
2457
+ width: 24px;
2458
+ }
2459
+
2460
+ .table th.table-icon.table-link,
2461
+ .table td.table-icon.table-link {
2462
+ padding: 0;
2463
+ }
2464
+
2465
+ .table th.table-icon.table-link > a,
2466
+ .table td.table-icon.table-link > a {
2467
+ padding: 5px;
2468
+ }
2469
+
2470
+ .table th {
2471
+ color: #222324;
2472
+ text-align: left;
2473
+ }
2474
+
2475
+ .table tr:hover {
2476
+ background: rgba(245, 247, 250, 0.5);
2477
+ color: #222324;
2478
+ }
2479
+
2480
+ .table tr:last-child td {
2481
+ border-bottom-width: 0;
2482
+ }
2483
+
2484
+ .table thead th,
2485
+ .table thead td {
2486
+ border-width: 0 0 2px;
2487
+ color: #aeb1b5;
2488
+ }
2489
+
2490
+ .table tfoot th,
2491
+ .table tfoot td {
2492
+ border-width: 2px 0 0;
2493
+ color: #aeb1b5;
2494
+ }
2495
+
2496
+ .table.is-bordered th,
2497
+ .table.is-bordered td {
2498
+ border-width: 1px;
2499
+ }
2500
+
2501
+ .table.is-bordered tr:last-child td {
2502
+ border-bottom-width: 1px;
2503
+ }
2504
+
2505
+ .table.is-narrow th,
2506
+ .table.is-narrow td {
2507
+ padding: 5px 10px;
2508
+ }
2509
+
2510
+ .table.is-narrow th.table-link,
2511
+ .table.is-narrow td.table-link {
2512
+ padding: 0;
2513
+ }
2514
+
2515
+ .table.is-narrow th.table-link > a,
2516
+ .table.is-narrow td.table-link > a {
2517
+ padding: 5px 10px;
2518
+ }
2519
+
2520
+ .table.is-narrow th.table-icon,
2521
+ .table.is-narrow td.table-icon {
2522
+ padding: 2px;
2523
+ }
2524
+
2525
+ .table.is-narrow th.table-icon.table-link,
2526
+ .table.is-narrow td.table-icon.table-link {
2527
+ padding: 0;
2528
+ }
2529
+
2530
+ .table.is-narrow th.table-icon.table-link > a,
2531
+ .table.is-narrow td.table-icon.table-link > a {
2532
+ padding: 2px;
2533
+ }
2534
+
2535
+ .table.is-striped tbody tr:nth-child(2n) {
2536
+ background: rgba(245, 247, 250, 0.5);
2537
+ }
2538
+
2539
+ .table.is-striped tbody tr:nth-child(2n):hover {
2540
+ background: #f5f7fa;
2541
+ }
2542
+
2543
+ .tabs {
2544
+ line-height: 24px;
2545
+ overflow: hidden;
2546
+ overflow-x: auto;
2547
+ white-space: nowrap;
2548
+ }
2549
+
2550
+ .tabs:not(:last-child) {
2551
+ margin-bottom: 20px;
2552
+ }
2553
+
2554
+ .tabs .fa {
2555
+ font-size: 14px;
2556
+ line-height: 20px;
2557
+ margin: 2px -2px;
2558
+ width: 20px;
2559
+ }
2560
+
2561
+ .tabs a {
2562
+ border-bottom: 1px solid #d3d6db;
2563
+ color: #69707a;
2564
+ display: block;
2565
+ margin-bottom: -1px;
2566
+ padding: 5px 0;
2567
+ vertical-align: top;
2568
+ }
2569
+
2570
+ .tabs a:hover {
2571
+ border-bottom-color: #222324;
2572
+ color: #222324;
2573
+ }
2574
+
2575
+ .tabs li {
2576
+ display: block;
2577
+ vertical-align: top;
2578
+ }
2579
+
2580
+ .tabs li + li {
2581
+ margin-left: 20px;
2582
+ }
2583
+
2584
+ .tabs li.is-active a {
2585
+ border-bottom-color: #1fc8db;
2586
+ color: #1fc8db;
2587
+ }
2588
+
2589
+ .tabs ul {
2590
+ border-bottom: 1px solid #d3d6db;
2591
+ display: flex;
2592
+ }
2593
+
2594
+ .tabs.is-centered a {
2595
+ padding: 5px 10px;
2596
+ }
2597
+
2598
+ .tabs.is-centered li + li {
2599
+ margin-left: 0;
2600
+ }
2601
+
2602
+ .tabs.is-centered ul {
2603
+ justify-content: center;
2604
+ text-align: center;
2605
+ }
2606
+
2607
+ .tabs.is-right ul {
2608
+ justify-content: flex-end;
2609
+ }
2610
+
2611
+ .tabs.is-boxed a {
2612
+ border: 1px solid transparent;
2613
+ border-radius: 3px 3px 0 0;
2614
+ padding: 5px 15px;
2615
+ }
2616
+
2617
+ .tabs.is-boxed a:hover {
2618
+ background: #f5f7fa;
2619
+ border-bottom-color: #d3d6db;
2620
+ }
2621
+
2622
+ .tabs.is-boxed li + li {
2623
+ margin-left: 5px;
2624
+ }
2625
+
2626
+ .tabs.is-boxed li.is-active a {
2627
+ background: white;
2628
+ border-color: #d3d6db;
2629
+ border-bottom-color: transparent;
2630
+ }
2631
+
2632
+ .tabs.is-boxed.is-centered li,
2633
+ .tabs.is-boxed.is-centered li + li {
2634
+ margin: 0 2px;
2635
+ }
2636
+
2637
+ .tabs.is-toggle a {
2638
+ border: 1px solid #d3d6db;
2639
+ margin-bottom: 0;
2640
+ padding: 5px 10px;
2641
+ position: relative;
2642
+ }
2643
+
2644
+ .tabs.is-toggle a:hover {
2645
+ background: #f5f7fa;
2646
+ border-color: #aeb1b5;
2647
+ z-index: 2;
2648
+ }
2649
+
2650
+ .tabs.is-toggle li + li {
2651
+ margin-left: -1px;
2652
+ }
2653
+
2654
+ .tabs.is-toggle li:first-child a {
2655
+ border-radius: 3px 0 0 3px;
2656
+ }
2657
+
2658
+ .tabs.is-toggle li:last-child a {
2659
+ border-radius: 0 3px 3px 0;
2660
+ }
2661
+
2662
+ .tabs.is-toggle li.is-active a {
2663
+ background: #1fc8db;
2664
+ border-color: #1fc8db;
2665
+ color: white;
2666
+ z-index: 1;
2667
+ }
2668
+
2669
+ .tabs.is-toggle ul {
2670
+ border-bottom: none;
2671
+ }
2672
+
2673
+ @media screen and (min-width: 769px) {
2674
+ .tabs.is-fullwidth li {
2675
+ flex: 1;
2676
+ }
2677
+ .tabs.is-fullwidth li + li {
2678
+ margin-left: 0;
2679
+ }
2680
+ .tabs.is-fullwidth ul {
2681
+ justify-content: center;
2682
+ text-align: center;
2683
+ }
2684
+ }
2685
+
2686
+ .media-image.is-32 {
2687
+ width: 32px;
2688
+ }
2689
+
2690
+ .media-image.is-40 {
2691
+ width: 40px;
2692
+ }
2693
+
2694
+ @media screen and (max-width: 768px) {
2695
+ .media-image {
2696
+ margin-bottom: 10px;
2697
+ }
2698
+ }
2699
+
2700
+ @media screen and (min-width: 769px) {
2701
+ .media-image {
2702
+ margin-right: 10px;
2703
+ width: 60px;
2704
+ }
2705
+ }
2706
+
2707
+ .media-number {
2708
+ background: #f5f7fa;
2709
+ border-radius: 290486px;
2710
+ display: inline-block;
2711
+ font-size: 18px;
2712
+ height: 32px;
2713
+ line-height: 24px;
2714
+ min-width: 32px;
2715
+ padding: 4px 8px;
2716
+ text-align: center;
2717
+ vertical-align: top;
2718
+ }
2719
+
2720
+ @media screen and (max-width: 768px) {
2721
+ .media-number {
2722
+ margin-bottom: 10px;
2723
+ }
2724
+ }
2725
+
2726
+ @media screen and (min-width: 769px) {
2727
+ .media-number {
2728
+ margin-right: 10px;
2729
+ }
2730
+ }
2731
+
2732
+ @media screen and (max-width: 768px) {
2733
+ .media-left {
2734
+ margin-bottom: 20px;
2735
+ }
2736
+ }
2737
+
2738
+ @media screen and (min-width: 769px) {
2739
+ .media-left {
2740
+ margin-right: 20px;
2741
+ }
2742
+ }
2743
+
2744
+ @media screen and (max-width: 768px) {
2745
+ .media-right {
2746
+ margin-top: 20px;
2747
+ }
2748
+ }
2749
+
2750
+ @media screen and (min-width: 769px) {
2751
+ .media-right {
2752
+ margin-left: 20px;
2753
+ }
2754
+ }
2755
+
2756
+ .media-content {
2757
+ flex: 1;
2758
+ text-align: left;
2759
+ }
2760
+
2761
+ .media-content .textarea {
2762
+ min-height: 60px;
2763
+ }
2764
+
2765
+ .media {
2766
+ align-items: flex-start;
2767
+ text-align: left;
2768
+ }
2769
+
2770
+ .media .content:not(:last-child) {
2771
+ margin-bottom: 10px;
2772
+ }
2773
+
2774
+ .media .media {
2775
+ border-top: 1px solid rgba(211, 214, 219, 0.5);
2776
+ display: flex;
2777
+ padding-top: 10px;
2778
+ }
2779
+
2780
+ .media .media .media-image {
2781
+ margin-bottom: 0;
2782
+ margin-right: 10px;
2783
+ width: 40px;
2784
+ }
2785
+
2786
+ .media .media .textarea {
2787
+ border-radius: 2px;
2788
+ font-size: 11px;
2789
+ height: 24px;
2790
+ line-height: 16px;
2791
+ padding: 3px 6px;
2792
+ }
2793
+
2794
+ .media .media .button {
2795
+ border-radius: 2px;
2796
+ font-size: 11px;
2797
+ height: 24px;
2798
+ line-height: 16px;
2799
+ padding: 3px 6px;
2800
+ }
2801
+
2802
+ .media .media .content:not(:last-child),
2803
+ .media .media .control:not(:last-child) {
2804
+ margin-bottom: 5px;
2805
+ }
2806
+
2807
+ .media .media .media {
2808
+ font-size: 12px;
2809
+ padding-top: 5px;
2810
+ }
2811
+
2812
+ .media .media .media + .media {
2813
+ margin-top: 5px;
2814
+ }
2815
+
2816
+ .media + .media {
2817
+ border-top: 1px solid rgba(211, 214, 219, 0.5);
2818
+ margin-top: 10px;
2819
+ padding-top: 10px;
2820
+ }
2821
+
2822
+ .media.is-large + .media {
2823
+ margin-top: 20px;
2824
+ padding-top: 20px;
2825
+ }
2826
+
2827
+ @media screen and (min-width: 769px) {
2828
+ .media {
2829
+ display: flex;
2830
+ }
2831
+ .media.is-large .media-number {
2832
+ margin-right: 20px;
2833
+ }
2834
+ }
2835
+
2836
+ .menu-icon {
2837
+ display: inline-block;
2838
+ font-size: 14px;
2839
+ height: 16px;
2840
+ line-height: 16px;
2841
+ text-align: center;
2842
+ vertical-align: top;
2843
+ width: 16px;
2844
+ color: #aeb1b5;
2845
+ float: left;
2846
+ margin: 0 4px 0 -2px;
2847
+ }
2848
+
2849
+ .menu-icon .fa {
2850
+ font-size: inherit;
2851
+ line-height: inherit;
2852
+ }
2853
+
2854
+ .menu-heading {
2855
+ background: #f5f7fa;
2856
+ border-bottom: 1px solid #d3d6db;
2857
+ border-radius: 4px 4px 0 0;
2858
+ color: #222324;
2859
+ font-size: 18px;
2860
+ font-weight: 300;
2861
+ padding: 10px;
2862
+ }
2863
+
2864
+ .menu-list a {
2865
+ color: #69707a;
2866
+ }
2867
+
2868
+ .menu-list a:hover {
2869
+ color: #1fc8db;
2870
+ }
2871
+
2872
+ .menu-tabs {
2873
+ display: flex;
2874
+ font-size: 11px;
2875
+ padding: 5px 10px 0;
2876
+ justify-content: center;
2877
+ }
2878
+
2879
+ .menu-tabs:not(:last-child) {
2880
+ border-bottom: 1px solid #d3d6db;
2881
+ }
2882
+
2883
+ .menu-tabs a {
2884
+ border-bottom: 1px solid #d3d6db;
2885
+ margin-bottom: -1px;
2886
+ padding: 5px;
2887
+ }
2888
+
2889
+ .menu-tabs a.is-active {
2890
+ border-bottom-color: #222324;
2891
+ color: #222324;
2892
+ }
2893
+
2894
+ .menu-block {
2895
+ color: #222324;
2896
+ display: block;
2897
+ line-height: 16px;
2898
+ padding: 10px;
2899
+ }
2900
+
2901
+ .menu-block:not(:last-child) {
2902
+ border-bottom: 1px solid #d3d6db;
2903
+ }
2904
+
2905
+ .menu-block .checkbox, .menu-block .menu-checkbox {
2906
+ border: 1px solid transparent;
2907
+ border-radius: 3px;
2908
+ display: block;
2909
+ padding: 8px;
2910
+ padding-left: 32px;
2911
+ }
2912
+
2913
+ .menu-block .checkbox input, .menu-block .menu-checkbox input {
2914
+ left: 9px;
2915
+ top: 9px;
2916
+ }
2917
+
2918
+ .menu-block .checkbox:hover, .menu-block .menu-checkbox:hover {
2919
+ border-color: #1fc8db;
2920
+ }
2921
+
2922
+ a.menu-block:hover {
2923
+ background: #f5f7fa;
2924
+ }
2925
+
2926
+ .menu-checkbox {
2927
+ display: block;
2928
+ padding: 9px 10px 9px 30px;
2929
+ }
2930
+
2931
+ .menu-checkbox:not(:last-child) {
2932
+ border-bottom: 1px solid #d3d6db;
2933
+ }
2934
+
2935
+ .menu-checkbox input {
2936
+ left: 8px;
2937
+ top: 10px;
2938
+ }
2939
+
2940
+ .menu {
2941
+ border: 1px solid #d3d6db;
2942
+ border-radius: 5px;
2943
+ }
2944
+
2945
+ .menu:not(:last-child) {
2946
+ margin-bottom: 20px;
2947
+ }
2948
+
2949
+ .block:not(:last-child) {
2950
+ margin-bottom: 20px;
2951
+ }
2952
+
2953
+ .header {
2954
+ background: white;
2955
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
2956
+ display: flex;
2957
+ height: 50px;
2958
+ line-height: 24px;
2959
+ position: relative;
2960
+ text-align: center;
2961
+ z-index: 2;
2962
+ }
2963
+
2964
+ .header:after {
2965
+ clear: both;
2966
+ content: " ";
2967
+ display: table;
2968
+ }
2969
+
2970
+ .header .container {
2971
+ align-items: stretch;
2972
+ box-shadow: 0 1px 0 rgba(211, 214, 219, 0.3);
2973
+ display: flex;
2974
+ width: 100%;
2975
+ }
2976
+
2977
+ @media screen and (min-width: 769px) {
2978
+ .header {
2979
+ height: 50px;
2980
+ }
2981
+ }
2982
+
2983
+ @media screen and (min-width: 769px) {
2984
+ .header-toggle {
2985
+ display: none;
2986
+ }
2987
+ }
2988
+
2989
+ .header-item {
2990
+ align-items: center;
2991
+ display: flex;
2992
+ padding: 10px;
2993
+ }
2994
+
2995
+ .header-item img {
2996
+ max-height: 24px;
2997
+ }
2998
+
2999
+ .header-item a {
3000
+ color: #69707a;
3001
+ }
3002
+
3003
+ .header-item a:hover {
3004
+ color: #222324;
3005
+ }
3006
+
3007
+ .header-item a.is-active {
3008
+ color: #222324;
3009
+ }
3010
+
3011
+ .header-item .fa {
3012
+ font-size: 21px;
3013
+ line-height: 24px;
3014
+ }
3015
+
3016
+ .header-icon {
3017
+ display: inline-block;
3018
+ font-size: 14px;
3019
+ height: 24px;
3020
+ line-height: 24px;
3021
+ text-align: center;
3022
+ vertical-align: top;
3023
+ width: 24px;
3024
+ color: #69707a;
3025
+ margin: 0 5px;
3026
+ }
3027
+
3028
+ .header-icon:hover {
3029
+ color: #222324;
3030
+ }
3031
+
3032
+ .header-tab {
3033
+ align-items: center;
3034
+ border-bottom: 1px solid transparent;
3035
+ color: #69707a;
3036
+ display: block;
3037
+ height: 50px;
3038
+ line-height: 24px;
3039
+ padding: 13px 15px;
3040
+ }
3041
+
3042
+ .header-tab:hover {
3043
+ border-bottom: 1px solid #1fc8db;
3044
+ }
3045
+
3046
+ .header-tab.is-active {
3047
+ border-bottom: 3px solid #1fc8db;
3048
+ color: #1fc8db;
3049
+ }
3050
+
3051
+ .header-left {
3052
+ align-items: stretch;
3053
+ display: flex;
3054
+ flex: 1;
3055
+ overflow: hidden;
3056
+ overflow-x: auto;
3057
+ white-space: nowrap;
3058
+ }
3059
+
3060
+ @media screen and (min-width: 980px) {
3061
+ .header-left .header-item:first-child {
3062
+ padding-left: 0;
3063
+ }
3064
+ }
3065
+
3066
+ .header-center {
3067
+ align-items: stretch;
3068
+ display: flex;
3069
+ left: 50%;
3070
+ position: absolute;
3071
+ transform: translateX(-50%);
3072
+ }
3073
+
3074
+ .header-right {
3075
+ align-items: stretch;
3076
+ }
3077
+
3078
+ @media screen and (min-width: 769px) {
3079
+ .header-right {
3080
+ display: flex;
3081
+ }
3082
+ }
3083
+
3084
+ @media screen and (min-width: 980px) {
3085
+ .header-right .header-item:last-child {
3086
+ padding-right: 0;
3087
+ }
3088
+ }
3089
+
3090
+ .header-full {
3091
+ align-items: stretch;
3092
+ display: flex;
3093
+ justify-content: center;
3094
+ text-align: center;
3095
+ width: 100%;
3096
+ }
3097
+
3098
+ .header-full > .header-item {
3099
+ align-items: stretch;
3100
+ display: flex;
3101
+ flex: 1;
3102
+ justify-content: center;
3103
+ padding: 0;
3104
+ }
3105
+
3106
+ .header-full > .header-item > a {
3107
+ align-items: center;
3108
+ display: flex;
3109
+ justify-content: center;
3110
+ width: 100%;
3111
+ }
3112
+
3113
+ @media screen and (max-width: 768px) {
3114
+ .header-menu {
3115
+ background: white;
3116
+ box-shadow: 0 4px 7px rgba(0, 0, 0, 0.1);
3117
+ display: none;
3118
+ min-width: 120px;
3119
+ position: absolute;
3120
+ right: 0;
3121
+ top: 50px;
3122
+ z-index: 100;
3123
+ }
3124
+ .header-menu .header-item {
3125
+ border-top: 1px solid rgba(211, 214, 219, 0.5);
3126
+ padding: 10px;
3127
+ }
3128
+ .header-menu.is-active {
3129
+ display: block;
3130
+ }
3131
+ }
3132
+
3133
+ .header.is-centered {
3134
+ justify-content: center;
3135
+ }
3136
+
3137
+ .header.is-centered .header-left,
3138
+ .header.is-centered .header-center,
3139
+ .header.is-centered .header-right {
3140
+ justify-content: center;
3141
+ }
3142
+
3143
+ .header.is-small {
3144
+ background: #f5f7fa;
3145
+ box-shadow: none;
3146
+ height: 40px;
3147
+ z-index: 1;
3148
+ }
3149
+
3150
+ .header.is-small .container {
3151
+ height: 40px;
3152
+ }
3153
+
3154
+ .header.is-small .header-tab {
3155
+ font-size: 13px;
3156
+ height: 40px;
3157
+ padding: 8px 10px;
3158
+ }
3159
+
3160
+ .header.is-small .header-tab:hover, .header.is-small .header-tab.is-active {
3161
+ border-bottom-width: 2px;
3162
+ }
3163
+
3164
+ .hero-video {
3165
+ bottom: 0;
3166
+ left: 0;
3167
+ position: absolute;
3168
+ right: 0;
3169
+ top: 0;
3170
+ overflow: hidden;
3171
+ }
3172
+
3173
+ .hero-video.is-transparent {
3174
+ opacity: 0.3;
3175
+ }
3176
+
3177
+ .hero-video video {
3178
+ left: 50%;
3179
+ min-height: 100%;
3180
+ min-width: 100%;
3181
+ position: absolute;
3182
+ top: 50%;
3183
+ transform: translate3d(-50%, -50%, 0);
3184
+ }
3185
+
3186
+ @media screen and (max-width: 768px) {
3187
+ .hero-video {
3188
+ display: none;
3189
+ }
3190
+ }
3191
+
3192
+ .hero-content {
3193
+ padding: 40px 20px;
3194
+ }
3195
+
3196
+ @media screen and (min-width: 980px) {
3197
+ .hero-content {
3198
+ padding: 40px 0;
3199
+ }
3200
+ }
3201
+
3202
+ .hero-buttons {
3203
+ margin-top: 20px;
3204
+ }
3205
+
3206
+ @media screen and (max-width: 768px) {
3207
+ .hero-buttons .button {
3208
+ display: block;
3209
+ }
3210
+ .hero-buttons .button:not(:last-child) {
3211
+ margin-bottom: 10px;
3212
+ }
3213
+ }
3214
+
3215
+ @media screen and (min-width: 769px) {
3216
+ .hero-buttons {
3217
+ display: flex;
3218
+ justify-content: center;
3219
+ }
3220
+ .hero-buttons .button:not(:last-child) {
3221
+ margin-right: 20px;
3222
+ }
3223
+ }
3224
+
3225
+ .hero {
3226
+ background: white;
3227
+ text-align: center;
3228
+ }
3229
+
3230
+ .hero .header {
3231
+ background: none;
3232
+ box-shadow: none;
3233
+ }
3234
+
3235
+ .hero .tabs a {
3236
+ border: none;
3237
+ }
3238
+
3239
+ .hero .tabs ul {
3240
+ border-bottom: none;
3241
+ }
3242
+
3243
+ .hero.is-alt {
3244
+ background: #f5f7fa;
3245
+ color: #aeb1b5;
3246
+ }
3247
+
3248
+ .hero.is-dark {
3249
+ background: #222324;
3250
+ color: white;
3251
+ }
3252
+
3253
+ .hero.is-dark .title {
3254
+ color: white;
3255
+ }
3256
+
3257
+ .hero.is-dark .title a,
3258
+ .hero.is-dark .title strong {
3259
+ color: inherit;
3260
+ }
3261
+
3262
+ .hero.is-dark .subtitle {
3263
+ color: rgba(255, 255, 255, 0.7);
3264
+ }
3265
+
3266
+ .hero.is-dark .subtitle strong {
3267
+ color: white;
3268
+ }
3269
+
3270
+ .hero.is-dark .header .container {
3271
+ box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
3272
+ }
3273
+
3274
+ .hero.is-dark .header-icon,
3275
+ .hero.is-dark .header-item > a:not(.button) {
3276
+ color: white;
3277
+ opacity: 0.5;
3278
+ }
3279
+
3280
+ .hero.is-dark .header-icon:hover, .hero.is-dark .header-icon.is-active,
3281
+ .hero.is-dark .header-item > a:not(.button):hover,
3282
+ .hero.is-dark .header-item > a:not(.button).is-active {
3283
+ opacity: 1;
3284
+ }
3285
+
3286
+ .hero.is-dark .tabs a {
3287
+ color: white;
3288
+ opacity: 0.5;
3289
+ }
3290
+
3291
+ .hero.is-dark .tabs a:hover {
3292
+ opacity: 1;
3293
+ }
3294
+
3295
+ .hero.is-dark .tabs li.is-active a {
3296
+ opacity: 1;
3297
+ }
3298
+
3299
+ .hero.is-dark .tabs.is-boxed a, .hero.is-dark .tabs.is-toggle a {
3300
+ color: white;
3301
+ }
3302
+
3303
+ .hero.is-dark .tabs.is-boxed a:hover, .hero.is-dark .tabs.is-toggle a:hover {
3304
+ background: rgba(0, 0, 0, 0.1);
3305
+ }
3306
+
3307
+ .hero.is-dark .tabs.is-boxed li.is-active a, .hero.is-dark .tabs.is-boxed li.is-active a:hover, .hero.is-dark .tabs.is-toggle li.is-active a, .hero.is-dark .tabs.is-toggle li.is-active a:hover {
3308
+ background: white;
3309
+ color: #222324;
3310
+ }
3311
+
3312
+ .hero.is-dark.is-bold {
3313
+ background-image: linear-gradient(141deg, #080a0b 0%, #222324 71%, #2c2e34 100%);
3314
+ }
3315
+
3316
+ @media screen and (max-width: 768px) {
3317
+ .hero.is-dark .header-toggle span {
3318
+ background: white;
3319
+ }
3320
+ .hero.is-dark .header-toggle:hover {
3321
+ background: rgba(0, 0, 0, 0.1);
3322
+ }
3323
+ .hero.is-dark .header-toggle.is-active span {
3324
+ background: white;
3325
+ }
3326
+ .hero.is-dark .header-menu {
3327
+ background: #222324;
3328
+ }
3329
+ .hero.is-dark .header-menu .header-item {
3330
+ border-top-color: rgba(255, 255, 255, 0.2);
3331
+ }
3332
+ }
3333
+
3334
+ .hero.is-primary {
3335
+ background: #1fc8db;
3336
+ color: white;
3337
+ }
3338
+
3339
+ .hero.is-primary .title {
3340
+ color: white;
3341
+ }
3342
+
3343
+ .hero.is-primary .title a,
3344
+ .hero.is-primary .title strong {
3345
+ color: inherit;
3346
+ }
3347
+
3348
+ .hero.is-primary .subtitle {
3349
+ color: rgba(255, 255, 255, 0.7);
3350
+ }
3351
+
3352
+ .hero.is-primary .subtitle strong {
3353
+ color: white;
3354
+ }
3355
+
3356
+ .hero.is-primary .header .container {
3357
+ box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
3358
+ }
3359
+
3360
+ .hero.is-primary .header-icon,
3361
+ .hero.is-primary .header-item > a:not(.button) {
3362
+ color: white;
3363
+ opacity: 0.5;
3364
+ }
3365
+
3366
+ .hero.is-primary .header-icon:hover, .hero.is-primary .header-icon.is-active,
3367
+ .hero.is-primary .header-item > a:not(.button):hover,
3368
+ .hero.is-primary .header-item > a:not(.button).is-active {
3369
+ opacity: 1;
3370
+ }
3371
+
3372
+ .hero.is-primary .tabs a {
3373
+ color: white;
3374
+ opacity: 0.5;
3375
+ }
3376
+
3377
+ .hero.is-primary .tabs a:hover {
3378
+ opacity: 1;
3379
+ }
3380
+
3381
+ .hero.is-primary .tabs li.is-active a {
3382
+ opacity: 1;
3383
+ }
3384
+
3385
+ .hero.is-primary .tabs.is-boxed a, .hero.is-primary .tabs.is-toggle a {
3386
+ color: white;
3387
+ }
3388
+
3389
+ .hero.is-primary .tabs.is-boxed a:hover, .hero.is-primary .tabs.is-toggle a:hover {
3390
+ background: rgba(0, 0, 0, 0.1);
3391
+ }
3392
+
3393
+ .hero.is-primary .tabs.is-boxed li.is-active a, .hero.is-primary .tabs.is-boxed li.is-active a:hover, .hero.is-primary .tabs.is-toggle li.is-active a, .hero.is-primary .tabs.is-toggle li.is-active a:hover {
3394
+ background: white;
3395
+ color: #1fc8db;
3396
+ }
3397
+
3398
+ .hero.is-primary.is-bold {
3399
+ background-image: linear-gradient(141deg, #0fb8ad 0%, #1fc8db 71%, #2cb5e8 100%);
3400
+ }
3401
+
3402
+ @media screen and (max-width: 768px) {
3403
+ .hero.is-primary .header-toggle span {
3404
+ background: white;
3405
+ }
3406
+ .hero.is-primary .header-toggle:hover {
3407
+ background: rgba(0, 0, 0, 0.1);
3408
+ }
3409
+ .hero.is-primary .header-toggle.is-active span {
3410
+ background: white;
3411
+ }
3412
+ .hero.is-primary .header-menu {
3413
+ background: #1fc8db;
3414
+ }
3415
+ .hero.is-primary .header-menu .header-item {
3416
+ border-top-color: rgba(255, 255, 255, 0.2);
3417
+ }
3418
+ }
3419
+
3420
+ .hero.is-info {
3421
+ background: #42afe3;
3422
+ color: white;
3423
+ }
3424
+
3425
+ .hero.is-info .title {
3426
+ color: white;
3427
+ }
3428
+
3429
+ .hero.is-info .title a,
3430
+ .hero.is-info .title strong {
3431
+ color: inherit;
3432
+ }
3433
+
3434
+ .hero.is-info .subtitle {
3435
+ color: rgba(255, 255, 255, 0.7);
3436
+ }
3437
+
3438
+ .hero.is-info .subtitle strong {
3439
+ color: white;
3440
+ }
3441
+
3442
+ .hero.is-info .header .container {
3443
+ box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
3444
+ }
3445
+
3446
+ .hero.is-info .header-icon,
3447
+ .hero.is-info .header-item > a:not(.button) {
3448
+ color: white;
3449
+ opacity: 0.5;
3450
+ }
3451
+
3452
+ .hero.is-info .header-icon:hover, .hero.is-info .header-icon.is-active,
3453
+ .hero.is-info .header-item > a:not(.button):hover,
3454
+ .hero.is-info .header-item > a:not(.button).is-active {
3455
+ opacity: 1;
3456
+ }
3457
+
3458
+ .hero.is-info .tabs a {
3459
+ color: white;
3460
+ opacity: 0.5;
3461
+ }
3462
+
3463
+ .hero.is-info .tabs a:hover {
3464
+ opacity: 1;
3465
+ }
3466
+
3467
+ .hero.is-info .tabs li.is-active a {
3468
+ opacity: 1;
3469
+ }
3470
+
3471
+ .hero.is-info .tabs.is-boxed a, .hero.is-info .tabs.is-toggle a {
3472
+ color: white;
3473
+ }
3474
+
3475
+ .hero.is-info .tabs.is-boxed a:hover, .hero.is-info .tabs.is-toggle a:hover {
3476
+ background: rgba(0, 0, 0, 0.1);
3477
+ }
3478
+
3479
+ .hero.is-info .tabs.is-boxed li.is-active a, .hero.is-info .tabs.is-boxed li.is-active a:hover, .hero.is-info .tabs.is-toggle li.is-active a, .hero.is-info .tabs.is-toggle li.is-active a:hover {
3480
+ background: white;
3481
+ color: #42afe3;
3482
+ }
3483
+
3484
+ .hero.is-info.is-bold {
3485
+ background-image: linear-gradient(141deg, #13bfdf 0%, #42afe3 71%, #53a1eb 100%);
3486
+ }
3487
+
3488
+ @media screen and (max-width: 768px) {
3489
+ .hero.is-info .header-toggle span {
3490
+ background: white;
3491
+ }
3492
+ .hero.is-info .header-toggle:hover {
3493
+ background: rgba(0, 0, 0, 0.1);
3494
+ }
3495
+ .hero.is-info .header-toggle.is-active span {
3496
+ background: white;
3497
+ }
3498
+ .hero.is-info .header-menu {
3499
+ background: #42afe3;
3500
+ }
3501
+ .hero.is-info .header-menu .header-item {
3502
+ border-top-color: rgba(255, 255, 255, 0.2);
3503
+ }
3504
+ }
3505
+
3506
+ .hero.is-success {
3507
+ background: #97cd76;
3508
+ color: white;
3509
+ }
3510
+
3511
+ .hero.is-success .title {
3512
+ color: white;
3513
+ }
3514
+
3515
+ .hero.is-success .title a,
3516
+ .hero.is-success .title strong {
3517
+ color: inherit;
3518
+ }
3519
+
3520
+ .hero.is-success .subtitle {
3521
+ color: rgba(255, 255, 255, 0.7);
3522
+ }
3523
+
3524
+ .hero.is-success .subtitle strong {
3525
+ color: white;
3526
+ }
3527
+
3528
+ .hero.is-success .header .container {
3529
+ box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
3530
+ }
3531
+
3532
+ .hero.is-success .header-icon,
3533
+ .hero.is-success .header-item > a:not(.button) {
3534
+ color: white;
3535
+ opacity: 0.5;
3536
+ }
3537
+
3538
+ .hero.is-success .header-icon:hover, .hero.is-success .header-icon.is-active,
3539
+ .hero.is-success .header-item > a:not(.button):hover,
3540
+ .hero.is-success .header-item > a:not(.button).is-active {
3541
+ opacity: 1;
3542
+ }
3543
+
3544
+ .hero.is-success .tabs a {
3545
+ color: white;
3546
+ opacity: 0.5;
3547
+ }
3548
+
3549
+ .hero.is-success .tabs a:hover {
3550
+ opacity: 1;
3551
+ }
3552
+
3553
+ .hero.is-success .tabs li.is-active a {
3554
+ opacity: 1;
3555
+ }
3556
+
3557
+ .hero.is-success .tabs.is-boxed a, .hero.is-success .tabs.is-toggle a {
3558
+ color: white;
3559
+ }
3560
+
3561
+ .hero.is-success .tabs.is-boxed a:hover, .hero.is-success .tabs.is-toggle a:hover {
3562
+ background: rgba(0, 0, 0, 0.1);
3563
+ }
3564
+
3565
+ .hero.is-success .tabs.is-boxed li.is-active a, .hero.is-success .tabs.is-boxed li.is-active a:hover, .hero.is-success .tabs.is-toggle li.is-active a, .hero.is-success .tabs.is-toggle li.is-active a:hover {
3566
+ background: white;
3567
+ color: #97cd76;
3568
+ }
3569
+
3570
+ .hero.is-success.is-bold {
3571
+ background-image: linear-gradient(141deg, #8ecb45 0%, #97cd76 71%, #96d885 100%);
3572
+ }
3573
+
3574
+ @media screen and (max-width: 768px) {
3575
+ .hero.is-success .header-toggle span {
3576
+ background: white;
3577
+ }
3578
+ .hero.is-success .header-toggle:hover {
3579
+ background: rgba(0, 0, 0, 0.1);
3580
+ }
3581
+ .hero.is-success .header-toggle.is-active span {
3582
+ background: white;
3583
+ }
3584
+ .hero.is-success .header-menu {
3585
+ background: #97cd76;
3586
+ }
3587
+ .hero.is-success .header-menu .header-item {
3588
+ border-top-color: rgba(255, 255, 255, 0.2);
3589
+ }
3590
+ }
3591
+
3592
+ .hero.is-warning {
3593
+ background: #fce473;
3594
+ color: rgba(0, 0, 0, 0.5);
3595
+ }
3596
+
3597
+ .hero.is-warning .title {
3598
+ color: rgba(0, 0, 0, 0.5);
3599
+ }
3600
+
3601
+ .hero.is-warning .title a,
3602
+ .hero.is-warning .title strong {
3603
+ color: inherit;
3604
+ }
3605
+
3606
+ .hero.is-warning .subtitle {
3607
+ color: rgba(0, 0, 0, 0.7);
3608
+ }
3609
+
3610
+ .hero.is-warning .subtitle strong {
3611
+ color: rgba(0, 0, 0, 0.5);
3612
+ }
3613
+
3614
+ .hero.is-warning .header .container {
3615
+ box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
3616
+ }
3617
+
3618
+ .hero.is-warning .header-icon,
3619
+ .hero.is-warning .header-item > a:not(.button) {
3620
+ color: rgba(0, 0, 0, 0.5);
3621
+ opacity: 0.5;
3622
+ }
3623
+
3624
+ .hero.is-warning .header-icon:hover, .hero.is-warning .header-icon.is-active,
3625
+ .hero.is-warning .header-item > a:not(.button):hover,
3626
+ .hero.is-warning .header-item > a:not(.button).is-active {
3627
+ opacity: 1;
3628
+ }
3629
+
3630
+ .hero.is-warning .tabs a {
3631
+ color: rgba(0, 0, 0, 0.5);
3632
+ opacity: 0.5;
3633
+ }
3634
+
3635
+ .hero.is-warning .tabs a:hover {
3636
+ opacity: 1;
3637
+ }
3638
+
3639
+ .hero.is-warning .tabs li.is-active a {
3640
+ opacity: 1;
3641
+ }
3642
+
3643
+ .hero.is-warning .tabs.is-boxed a, .hero.is-warning .tabs.is-toggle a {
3644
+ color: rgba(0, 0, 0, 0.5);
3645
+ }
3646
+
3647
+ .hero.is-warning .tabs.is-boxed a:hover, .hero.is-warning .tabs.is-toggle a:hover {
3648
+ background: rgba(0, 0, 0, 0.1);
3649
+ }
3650
+
3651
+ .hero.is-warning .tabs.is-boxed li.is-active a, .hero.is-warning .tabs.is-boxed li.is-active a:hover, .hero.is-warning .tabs.is-toggle li.is-active a, .hero.is-warning .tabs.is-toggle li.is-active a:hover {
3652
+ background: rgba(0, 0, 0, 0.5);
3653
+ color: #fce473;
3654
+ }
3655
+
3656
+ .hero.is-warning.is-bold {
3657
+ background-image: linear-gradient(141deg, #ffbd3d 0%, #fce473 71%, #fffe8a 100%);
3658
+ }
3659
+
3660
+ @media screen and (max-width: 768px) {
3661
+ .hero.is-warning .header-toggle span {
3662
+ background: rgba(0, 0, 0, 0.5);
3663
+ }
3664
+ .hero.is-warning .header-toggle:hover {
3665
+ background: rgba(0, 0, 0, 0.1);
3666
+ }
3667
+ .hero.is-warning .header-toggle.is-active span {
3668
+ background: rgba(0, 0, 0, 0.5);
3669
+ }
3670
+ .hero.is-warning .header-menu {
3671
+ background: #fce473;
3672
+ }
3673
+ .hero.is-warning .header-menu .header-item {
3674
+ border-top-color: rgba(0, 0, 0, 0.2);
3675
+ }
3676
+ }
3677
+
3678
+ .hero.is-danger {
3679
+ background: #ed6c63;
3680
+ color: white;
3681
+ }
3682
+
3683
+ .hero.is-danger .title {
3684
+ color: white;
3685
+ }
3686
+
3687
+ .hero.is-danger .title a,
3688
+ .hero.is-danger .title strong {
3689
+ color: inherit;
3690
+ }
3691
+
3692
+ .hero.is-danger .subtitle {
3693
+ color: rgba(255, 255, 255, 0.7);
3694
+ }
3695
+
3696
+ .hero.is-danger .subtitle strong {
3697
+ color: white;
3698
+ }
3699
+
3700
+ .hero.is-danger .header .container {
3701
+ box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
3702
+ }
3703
+
3704
+ .hero.is-danger .header-icon,
3705
+ .hero.is-danger .header-item > a:not(.button) {
3706
+ color: white;
3707
+ opacity: 0.5;
3708
+ }
3709
+
3710
+ .hero.is-danger .header-icon:hover, .hero.is-danger .header-icon.is-active,
3711
+ .hero.is-danger .header-item > a:not(.button):hover,
3712
+ .hero.is-danger .header-item > a:not(.button).is-active {
3713
+ opacity: 1;
3714
+ }
3715
+
3716
+ .hero.is-danger .tabs a {
3717
+ color: white;
3718
+ opacity: 0.5;
3719
+ }
3720
+
3721
+ .hero.is-danger .tabs a:hover {
3722
+ opacity: 1;
3723
+ }
3724
+
3725
+ .hero.is-danger .tabs li.is-active a {
3726
+ opacity: 1;
3727
+ }
3728
+
3729
+ .hero.is-danger .tabs.is-boxed a, .hero.is-danger .tabs.is-toggle a {
3730
+ color: white;
3731
+ }
3732
+
3733
+ .hero.is-danger .tabs.is-boxed a:hover, .hero.is-danger .tabs.is-toggle a:hover {
3734
+ background: rgba(0, 0, 0, 0.1);
3735
+ }
3736
+
3737
+ .hero.is-danger .tabs.is-boxed li.is-active a, .hero.is-danger .tabs.is-boxed li.is-active a:hover, .hero.is-danger .tabs.is-toggle li.is-active a, .hero.is-danger .tabs.is-toggle li.is-active a:hover {
3738
+ background: white;
3739
+ color: #ed6c63;
3740
+ }
3741
+
3742
+ .hero.is-danger.is-bold {
3743
+ background-image: linear-gradient(141deg, #f32a3e 0%, #ed6c63 71%, #f39376 100%);
3744
+ }
3745
+
3746
+ @media screen and (max-width: 768px) {
3747
+ .hero.is-danger .header-toggle span {
3748
+ background: white;
3749
+ }
3750
+ .hero.is-danger .header-toggle:hover {
3751
+ background: rgba(0, 0, 0, 0.1);
3752
+ }
3753
+ .hero.is-danger .header-toggle.is-active span {
3754
+ background: white;
3755
+ }
3756
+ .hero.is-danger .header-menu {
3757
+ background: #ed6c63;
3758
+ }
3759
+ .hero.is-danger .header-menu .header-item {
3760
+ border-top-color: rgba(255, 255, 255, 0.2);
3761
+ }
3762
+ }
3763
+
3764
+ @media screen and (min-width: 769px) {
3765
+ .hero.is-fullheight .tabs, .hero.is-large .tabs {
3766
+ font-size: 18px;
3767
+ }
3768
+ }
3769
+
3770
+ @media screen and (min-width: 769px) {
3771
+ .hero.is-medium .hero-content {
3772
+ padding: 120px 20px;
3773
+ }
3774
+ }
3775
+
3776
+ @media screen and (min-width: 980px) {
3777
+ .hero.is-medium .hero-content {
3778
+ padding: 120px 0;
3779
+ }
3780
+ }
3781
+
3782
+ .hero.is-large .tabs a {
3783
+ padding: 10px 15px;
3784
+ }
3785
+
3786
+ @media screen and (min-width: 769px) {
3787
+ .hero.is-large .hero-content {
3788
+ padding: 240px 20px;
3789
+ }
3790
+ }
3791
+
3792
+ @media screen and (min-width: 980px) {
3793
+ .hero.is-large .hero-content {
3794
+ padding: 240px 0;
3795
+ }
3796
+ }
3797
+
3798
+ .hero.is-fullheight {
3799
+ align-items: stretch;
3800
+ display: flex;
3801
+ flex-direction: column;
3802
+ justify-content: space-between;
3803
+ min-height: 100vh;
3804
+ }
3805
+
3806
+ .hero.is-fullheight .tabs a {
3807
+ padding: 15px 20px;
3808
+ }
3809
+
3810
+ .hero.is-fullheight .hero-content {
3811
+ display: flex;
3812
+ flex: 1;
3813
+ flex-direction: column;
3814
+ justify-content: center;
3815
+ }
3816
+
3817
+ .hero.is-left {
3818
+ text-align: left;
3819
+ }
3820
+
3821
+ .hero.is-right {
3822
+ text-align: right;
3823
+ }
3824
+
3825
+ .section {
3826
+ background: white;
3827
+ padding: 40px 20px;
3828
+ }
3829
+
3830
+ .section + .section {
3831
+ border-top: 1px solid rgba(211, 214, 219, 0.5);
3832
+ }
3833
+
3834
+ @media screen and (min-width: 980px) {
3835
+ .section {
3836
+ padding: 40px 0;
3837
+ }
3838
+ .section.is-medium {
3839
+ padding: 120px 0;
3840
+ }
3841
+ .section.is-large {
3842
+ padding: 240px 0;
3843
+ }
3844
+ }
3845
+
3846
+ .footer {
3847
+ background: #f5f7fa;
3848
+ padding: 40px 20px 80px;
3849
+ }
3850
+
3851
+ .footer a {
3852
+ color: #69707a;
3853
+ }
3854
+
3855
+ .footer a:hover {
3856
+ color: #222324;
3857
+ }
3858
+
3859
+ .footer a:not(.icon) {
3860
+ border-bottom: 1px solid #d3d6db;
3861
+ }
3862
+
3863
+ .footer a:not(.icon):hover {
3864
+ border-bottom-color: #1fc8db;
3865
+ }
3866
+
3867
+ /*# sourceMappingURL=bulma.css.map */