locomotivecms_wagon 2.2.0.beta1 → 2.2.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +2 -1
- data/generators/blank/config/metafields_schema.yml +1 -1
- data/generators/bootstrap/config/metafields_schema.yml +1 -1
- data/generators/{foundation5 → foundation}/Gemfile.tt +1 -1
- data/generators/{foundation5 → foundation}/Guardfile +0 -0
- data/generators/foundation/app/content_types/.gitkeep +0 -0
- data/generators/foundation/app/views/pages/404.liquid +11 -0
- data/generators/{foundation5 → foundation}/app/views/pages/404.liquid.haml +4 -3
- data/generators/{foundation5 → foundation}/app/views/pages/index.liquid +54 -78
- data/generators/foundation/app/views/pages/index.liquid.haml +144 -0
- data/generators/foundation/app/views/snippets/.gitkeep +0 -0
- data/generators/{foundation5 → foundation}/config/deploy.yml +2 -1
- data/generators/{foundation5 → foundation}/config/metafields_schema.yml +1 -1
- data/generators/{foundation5/config/site.yml.tt → foundation/config/site.yml} +2 -2
- data/generators/{foundation5 → foundation}/config/translations.yml +0 -0
- data/generators/foundation/data/.gitkeep +0 -0
- data/generators/foundation/log/.gitkeep +0 -0
- data/generators/foundation/public/images/.gitkeep +0 -0
- data/generators/foundation/public/javascripts/app.js +1 -0
- data/generators/foundation/public/javascripts/vendor/foundation.js +7472 -0
- data/generators/foundation/public/javascripts/vendor/foundation.min.js +3 -0
- data/generators/foundation/public/javascripts/vendor/what-input.js +212 -0
- data/generators/foundation/public/javascripts/vendor/what-input.min.js +1 -0
- data/generators/foundation/public/stylesheets/_settings.scss +529 -0
- data/generators/foundation/public/stylesheets/app.css +3 -0
- data/generators/foundation/public/stylesheets/app.scss +43 -0
- data/generators/foundation/public/stylesheets/foundation.css +3499 -0
- data/generators/foundation/public/stylesheets/foundation6/_global.scss +197 -0
- data/generators/foundation/public/stylesheets/foundation6/components/_accordion-menu.scss +28 -0
- data/generators/foundation/public/stylesheets/foundation6/components/_accordion.scss +112 -0
- data/generators/foundation/public/stylesheets/foundation6/components/_badge.scss +55 -0
- data/generators/foundation/public/stylesheets/foundation6/components/_breadcrumbs.scss +94 -0
- data/generators/foundation/public/stylesheets/foundation6/components/_button-group.scss +115 -0
- data/generators/foundation/public/stylesheets/foundation6/components/_button.scss +264 -0
- data/generators/foundation/public/stylesheets/foundation6/components/_callout.scss +115 -0
- data/generators/foundation/public/stylesheets/foundation6/components/_close-button.scss +61 -0
- data/generators/foundation/public/stylesheets/foundation6/components/_drilldown.scss +67 -0
- data/generators/foundation/public/stylesheets/foundation6/components/_dropdown-menu.scss +123 -0
- data/generators/foundation/public/stylesheets/foundation6/components/_dropdown.scss +64 -0
- data/generators/foundation/public/stylesheets/foundation6/components/_flex-video.scss +68 -0
- data/generators/foundation/public/stylesheets/foundation6/components/_float.scss +27 -0
- data/generators/foundation/public/stylesheets/foundation6/components/_label.scss +56 -0
- data/generators/foundation/public/stylesheets/foundation6/components/_media-object.scss +74 -0
- data/generators/foundation/public/stylesheets/foundation6/components/_menu.scss +213 -0
- data/generators/foundation/public/stylesheets/foundation6/components/_off-canvas.scss +170 -0
- data/generators/foundation/public/stylesheets/foundation6/components/_orbit.scss +186 -0
- data/generators/foundation/public/stylesheets/foundation6/components/_pagination.scss +161 -0
- data/generators/foundation/public/stylesheets/foundation6/components/_progress-bar.scss +83 -0
- data/generators/foundation/public/stylesheets/foundation6/components/_reveal.scss +155 -0
- data/generators/foundation/public/stylesheets/foundation6/components/_slider.scss +158 -0
- data/generators/foundation/public/stylesheets/foundation6/components/_sticky.scss +38 -0
- data/generators/foundation/public/stylesheets/foundation6/components/_switch.scss +231 -0
- data/generators/foundation/public/stylesheets/foundation6/components/_table.scss +212 -0
- data/generators/foundation/public/stylesheets/foundation6/components/_tabs.scss +137 -0
- data/generators/foundation/public/stylesheets/foundation6/components/_thumbnail.scss +54 -0
- data/generators/foundation/public/stylesheets/foundation6/components/_title-bar.scss +44 -0
- data/generators/foundation/public/stylesheets/foundation6/components/_tooltip.scss +110 -0
- data/generators/foundation/public/stylesheets/foundation6/components/_top-bar.scss +57 -0
- data/generators/foundation/public/stylesheets/foundation6/components/_visibility.scss +131 -0
- data/generators/foundation/public/stylesheets/foundation6/forms/_checkbox.scss +36 -0
- data/generators/foundation/public/stylesheets/foundation6/forms/_error.scss +81 -0
- data/generators/foundation/public/stylesheets/foundation6/forms/_fieldset.scss +53 -0
- data/generators/foundation/public/stylesheets/foundation6/forms/_forms.scss +32 -0
- data/generators/foundation/public/stylesheets/foundation6/forms/_help-text.scss +30 -0
- data/generators/foundation/public/stylesheets/foundation6/forms/_input-group.scss +70 -0
- data/generators/foundation/public/stylesheets/foundation6/forms/_label.scss +48 -0
- data/generators/foundation/public/stylesheets/foundation6/forms/_select.scss +64 -0
- data/generators/foundation/public/stylesheets/foundation6/forms/_text.scss +153 -0
- data/generators/foundation/public/stylesheets/foundation6/foundation.scss +91 -0
- data/generators/foundation/public/stylesheets/foundation6/grid/_classes.scss +132 -0
- data/generators/foundation/public/stylesheets/foundation6/grid/_column.scss +112 -0
- data/generators/foundation/public/stylesheets/foundation6/grid/_flex-grid.scss +191 -0
- data/generators/foundation/public/stylesheets/foundation6/grid/_grid.scss +33 -0
- data/generators/foundation/public/stylesheets/foundation6/grid/_gutter.scss +31 -0
- data/generators/foundation/public/stylesheets/foundation6/grid/_layout.scss +32 -0
- data/generators/foundation/public/stylesheets/foundation6/grid/_position.scss +71 -0
- data/generators/foundation/public/stylesheets/foundation6/grid/_row.scss +72 -0
- data/generators/foundation/public/stylesheets/foundation6/grid/_size.scss +24 -0
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/_classes.scss +102 -0
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/_settings.scss +61 -0
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/effects/_fade.scss +29 -0
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/effects/_hinge.scss +65 -0
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/effects/_shake.scss +15 -0
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/effects/_slide.scss +41 -0
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/effects/_spin.scss +28 -0
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/effects/_wiggle.scss +13 -0
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/effects/_zoom.scss +15 -0
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/motion-ui.scss +29 -0
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/transitions/_fade.scss +28 -0
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/transitions/_hinge.scss +43 -0
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/transitions/_slide.scss +42 -0
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/transitions/_spin.scss +39 -0
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/transitions/_zoom.scss +39 -0
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/util/_animation.scss +7 -0
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/util/_args.scss +15 -0
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/util/_keyframe.scss +136 -0
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/util/_selector.scss +23 -0
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/util/_series.scss +54 -0
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/util/_transition.scss +45 -0
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/util/_unit.scss +7 -0
- data/generators/foundation/public/stylesheets/foundation6/motion-ui.scss +4 -0
- data/generators/foundation/public/stylesheets/foundation6/settings/_settings.scss +531 -0
- data/generators/foundation/public/stylesheets/foundation6/typography/_alignment.scss +21 -0
- data/generators/foundation/public/stylesheets/foundation6/typography/_base.scss +436 -0
- data/generators/foundation/public/stylesheets/foundation6/typography/_helpers.scss +77 -0
- data/generators/foundation/public/stylesheets/foundation6/typography/_print.scss +73 -0
- data/generators/foundation/public/stylesheets/foundation6/typography/_typography.scss +28 -0
- data/generators/foundation/public/stylesheets/foundation6/util/_breakpoint.scss +182 -0
- data/generators/foundation/public/stylesheets/foundation6/util/_color.scss +41 -0
- data/generators/foundation/public/stylesheets/foundation6/util/_mixins.scss +190 -0
- data/generators/foundation/public/stylesheets/foundation6/util/_selector.scss +39 -0
- data/generators/foundation/public/stylesheets/foundation6/util/_unit.scss +69 -0
- data/generators/foundation/public/stylesheets/foundation6/util/_util.scss +15 -0
- data/generators/foundation/public/stylesheets/foundation6/util/_value.scss +117 -0
- data/generators/{foundation5/public/stylesheets/normalize.css.scss → foundation/public/stylesheets/foundation6/vendor/normalize.scss} +8 -11
- data/generators/site_metafields/schema.yml.tt +1 -1
- data/lib/locomotive/wagon/commands/push_command.rb +1 -0
- data/lib/locomotive/wagon/commands/serve_command.rb +1 -0
- data/lib/locomotive/wagon/decorators/concerns/persist_assets_concern.rb +3 -3
- data/lib/locomotive/wagon/decorators/content_type_decorator.rb +5 -1
- data/lib/locomotive/wagon/generators/site/{foundation5.rb → foundation.rb} +8 -12
- data/lib/locomotive/wagon/generators/site.rb +1 -1
- data/lib/locomotive/wagon/version.rb +1 -1
- data/locomotivecms_wagon.gemspec +3 -2
- data/spec/fixtures/cassettes/authenticate.yml +38 -38
- data/spec/fixtures/cassettes/delete.yml +211 -211
- data/spec/fixtures/cassettes/push.yml +1333 -1374
- data/spec/integration/cli_spec.rb +1 -1
- data/spec/unit/decorators/content_entry_decorator_spec.rb +23 -0
- metadata +133 -104
- data/generators/foundation5/app/content_types/.empty_directory +0 -1
- data/generators/foundation5/app/views/pages/404.liquid +0 -10
- data/generators/foundation5/app/views/pages/index.liquid.haml +0 -157
- data/generators/foundation5/data/.empty_directory +0 -1
- data/generators/foundation5/icon.png +0 -0
- data/generators/foundation5/public/fonts/.empty_directory +0 -1
- data/generators/foundation5/public/images/.empty_directory +0 -1
- data/generators/foundation5/public/javascripts/foundation/foundation.abide.js +0 -299
- data/generators/foundation5/public/javascripts/foundation/foundation.accordion.js +0 -59
- data/generators/foundation5/public/javascripts/foundation/foundation.alert.js +0 -43
- data/generators/foundation5/public/javascripts/foundation/foundation.clearing.js +0 -534
- data/generators/foundation5/public/javascripts/foundation/foundation.dropdown.js +0 -311
- data/generators/foundation5/public/javascripts/foundation/foundation.equalizer.js +0 -74
- data/generators/foundation5/public/javascripts/foundation/foundation.interchange.js +0 -331
- data/generators/foundation5/public/javascripts/foundation/foundation.joyride.js +0 -843
- data/generators/foundation5/public/javascripts/foundation/foundation.js +0 -611
- data/generators/foundation5/public/javascripts/foundation/foundation.magellan.js +0 -178
- data/generators/foundation5/public/javascripts/foundation/foundation.offcanvas.js +0 -108
- data/generators/foundation5/public/javascripts/foundation/foundation.orbit.js +0 -610
- data/generators/foundation5/public/javascripts/foundation/foundation.reveal.js +0 -437
- data/generators/foundation5/public/javascripts/foundation/foundation.slider.js +0 -199
- data/generators/foundation5/public/javascripts/foundation/foundation.tab.js +0 -167
- data/generators/foundation5/public/javascripts/foundation/foundation.tooltip.js +0 -298
- data/generators/foundation5/public/javascripts/foundation/foundation.topbar.js +0 -425
- data/generators/foundation5/public/javascripts/foundation.js +0 -4161
- data/generators/foundation5/public/javascripts/foundation.min.js +0 -10
- data/generators/foundation5/public/javascripts/vendor/custom.modernizr.js +0 -4
- data/generators/foundation5/public/javascripts/vendor/custom.modernizr.min.js +0 -1
- data/generators/foundation5/public/javascripts/vendor/fastclick.js +0 -9
- data/generators/foundation5/public/javascripts/vendor/fastclick.min.js +0 -11
- data/generators/foundation5/public/javascripts/vendor/jquery.autocomplete.js +0 -645
- data/generators/foundation5/public/javascripts/vendor/jquery.autocomplete.min.js +0 -1
- data/generators/foundation5/public/javascripts/vendor/jquery.cookie.js +0 -8
- data/generators/foundation5/public/javascripts/vendor/jquery.cookie.min.js +0 -8
- data/generators/foundation5/public/javascripts/vendor/jquery.js +0 -26
- data/generators/foundation5/public/javascripts/vendor/jquery.min.js +0 -27
- data/generators/foundation5/public/javascripts/vendor/modernizr.js +0 -8
- data/generators/foundation5/public/javascripts/vendor/modernizr.min.js +0 -1
- data/generators/foundation5/public/javascripts/vendor/placeholder.js +0 -2
- data/generators/foundation5/public/javascripts/vendor/placeholder.min.js +0 -1
- data/generators/foundation5/public/samples/.empty_directory +0 -1
- data/generators/foundation5/public/stylesheets/application.css +0 -2
- data/generators/foundation5/public/stylesheets/application.css.scss +0 -3
- data/generators/foundation5/public/stylesheets/foundation/_functions.scss +0 -102
- data/generators/foundation5/public/stylesheets/foundation/_settings.scss +0 -1441
- data/generators/foundation5/public/stylesheets/foundation/components/_accordion.scss +0 -157
- data/generators/foundation5/public/stylesheets/foundation/components/_alert-boxes.scss +0 -128
- data/generators/foundation5/public/stylesheets/foundation/components/_block-grid.scss +0 -132
- data/generators/foundation5/public/stylesheets/foundation/components/_breadcrumbs.scss +0 -132
- data/generators/foundation5/public/stylesheets/foundation/components/_button-groups.scss +0 -197
- data/generators/foundation5/public/stylesheets/foundation/components/_buttons.scss +0 -259
- data/generators/foundation5/public/stylesheets/foundation/components/_clearing.scss +0 -247
- data/generators/foundation5/public/stylesheets/foundation/components/_dropdown-buttons.scss +0 -130
- data/generators/foundation5/public/stylesheets/foundation/components/_dropdown.scss +0 -262
- data/generators/foundation5/public/stylesheets/foundation/components/_flex-video.scss +0 -51
- data/generators/foundation5/public/stylesheets/foundation/components/_forms.scss +0 -585
- data/generators/foundation5/public/stylesheets/foundation/components/_global.scss +0 -460
- data/generators/foundation5/public/stylesheets/foundation/components/_grid.scss +0 -275
- data/generators/foundation5/public/stylesheets/foundation/components/_icon-bar.scss +0 -293
- data/generators/foundation5/public/stylesheets/foundation/components/_inline-lists.scss +0 -57
- data/generators/foundation5/public/stylesheets/foundation/components/_joyride.scss +0 -222
- data/generators/foundation5/public/stylesheets/foundation/components/_keystrokes.scss +0 -61
- data/generators/foundation5/public/stylesheets/foundation/components/_labels.scss +0 -106
- data/generators/foundation5/public/stylesheets/foundation/components/_magellan.scss +0 -34
- data/generators/foundation5/public/stylesheets/foundation/components/_offcanvas.scss +0 -513
- data/generators/foundation5/public/stylesheets/foundation/components/_orbit.scss +0 -368
- data/generators/foundation5/public/stylesheets/foundation/components/_pagination.scss +0 -162
- data/generators/foundation5/public/stylesheets/foundation/components/_panels.scss +0 -95
- data/generators/foundation5/public/stylesheets/foundation/components/_pricing-tables.scss +0 -150
- data/generators/foundation5/public/stylesheets/foundation/components/_progress-bars.scss +0 -79
- data/generators/foundation5/public/stylesheets/foundation/components/_range-slider.scss +0 -168
- data/generators/foundation5/public/stylesheets/foundation/components/_reveal.scss +0 -222
- data/generators/foundation5/public/stylesheets/foundation/components/_side-nav.scss +0 -116
- data/generators/foundation5/public/stylesheets/foundation/components/_split-buttons.scss +0 -191
- data/generators/foundation5/public/stylesheets/foundation/components/_sub-nav.scss +0 -123
- data/generators/foundation5/public/stylesheets/foundation/components/_switches.scss +0 -230
- data/generators/foundation5/public/stylesheets/foundation/components/_tables.scss +0 -135
- data/generators/foundation5/public/stylesheets/foundation/components/_tabs.scss +0 -123
- data/generators/foundation5/public/stylesheets/foundation/components/_thumbs.scss +0 -66
- data/generators/foundation5/public/stylesheets/foundation/components/_toolbar.scss +0 -70
- data/generators/foundation5/public/stylesheets/foundation/components/_tooltips.scss +0 -142
- data/generators/foundation5/public/stylesheets/foundation/components/_top-bar.scss +0 -685
- data/generators/foundation5/public/stylesheets/foundation/components/_type.scss +0 -525
- data/generators/foundation5/public/stylesheets/foundation/components/_visibility.scss +0 -408
- data/generators/foundation5/public/stylesheets/foundation.css +0 -6138
- data/generators/foundation5/public/stylesheets/foundation.css.scss +0 -45
- data/generators/foundation5/public/stylesheets/normalize.css +0 -357
- data/lib/locomotive/wagon/generators/site/foundation4.rb +0 -34
@@ -0,0 +1,3499 @@
|
|
1
|
+
@charset "UTF-8";
|
2
|
+
/**
|
3
|
+
* Foundation for Sites by ZURB
|
4
|
+
* Version 6.2.1
|
5
|
+
* foundation.zurb.com
|
6
|
+
* Licensed under MIT Open Source
|
7
|
+
*/
|
8
|
+
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
|
9
|
+
/**
|
10
|
+
* 1. Set default font family to sans-serif.
|
11
|
+
* 2. Prevent iOS and IE text size adjust after device orientation change,
|
12
|
+
* without disabling user zoom.
|
13
|
+
*/
|
14
|
+
html {
|
15
|
+
font-family: sans-serif;
|
16
|
+
/* 1 */
|
17
|
+
-ms-text-size-adjust: 100%;
|
18
|
+
/* 2 */
|
19
|
+
-webkit-text-size-adjust: 100%;
|
20
|
+
/* 2 */ }
|
21
|
+
|
22
|
+
/**
|
23
|
+
* Remove default margin.
|
24
|
+
*/
|
25
|
+
body {
|
26
|
+
margin: 0; }
|
27
|
+
|
28
|
+
/* HTML5 display definitions
|
29
|
+
========================================================================== */
|
30
|
+
/**
|
31
|
+
* Correct `block` display not defined for any HTML5 element in IE 8/9.
|
32
|
+
* Correct `block` display not defined for `details` or `summary` in IE 10/11
|
33
|
+
* and Firefox.
|
34
|
+
* Correct `block` display not defined for `main` in IE 11.
|
35
|
+
*/
|
36
|
+
article,
|
37
|
+
aside,
|
38
|
+
details,
|
39
|
+
figcaption,
|
40
|
+
figure,
|
41
|
+
footer,
|
42
|
+
header,
|
43
|
+
hgroup,
|
44
|
+
main,
|
45
|
+
menu,
|
46
|
+
nav,
|
47
|
+
section,
|
48
|
+
summary {
|
49
|
+
display: block; }
|
50
|
+
|
51
|
+
/**
|
52
|
+
* 1. Correct `inline-block` display not defined in IE 8/9.
|
53
|
+
* 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
|
54
|
+
*/
|
55
|
+
audio,
|
56
|
+
canvas,
|
57
|
+
progress,
|
58
|
+
video {
|
59
|
+
display: inline-block;
|
60
|
+
/* 1 */
|
61
|
+
vertical-align: baseline;
|
62
|
+
/* 2 */ }
|
63
|
+
|
64
|
+
/**
|
65
|
+
* Prevent modern browsers from displaying `audio` without controls.
|
66
|
+
* Remove excess height in iOS 5 devices.
|
67
|
+
*/
|
68
|
+
audio:not([controls]) {
|
69
|
+
display: none;
|
70
|
+
height: 0; }
|
71
|
+
|
72
|
+
/**
|
73
|
+
* Address `[hidden]` styling not present in IE 8/9/10.
|
74
|
+
* Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
|
75
|
+
*/
|
76
|
+
[hidden],
|
77
|
+
template {
|
78
|
+
display: none; }
|
79
|
+
|
80
|
+
/* Links
|
81
|
+
========================================================================== */
|
82
|
+
/**
|
83
|
+
* Remove the gray background color from active links in IE 10.
|
84
|
+
*/
|
85
|
+
a {
|
86
|
+
background-color: transparent; }
|
87
|
+
|
88
|
+
/**
|
89
|
+
* Improve readability of focused elements when they are also in an
|
90
|
+
* active/hover state.
|
91
|
+
*/
|
92
|
+
a:active,
|
93
|
+
a:hover {
|
94
|
+
outline: 0; }
|
95
|
+
|
96
|
+
/* Text-level semantics
|
97
|
+
========================================================================== */
|
98
|
+
/**
|
99
|
+
* Address styling not present in IE 8/9/10/11, Safari, and Chrome.
|
100
|
+
*/
|
101
|
+
abbr[title] {
|
102
|
+
border-bottom: 1px dotted; }
|
103
|
+
|
104
|
+
/**
|
105
|
+
* Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
|
106
|
+
*/
|
107
|
+
b,
|
108
|
+
strong {
|
109
|
+
font-weight: bold; }
|
110
|
+
|
111
|
+
/**
|
112
|
+
* Address styling not present in Safari and Chrome.
|
113
|
+
*/
|
114
|
+
dfn {
|
115
|
+
font-style: italic; }
|
116
|
+
|
117
|
+
/**
|
118
|
+
* Address variable `h1` font-size and margin within `section` and `article`
|
119
|
+
* contexts in Firefox 4+, Safari, and Chrome.
|
120
|
+
*/
|
121
|
+
h1 {
|
122
|
+
font-size: 2em;
|
123
|
+
margin: 0.67em 0; }
|
124
|
+
|
125
|
+
/**
|
126
|
+
* Address styling not present in IE 8/9.
|
127
|
+
*/
|
128
|
+
mark {
|
129
|
+
background: #ff0;
|
130
|
+
color: #000; }
|
131
|
+
|
132
|
+
/**
|
133
|
+
* Address inconsistent and variable font size in all browsers.
|
134
|
+
*/
|
135
|
+
small {
|
136
|
+
font-size: 80%; }
|
137
|
+
|
138
|
+
/**
|
139
|
+
* Prevent `sub` and `sup` affecting `line-height` in all browsers.
|
140
|
+
*/
|
141
|
+
sub,
|
142
|
+
sup {
|
143
|
+
font-size: 75%;
|
144
|
+
line-height: 0;
|
145
|
+
position: relative;
|
146
|
+
vertical-align: baseline; }
|
147
|
+
|
148
|
+
sup {
|
149
|
+
top: -0.5em; }
|
150
|
+
|
151
|
+
sub {
|
152
|
+
bottom: -0.25em; }
|
153
|
+
|
154
|
+
/* Embedded content
|
155
|
+
========================================================================== */
|
156
|
+
/**
|
157
|
+
* Remove border when inside `a` element in IE 8/9/10.
|
158
|
+
*/
|
159
|
+
img {
|
160
|
+
border: 0; }
|
161
|
+
|
162
|
+
/**
|
163
|
+
* Correct overflow not hidden in IE 9/10/11.
|
164
|
+
*/
|
165
|
+
svg:not(:root) {
|
166
|
+
overflow: hidden; }
|
167
|
+
|
168
|
+
/* Grouping content
|
169
|
+
========================================================================== */
|
170
|
+
/**
|
171
|
+
* Address margin not present in IE 8/9 and Safari.
|
172
|
+
*/
|
173
|
+
figure {
|
174
|
+
margin: 1em 40px; }
|
175
|
+
|
176
|
+
/**
|
177
|
+
* Address differences between Firefox and other browsers.
|
178
|
+
*/
|
179
|
+
hr {
|
180
|
+
box-sizing: content-box;
|
181
|
+
height: 0; }
|
182
|
+
|
183
|
+
/**
|
184
|
+
* Contain overflow in all browsers.
|
185
|
+
*/
|
186
|
+
pre {
|
187
|
+
overflow: auto; }
|
188
|
+
|
189
|
+
/**
|
190
|
+
* Address odd `em`-unit font size rendering in all browsers.
|
191
|
+
*/
|
192
|
+
code,
|
193
|
+
kbd,
|
194
|
+
pre,
|
195
|
+
samp {
|
196
|
+
font-family: monospace, monospace;
|
197
|
+
font-size: 1em; }
|
198
|
+
|
199
|
+
/* Forms
|
200
|
+
========================================================================== */
|
201
|
+
/**
|
202
|
+
* Known limitation: by default, Chrome and Safari on OS X allow very limited
|
203
|
+
* styling of `select`, unless a `border` property is set.
|
204
|
+
*/
|
205
|
+
/**
|
206
|
+
* 1. Correct color not being inherited.
|
207
|
+
* Known issue: affects color of disabled elements.
|
208
|
+
* 2. Correct font properties not being inherited.
|
209
|
+
* 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
|
210
|
+
*/
|
211
|
+
button,
|
212
|
+
input,
|
213
|
+
optgroup,
|
214
|
+
select,
|
215
|
+
textarea {
|
216
|
+
color: inherit;
|
217
|
+
/* 1 */
|
218
|
+
font: inherit;
|
219
|
+
/* 2 */
|
220
|
+
margin: 0;
|
221
|
+
/* 3 */ }
|
222
|
+
|
223
|
+
/**
|
224
|
+
* Address `overflow` set to `hidden` in IE 8/9/10/11.
|
225
|
+
*/
|
226
|
+
button {
|
227
|
+
overflow: visible; }
|
228
|
+
|
229
|
+
/**
|
230
|
+
* Address inconsistent `text-transform` inheritance for `button` and `select`.
|
231
|
+
* All other form control elements do not inherit `text-transform` values.
|
232
|
+
* Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
|
233
|
+
* Correct `select` style inheritance in Firefox.
|
234
|
+
*/
|
235
|
+
button,
|
236
|
+
select {
|
237
|
+
text-transform: none; }
|
238
|
+
|
239
|
+
/**
|
240
|
+
* 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
|
241
|
+
* and `video` controls.
|
242
|
+
* 2. Correct inability to style clickable `input` types in iOS.
|
243
|
+
* 3. Improve usability and consistency of cursor style between image-type
|
244
|
+
* `input` and others.
|
245
|
+
*/
|
246
|
+
button,
|
247
|
+
html input[type="button"],
|
248
|
+
input[type="reset"],
|
249
|
+
input[type="submit"] {
|
250
|
+
-webkit-appearance: button;
|
251
|
+
/* 2 */
|
252
|
+
cursor: pointer;
|
253
|
+
/* 3 */ }
|
254
|
+
|
255
|
+
/**
|
256
|
+
* Re-set default cursor for disabled elements.
|
257
|
+
*/
|
258
|
+
button[disabled],
|
259
|
+
html input[disabled] {
|
260
|
+
cursor: not-allowed; }
|
261
|
+
|
262
|
+
/**
|
263
|
+
* Remove inner padding and border in Firefox 4+.
|
264
|
+
*/
|
265
|
+
button::-moz-focus-inner,
|
266
|
+
input::-moz-focus-inner {
|
267
|
+
border: 0;
|
268
|
+
padding: 0; }
|
269
|
+
|
270
|
+
/**
|
271
|
+
* Address Firefox 4+ setting `line-height` on `input` using `!important` in
|
272
|
+
* the UA stylesheet.
|
273
|
+
*/
|
274
|
+
input {
|
275
|
+
line-height: normal; }
|
276
|
+
|
277
|
+
/**
|
278
|
+
* It's recommended that you don't attempt to style these elements.
|
279
|
+
* Firefox's implementation doesn't respect box-sizing, padding, or width.
|
280
|
+
*
|
281
|
+
* 1. Address box sizing set to `content-box` in IE 8/9/10.
|
282
|
+
* 2. Remove excess padding in IE 8/9/10.
|
283
|
+
*/
|
284
|
+
input[type="checkbox"],
|
285
|
+
input[type="radio"] {
|
286
|
+
box-sizing: border-box;
|
287
|
+
/* 1 */
|
288
|
+
padding: 0;
|
289
|
+
/* 2 */ }
|
290
|
+
|
291
|
+
/**
|
292
|
+
* Fix the cursor style for Chrome's increment/decrement buttons. For certain
|
293
|
+
* `font-size` values of the `input`, it causes the cursor style of the
|
294
|
+
* decrement button to change from `default` to `text`.
|
295
|
+
*/
|
296
|
+
input[type="number"]::-webkit-inner-spin-button,
|
297
|
+
input[type="number"]::-webkit-outer-spin-button {
|
298
|
+
height: auto; }
|
299
|
+
|
300
|
+
/**
|
301
|
+
* 1. Address `appearance` set to `searchfield` in Safari and Chrome.
|
302
|
+
* 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
|
303
|
+
*/
|
304
|
+
input[type="search"] {
|
305
|
+
-webkit-appearance: textfield;
|
306
|
+
/* 1 */
|
307
|
+
box-sizing: content-box;
|
308
|
+
/* 2 */ }
|
309
|
+
|
310
|
+
/**
|
311
|
+
* Remove inner padding and search cancel button in Safari and Chrome on OS X.
|
312
|
+
* Safari (but not Chrome) clips the cancel button when the search input has
|
313
|
+
* padding (and `textfield` appearance).
|
314
|
+
*/
|
315
|
+
input[type="search"]::-webkit-search-cancel-button,
|
316
|
+
input[type="search"]::-webkit-search-decoration {
|
317
|
+
-webkit-appearance: none; }
|
318
|
+
|
319
|
+
/**
|
320
|
+
* Define consistent border, margin, and padding.
|
321
|
+
* [NOTE] We don't enable this ruleset in Foundation, because we want the <fieldset> element to have plain styling.
|
322
|
+
*/
|
323
|
+
/* fieldset {
|
324
|
+
border: 1px solid #c0c0c0;
|
325
|
+
margin: 0 2px;
|
326
|
+
padding: 0.35em 0.625em 0.75em;
|
327
|
+
} */
|
328
|
+
/**
|
329
|
+
* 1. Correct `color` not being inherited in IE 8/9/10/11.
|
330
|
+
* 2. Remove padding so people aren't caught out if they zero out fieldsets.
|
331
|
+
*/
|
332
|
+
legend {
|
333
|
+
border: 0;
|
334
|
+
/* 1 */
|
335
|
+
padding: 0;
|
336
|
+
/* 2 */ }
|
337
|
+
|
338
|
+
/**
|
339
|
+
* Remove default vertical scrollbar in IE 8/9/10/11.
|
340
|
+
*/
|
341
|
+
textarea {
|
342
|
+
overflow: auto; }
|
343
|
+
|
344
|
+
/**
|
345
|
+
* Don't inherit the `font-weight` (applied by a rule above).
|
346
|
+
* NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
|
347
|
+
*/
|
348
|
+
optgroup {
|
349
|
+
font-weight: bold; }
|
350
|
+
|
351
|
+
/* Tables
|
352
|
+
========================================================================== */
|
353
|
+
/**
|
354
|
+
* Remove most spacing between table cells.
|
355
|
+
*/
|
356
|
+
table {
|
357
|
+
border-collapse: collapse;
|
358
|
+
border-spacing: 0; }
|
359
|
+
|
360
|
+
td,
|
361
|
+
th {
|
362
|
+
padding: 0; }
|
363
|
+
|
364
|
+
.foundation-mq {
|
365
|
+
font-family: "small=0em&medium=40em&large=64em&xlarge=75em&xxlarge=90em"; }
|
366
|
+
|
367
|
+
html {
|
368
|
+
font-size: 100%;
|
369
|
+
box-sizing: border-box; }
|
370
|
+
|
371
|
+
*,
|
372
|
+
*::before,
|
373
|
+
*::after {
|
374
|
+
box-sizing: inherit; }
|
375
|
+
|
376
|
+
body {
|
377
|
+
padding: 0;
|
378
|
+
margin: 0;
|
379
|
+
font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
|
380
|
+
font-weight: normal;
|
381
|
+
line-height: 1.5;
|
382
|
+
color: #0a0a0a;
|
383
|
+
background: #fefefe;
|
384
|
+
-webkit-font-smoothing: antialiased;
|
385
|
+
-moz-osx-font-smoothing: grayscale; }
|
386
|
+
|
387
|
+
img {
|
388
|
+
max-width: 100%;
|
389
|
+
height: auto;
|
390
|
+
-ms-interpolation-mode: bicubic;
|
391
|
+
display: inline-block;
|
392
|
+
vertical-align: middle; }
|
393
|
+
|
394
|
+
textarea {
|
395
|
+
height: auto;
|
396
|
+
min-height: 50px;
|
397
|
+
border-radius: 0; }
|
398
|
+
|
399
|
+
select {
|
400
|
+
width: 100%;
|
401
|
+
border-radius: 0; }
|
402
|
+
|
403
|
+
#map_canvas img,
|
404
|
+
#map_canvas embed,
|
405
|
+
#map_canvas object,
|
406
|
+
.map_canvas img,
|
407
|
+
.map_canvas embed,
|
408
|
+
.map_canvas object,
|
409
|
+
.mqa-display img,
|
410
|
+
.mqa-display embed,
|
411
|
+
.mqa-display object {
|
412
|
+
max-width: none !important; }
|
413
|
+
|
414
|
+
button {
|
415
|
+
-webkit-appearance: none;
|
416
|
+
-moz-appearance: none;
|
417
|
+
background: transparent;
|
418
|
+
padding: 0;
|
419
|
+
border: 0;
|
420
|
+
border-radius: 0;
|
421
|
+
line-height: 1; }
|
422
|
+
[data-whatinput='mouse'] button {
|
423
|
+
outline: 0; }
|
424
|
+
|
425
|
+
.is-visible {
|
426
|
+
display: block !important; }
|
427
|
+
|
428
|
+
.is-hidden {
|
429
|
+
display: none !important; }
|
430
|
+
|
431
|
+
.row {
|
432
|
+
max-width: 75rem;
|
433
|
+
margin-left: auto;
|
434
|
+
margin-right: auto; }
|
435
|
+
.row::before, .row::after {
|
436
|
+
content: ' ';
|
437
|
+
display: table; }
|
438
|
+
.row::after {
|
439
|
+
clear: both; }
|
440
|
+
.row.collapse > .column, .row.collapse > .columns {
|
441
|
+
padding-left: 0;
|
442
|
+
padding-right: 0; }
|
443
|
+
.row .row {
|
444
|
+
max-width: none;
|
445
|
+
margin-left: -0.625rem;
|
446
|
+
margin-right: -0.625rem;
|
447
|
+
max-width: none; }
|
448
|
+
@media screen and (min-width: 40em) {
|
449
|
+
.row .row {
|
450
|
+
margin-left: -0.9375rem;
|
451
|
+
margin-right: -0.9375rem; } }
|
452
|
+
.row .row.collapse {
|
453
|
+
margin-left: 0;
|
454
|
+
margin-right: 0; }
|
455
|
+
.row.expanded {
|
456
|
+
max-width: none; }
|
457
|
+
.row.expanded .row {
|
458
|
+
margin-left: auto;
|
459
|
+
margin-right: auto; }
|
460
|
+
|
461
|
+
.column, .columns {
|
462
|
+
width: 100%;
|
463
|
+
float: left;
|
464
|
+
padding-left: 0.625rem;
|
465
|
+
padding-right: 0.625rem; }
|
466
|
+
@media screen and (min-width: 40em) {
|
467
|
+
.column, .columns {
|
468
|
+
padding-left: 0.9375rem;
|
469
|
+
padding-right: 0.9375rem; } }
|
470
|
+
.column:last-child:not(:first-child), .columns:last-child:not(:first-child) {
|
471
|
+
float: right; }
|
472
|
+
.column.end:last-child:last-child, .end.columns:last-child:last-child {
|
473
|
+
float: left; }
|
474
|
+
|
475
|
+
.column.row.row, .row.row.columns {
|
476
|
+
float: none; }
|
477
|
+
.row .column.row.row, .row .row.row.columns {
|
478
|
+
padding-left: 0;
|
479
|
+
padding-right: 0;
|
480
|
+
margin-left: 0;
|
481
|
+
margin-right: 0; }
|
482
|
+
|
483
|
+
.small-1 {
|
484
|
+
width: 8.33333%; }
|
485
|
+
|
486
|
+
.small-push-1 {
|
487
|
+
position: relative;
|
488
|
+
left: 8.33333%; }
|
489
|
+
|
490
|
+
.small-pull-1 {
|
491
|
+
position: relative;
|
492
|
+
left: -8.33333%; }
|
493
|
+
|
494
|
+
.small-offset-0 {
|
495
|
+
margin-left: 0%; }
|
496
|
+
|
497
|
+
.small-2 {
|
498
|
+
width: 16.66667%; }
|
499
|
+
|
500
|
+
.small-push-2 {
|
501
|
+
position: relative;
|
502
|
+
left: 16.66667%; }
|
503
|
+
|
504
|
+
.small-pull-2 {
|
505
|
+
position: relative;
|
506
|
+
left: -16.66667%; }
|
507
|
+
|
508
|
+
.small-offset-1 {
|
509
|
+
margin-left: 8.33333%; }
|
510
|
+
|
511
|
+
.small-3 {
|
512
|
+
width: 25%; }
|
513
|
+
|
514
|
+
.small-push-3 {
|
515
|
+
position: relative;
|
516
|
+
left: 25%; }
|
517
|
+
|
518
|
+
.small-pull-3 {
|
519
|
+
position: relative;
|
520
|
+
left: -25%; }
|
521
|
+
|
522
|
+
.small-offset-2 {
|
523
|
+
margin-left: 16.66667%; }
|
524
|
+
|
525
|
+
.small-4 {
|
526
|
+
width: 33.33333%; }
|
527
|
+
|
528
|
+
.small-push-4 {
|
529
|
+
position: relative;
|
530
|
+
left: 33.33333%; }
|
531
|
+
|
532
|
+
.small-pull-4 {
|
533
|
+
position: relative;
|
534
|
+
left: -33.33333%; }
|
535
|
+
|
536
|
+
.small-offset-3 {
|
537
|
+
margin-left: 25%; }
|
538
|
+
|
539
|
+
.small-5 {
|
540
|
+
width: 41.66667%; }
|
541
|
+
|
542
|
+
.small-push-5 {
|
543
|
+
position: relative;
|
544
|
+
left: 41.66667%; }
|
545
|
+
|
546
|
+
.small-pull-5 {
|
547
|
+
position: relative;
|
548
|
+
left: -41.66667%; }
|
549
|
+
|
550
|
+
.small-offset-4 {
|
551
|
+
margin-left: 33.33333%; }
|
552
|
+
|
553
|
+
.small-6 {
|
554
|
+
width: 50%; }
|
555
|
+
|
556
|
+
.small-push-6 {
|
557
|
+
position: relative;
|
558
|
+
left: 50%; }
|
559
|
+
|
560
|
+
.small-pull-6 {
|
561
|
+
position: relative;
|
562
|
+
left: -50%; }
|
563
|
+
|
564
|
+
.small-offset-5 {
|
565
|
+
margin-left: 41.66667%; }
|
566
|
+
|
567
|
+
.small-7 {
|
568
|
+
width: 58.33333%; }
|
569
|
+
|
570
|
+
.small-push-7 {
|
571
|
+
position: relative;
|
572
|
+
left: 58.33333%; }
|
573
|
+
|
574
|
+
.small-pull-7 {
|
575
|
+
position: relative;
|
576
|
+
left: -58.33333%; }
|
577
|
+
|
578
|
+
.small-offset-6 {
|
579
|
+
margin-left: 50%; }
|
580
|
+
|
581
|
+
.small-8 {
|
582
|
+
width: 66.66667%; }
|
583
|
+
|
584
|
+
.small-push-8 {
|
585
|
+
position: relative;
|
586
|
+
left: 66.66667%; }
|
587
|
+
|
588
|
+
.small-pull-8 {
|
589
|
+
position: relative;
|
590
|
+
left: -66.66667%; }
|
591
|
+
|
592
|
+
.small-offset-7 {
|
593
|
+
margin-left: 58.33333%; }
|
594
|
+
|
595
|
+
.small-9 {
|
596
|
+
width: 75%; }
|
597
|
+
|
598
|
+
.small-push-9 {
|
599
|
+
position: relative;
|
600
|
+
left: 75%; }
|
601
|
+
|
602
|
+
.small-pull-9 {
|
603
|
+
position: relative;
|
604
|
+
left: -75%; }
|
605
|
+
|
606
|
+
.small-offset-8 {
|
607
|
+
margin-left: 66.66667%; }
|
608
|
+
|
609
|
+
.small-10 {
|
610
|
+
width: 83.33333%; }
|
611
|
+
|
612
|
+
.small-push-10 {
|
613
|
+
position: relative;
|
614
|
+
left: 83.33333%; }
|
615
|
+
|
616
|
+
.small-pull-10 {
|
617
|
+
position: relative;
|
618
|
+
left: -83.33333%; }
|
619
|
+
|
620
|
+
.small-offset-9 {
|
621
|
+
margin-left: 75%; }
|
622
|
+
|
623
|
+
.small-11 {
|
624
|
+
width: 91.66667%; }
|
625
|
+
|
626
|
+
.small-push-11 {
|
627
|
+
position: relative;
|
628
|
+
left: 91.66667%; }
|
629
|
+
|
630
|
+
.small-pull-11 {
|
631
|
+
position: relative;
|
632
|
+
left: -91.66667%; }
|
633
|
+
|
634
|
+
.small-offset-10 {
|
635
|
+
margin-left: 83.33333%; }
|
636
|
+
|
637
|
+
.small-12 {
|
638
|
+
width: 100%; }
|
639
|
+
|
640
|
+
.small-offset-11 {
|
641
|
+
margin-left: 91.66667%; }
|
642
|
+
|
643
|
+
.small-up-1 > .column, .small-up-1 > .columns {
|
644
|
+
width: 100%;
|
645
|
+
float: left; }
|
646
|
+
.small-up-1 > .column:nth-of-type(1n), .small-up-1 > .columns:nth-of-type(1n) {
|
647
|
+
clear: none; }
|
648
|
+
.small-up-1 > .column:nth-of-type(1n+1), .small-up-1 > .columns:nth-of-type(1n+1) {
|
649
|
+
clear: both; }
|
650
|
+
.small-up-1 > .column:last-child, .small-up-1 > .columns:last-child {
|
651
|
+
float: left; }
|
652
|
+
|
653
|
+
.small-up-2 > .column, .small-up-2 > .columns {
|
654
|
+
width: 50%;
|
655
|
+
float: left; }
|
656
|
+
.small-up-2 > .column:nth-of-type(1n), .small-up-2 > .columns:nth-of-type(1n) {
|
657
|
+
clear: none; }
|
658
|
+
.small-up-2 > .column:nth-of-type(2n+1), .small-up-2 > .columns:nth-of-type(2n+1) {
|
659
|
+
clear: both; }
|
660
|
+
.small-up-2 > .column:last-child, .small-up-2 > .columns:last-child {
|
661
|
+
float: left; }
|
662
|
+
|
663
|
+
.small-up-3 > .column, .small-up-3 > .columns {
|
664
|
+
width: 33.33333%;
|
665
|
+
float: left; }
|
666
|
+
.small-up-3 > .column:nth-of-type(1n), .small-up-3 > .columns:nth-of-type(1n) {
|
667
|
+
clear: none; }
|
668
|
+
.small-up-3 > .column:nth-of-type(3n+1), .small-up-3 > .columns:nth-of-type(3n+1) {
|
669
|
+
clear: both; }
|
670
|
+
.small-up-3 > .column:last-child, .small-up-3 > .columns:last-child {
|
671
|
+
float: left; }
|
672
|
+
|
673
|
+
.small-up-4 > .column, .small-up-4 > .columns {
|
674
|
+
width: 25%;
|
675
|
+
float: left; }
|
676
|
+
.small-up-4 > .column:nth-of-type(1n), .small-up-4 > .columns:nth-of-type(1n) {
|
677
|
+
clear: none; }
|
678
|
+
.small-up-4 > .column:nth-of-type(4n+1), .small-up-4 > .columns:nth-of-type(4n+1) {
|
679
|
+
clear: both; }
|
680
|
+
.small-up-4 > .column:last-child, .small-up-4 > .columns:last-child {
|
681
|
+
float: left; }
|
682
|
+
|
683
|
+
.small-up-5 > .column, .small-up-5 > .columns {
|
684
|
+
width: 20%;
|
685
|
+
float: left; }
|
686
|
+
.small-up-5 > .column:nth-of-type(1n), .small-up-5 > .columns:nth-of-type(1n) {
|
687
|
+
clear: none; }
|
688
|
+
.small-up-5 > .column:nth-of-type(5n+1), .small-up-5 > .columns:nth-of-type(5n+1) {
|
689
|
+
clear: both; }
|
690
|
+
.small-up-5 > .column:last-child, .small-up-5 > .columns:last-child {
|
691
|
+
float: left; }
|
692
|
+
|
693
|
+
.small-up-6 > .column, .small-up-6 > .columns {
|
694
|
+
width: 16.66667%;
|
695
|
+
float: left; }
|
696
|
+
.small-up-6 > .column:nth-of-type(1n), .small-up-6 > .columns:nth-of-type(1n) {
|
697
|
+
clear: none; }
|
698
|
+
.small-up-6 > .column:nth-of-type(6n+1), .small-up-6 > .columns:nth-of-type(6n+1) {
|
699
|
+
clear: both; }
|
700
|
+
.small-up-6 > .column:last-child, .small-up-6 > .columns:last-child {
|
701
|
+
float: left; }
|
702
|
+
|
703
|
+
.small-up-7 > .column, .small-up-7 > .columns {
|
704
|
+
width: 14.28571%;
|
705
|
+
float: left; }
|
706
|
+
.small-up-7 > .column:nth-of-type(1n), .small-up-7 > .columns:nth-of-type(1n) {
|
707
|
+
clear: none; }
|
708
|
+
.small-up-7 > .column:nth-of-type(7n+1), .small-up-7 > .columns:nth-of-type(7n+1) {
|
709
|
+
clear: both; }
|
710
|
+
.small-up-7 > .column:last-child, .small-up-7 > .columns:last-child {
|
711
|
+
float: left; }
|
712
|
+
|
713
|
+
.small-up-8 > .column, .small-up-8 > .columns {
|
714
|
+
width: 12.5%;
|
715
|
+
float: left; }
|
716
|
+
.small-up-8 > .column:nth-of-type(1n), .small-up-8 > .columns:nth-of-type(1n) {
|
717
|
+
clear: none; }
|
718
|
+
.small-up-8 > .column:nth-of-type(8n+1), .small-up-8 > .columns:nth-of-type(8n+1) {
|
719
|
+
clear: both; }
|
720
|
+
.small-up-8 > .column:last-child, .small-up-8 > .columns:last-child {
|
721
|
+
float: left; }
|
722
|
+
|
723
|
+
.small-collapse > .column, .small-collapse > .columns {
|
724
|
+
padding-left: 0;
|
725
|
+
padding-right: 0; }
|
726
|
+
|
727
|
+
.small-collapse .row {
|
728
|
+
margin-left: 0;
|
729
|
+
margin-right: 0; }
|
730
|
+
|
731
|
+
.small-uncollapse > .column, .small-uncollapse > .columns {
|
732
|
+
padding-left: 0.625rem;
|
733
|
+
padding-right: 0.625rem; }
|
734
|
+
|
735
|
+
.small-centered {
|
736
|
+
float: none;
|
737
|
+
margin-left: auto;
|
738
|
+
margin-right: auto; }
|
739
|
+
|
740
|
+
.small-uncentered,
|
741
|
+
.small-push-0,
|
742
|
+
.small-pull-0 {
|
743
|
+
position: static;
|
744
|
+
margin-left: 0;
|
745
|
+
margin-right: 0;
|
746
|
+
float: left; }
|
747
|
+
|
748
|
+
@media screen and (min-width: 40em) {
|
749
|
+
.medium-1 {
|
750
|
+
width: 8.33333%; }
|
751
|
+
.medium-push-1 {
|
752
|
+
position: relative;
|
753
|
+
left: 8.33333%; }
|
754
|
+
.medium-pull-1 {
|
755
|
+
position: relative;
|
756
|
+
left: -8.33333%; }
|
757
|
+
.medium-offset-0 {
|
758
|
+
margin-left: 0%; }
|
759
|
+
.medium-2 {
|
760
|
+
width: 16.66667%; }
|
761
|
+
.medium-push-2 {
|
762
|
+
position: relative;
|
763
|
+
left: 16.66667%; }
|
764
|
+
.medium-pull-2 {
|
765
|
+
position: relative;
|
766
|
+
left: -16.66667%; }
|
767
|
+
.medium-offset-1 {
|
768
|
+
margin-left: 8.33333%; }
|
769
|
+
.medium-3 {
|
770
|
+
width: 25%; }
|
771
|
+
.medium-push-3 {
|
772
|
+
position: relative;
|
773
|
+
left: 25%; }
|
774
|
+
.medium-pull-3 {
|
775
|
+
position: relative;
|
776
|
+
left: -25%; }
|
777
|
+
.medium-offset-2 {
|
778
|
+
margin-left: 16.66667%; }
|
779
|
+
.medium-4 {
|
780
|
+
width: 33.33333%; }
|
781
|
+
.medium-push-4 {
|
782
|
+
position: relative;
|
783
|
+
left: 33.33333%; }
|
784
|
+
.medium-pull-4 {
|
785
|
+
position: relative;
|
786
|
+
left: -33.33333%; }
|
787
|
+
.medium-offset-3 {
|
788
|
+
margin-left: 25%; }
|
789
|
+
.medium-5 {
|
790
|
+
width: 41.66667%; }
|
791
|
+
.medium-push-5 {
|
792
|
+
position: relative;
|
793
|
+
left: 41.66667%; }
|
794
|
+
.medium-pull-5 {
|
795
|
+
position: relative;
|
796
|
+
left: -41.66667%; }
|
797
|
+
.medium-offset-4 {
|
798
|
+
margin-left: 33.33333%; }
|
799
|
+
.medium-6 {
|
800
|
+
width: 50%; }
|
801
|
+
.medium-push-6 {
|
802
|
+
position: relative;
|
803
|
+
left: 50%; }
|
804
|
+
.medium-pull-6 {
|
805
|
+
position: relative;
|
806
|
+
left: -50%; }
|
807
|
+
.medium-offset-5 {
|
808
|
+
margin-left: 41.66667%; }
|
809
|
+
.medium-7 {
|
810
|
+
width: 58.33333%; }
|
811
|
+
.medium-push-7 {
|
812
|
+
position: relative;
|
813
|
+
left: 58.33333%; }
|
814
|
+
.medium-pull-7 {
|
815
|
+
position: relative;
|
816
|
+
left: -58.33333%; }
|
817
|
+
.medium-offset-6 {
|
818
|
+
margin-left: 50%; }
|
819
|
+
.medium-8 {
|
820
|
+
width: 66.66667%; }
|
821
|
+
.medium-push-8 {
|
822
|
+
position: relative;
|
823
|
+
left: 66.66667%; }
|
824
|
+
.medium-pull-8 {
|
825
|
+
position: relative;
|
826
|
+
left: -66.66667%; }
|
827
|
+
.medium-offset-7 {
|
828
|
+
margin-left: 58.33333%; }
|
829
|
+
.medium-9 {
|
830
|
+
width: 75%; }
|
831
|
+
.medium-push-9 {
|
832
|
+
position: relative;
|
833
|
+
left: 75%; }
|
834
|
+
.medium-pull-9 {
|
835
|
+
position: relative;
|
836
|
+
left: -75%; }
|
837
|
+
.medium-offset-8 {
|
838
|
+
margin-left: 66.66667%; }
|
839
|
+
.medium-10 {
|
840
|
+
width: 83.33333%; }
|
841
|
+
.medium-push-10 {
|
842
|
+
position: relative;
|
843
|
+
left: 83.33333%; }
|
844
|
+
.medium-pull-10 {
|
845
|
+
position: relative;
|
846
|
+
left: -83.33333%; }
|
847
|
+
.medium-offset-9 {
|
848
|
+
margin-left: 75%; }
|
849
|
+
.medium-11 {
|
850
|
+
width: 91.66667%; }
|
851
|
+
.medium-push-11 {
|
852
|
+
position: relative;
|
853
|
+
left: 91.66667%; }
|
854
|
+
.medium-pull-11 {
|
855
|
+
position: relative;
|
856
|
+
left: -91.66667%; }
|
857
|
+
.medium-offset-10 {
|
858
|
+
margin-left: 83.33333%; }
|
859
|
+
.medium-12 {
|
860
|
+
width: 100%; }
|
861
|
+
.medium-offset-11 {
|
862
|
+
margin-left: 91.66667%; }
|
863
|
+
.medium-up-1 > .column, .medium-up-1 > .columns {
|
864
|
+
width: 100%;
|
865
|
+
float: left; }
|
866
|
+
.medium-up-1 > .column:nth-of-type(1n), .medium-up-1 > .columns:nth-of-type(1n) {
|
867
|
+
clear: none; }
|
868
|
+
.medium-up-1 > .column:nth-of-type(1n+1), .medium-up-1 > .columns:nth-of-type(1n+1) {
|
869
|
+
clear: both; }
|
870
|
+
.medium-up-1 > .column:last-child, .medium-up-1 > .columns:last-child {
|
871
|
+
float: left; }
|
872
|
+
.medium-up-2 > .column, .medium-up-2 > .columns {
|
873
|
+
width: 50%;
|
874
|
+
float: left; }
|
875
|
+
.medium-up-2 > .column:nth-of-type(1n), .medium-up-2 > .columns:nth-of-type(1n) {
|
876
|
+
clear: none; }
|
877
|
+
.medium-up-2 > .column:nth-of-type(2n+1), .medium-up-2 > .columns:nth-of-type(2n+1) {
|
878
|
+
clear: both; }
|
879
|
+
.medium-up-2 > .column:last-child, .medium-up-2 > .columns:last-child {
|
880
|
+
float: left; }
|
881
|
+
.medium-up-3 > .column, .medium-up-3 > .columns {
|
882
|
+
width: 33.33333%;
|
883
|
+
float: left; }
|
884
|
+
.medium-up-3 > .column:nth-of-type(1n), .medium-up-3 > .columns:nth-of-type(1n) {
|
885
|
+
clear: none; }
|
886
|
+
.medium-up-3 > .column:nth-of-type(3n+1), .medium-up-3 > .columns:nth-of-type(3n+1) {
|
887
|
+
clear: both; }
|
888
|
+
.medium-up-3 > .column:last-child, .medium-up-3 > .columns:last-child {
|
889
|
+
float: left; }
|
890
|
+
.medium-up-4 > .column, .medium-up-4 > .columns {
|
891
|
+
width: 25%;
|
892
|
+
float: left; }
|
893
|
+
.medium-up-4 > .column:nth-of-type(1n), .medium-up-4 > .columns:nth-of-type(1n) {
|
894
|
+
clear: none; }
|
895
|
+
.medium-up-4 > .column:nth-of-type(4n+1), .medium-up-4 > .columns:nth-of-type(4n+1) {
|
896
|
+
clear: both; }
|
897
|
+
.medium-up-4 > .column:last-child, .medium-up-4 > .columns:last-child {
|
898
|
+
float: left; }
|
899
|
+
.medium-up-5 > .column, .medium-up-5 > .columns {
|
900
|
+
width: 20%;
|
901
|
+
float: left; }
|
902
|
+
.medium-up-5 > .column:nth-of-type(1n), .medium-up-5 > .columns:nth-of-type(1n) {
|
903
|
+
clear: none; }
|
904
|
+
.medium-up-5 > .column:nth-of-type(5n+1), .medium-up-5 > .columns:nth-of-type(5n+1) {
|
905
|
+
clear: both; }
|
906
|
+
.medium-up-5 > .column:last-child, .medium-up-5 > .columns:last-child {
|
907
|
+
float: left; }
|
908
|
+
.medium-up-6 > .column, .medium-up-6 > .columns {
|
909
|
+
width: 16.66667%;
|
910
|
+
float: left; }
|
911
|
+
.medium-up-6 > .column:nth-of-type(1n), .medium-up-6 > .columns:nth-of-type(1n) {
|
912
|
+
clear: none; }
|
913
|
+
.medium-up-6 > .column:nth-of-type(6n+1), .medium-up-6 > .columns:nth-of-type(6n+1) {
|
914
|
+
clear: both; }
|
915
|
+
.medium-up-6 > .column:last-child, .medium-up-6 > .columns:last-child {
|
916
|
+
float: left; }
|
917
|
+
.medium-up-7 > .column, .medium-up-7 > .columns {
|
918
|
+
width: 14.28571%;
|
919
|
+
float: left; }
|
920
|
+
.medium-up-7 > .column:nth-of-type(1n), .medium-up-7 > .columns:nth-of-type(1n) {
|
921
|
+
clear: none; }
|
922
|
+
.medium-up-7 > .column:nth-of-type(7n+1), .medium-up-7 > .columns:nth-of-type(7n+1) {
|
923
|
+
clear: both; }
|
924
|
+
.medium-up-7 > .column:last-child, .medium-up-7 > .columns:last-child {
|
925
|
+
float: left; }
|
926
|
+
.medium-up-8 > .column, .medium-up-8 > .columns {
|
927
|
+
width: 12.5%;
|
928
|
+
float: left; }
|
929
|
+
.medium-up-8 > .column:nth-of-type(1n), .medium-up-8 > .columns:nth-of-type(1n) {
|
930
|
+
clear: none; }
|
931
|
+
.medium-up-8 > .column:nth-of-type(8n+1), .medium-up-8 > .columns:nth-of-type(8n+1) {
|
932
|
+
clear: both; }
|
933
|
+
.medium-up-8 > .column:last-child, .medium-up-8 > .columns:last-child {
|
934
|
+
float: left; }
|
935
|
+
.medium-collapse > .column, .medium-collapse > .columns {
|
936
|
+
padding-left: 0;
|
937
|
+
padding-right: 0; }
|
938
|
+
.medium-collapse .row {
|
939
|
+
margin-left: 0;
|
940
|
+
margin-right: 0; }
|
941
|
+
.medium-uncollapse > .column, .medium-uncollapse > .columns {
|
942
|
+
padding-left: 0.9375rem;
|
943
|
+
padding-right: 0.9375rem; }
|
944
|
+
.medium-centered {
|
945
|
+
float: none;
|
946
|
+
margin-left: auto;
|
947
|
+
margin-right: auto; }
|
948
|
+
.medium-uncentered,
|
949
|
+
.medium-push-0,
|
950
|
+
.medium-pull-0 {
|
951
|
+
position: static;
|
952
|
+
margin-left: 0;
|
953
|
+
margin-right: 0;
|
954
|
+
float: left; } }
|
955
|
+
|
956
|
+
@media screen and (min-width: 64em) {
|
957
|
+
.large-1 {
|
958
|
+
width: 8.33333%; }
|
959
|
+
.large-push-1 {
|
960
|
+
position: relative;
|
961
|
+
left: 8.33333%; }
|
962
|
+
.large-pull-1 {
|
963
|
+
position: relative;
|
964
|
+
left: -8.33333%; }
|
965
|
+
.large-offset-0 {
|
966
|
+
margin-left: 0%; }
|
967
|
+
.large-2 {
|
968
|
+
width: 16.66667%; }
|
969
|
+
.large-push-2 {
|
970
|
+
position: relative;
|
971
|
+
left: 16.66667%; }
|
972
|
+
.large-pull-2 {
|
973
|
+
position: relative;
|
974
|
+
left: -16.66667%; }
|
975
|
+
.large-offset-1 {
|
976
|
+
margin-left: 8.33333%; }
|
977
|
+
.large-3 {
|
978
|
+
width: 25%; }
|
979
|
+
.large-push-3 {
|
980
|
+
position: relative;
|
981
|
+
left: 25%; }
|
982
|
+
.large-pull-3 {
|
983
|
+
position: relative;
|
984
|
+
left: -25%; }
|
985
|
+
.large-offset-2 {
|
986
|
+
margin-left: 16.66667%; }
|
987
|
+
.large-4 {
|
988
|
+
width: 33.33333%; }
|
989
|
+
.large-push-4 {
|
990
|
+
position: relative;
|
991
|
+
left: 33.33333%; }
|
992
|
+
.large-pull-4 {
|
993
|
+
position: relative;
|
994
|
+
left: -33.33333%; }
|
995
|
+
.large-offset-3 {
|
996
|
+
margin-left: 25%; }
|
997
|
+
.large-5 {
|
998
|
+
width: 41.66667%; }
|
999
|
+
.large-push-5 {
|
1000
|
+
position: relative;
|
1001
|
+
left: 41.66667%; }
|
1002
|
+
.large-pull-5 {
|
1003
|
+
position: relative;
|
1004
|
+
left: -41.66667%; }
|
1005
|
+
.large-offset-4 {
|
1006
|
+
margin-left: 33.33333%; }
|
1007
|
+
.large-6 {
|
1008
|
+
width: 50%; }
|
1009
|
+
.large-push-6 {
|
1010
|
+
position: relative;
|
1011
|
+
left: 50%; }
|
1012
|
+
.large-pull-6 {
|
1013
|
+
position: relative;
|
1014
|
+
left: -50%; }
|
1015
|
+
.large-offset-5 {
|
1016
|
+
margin-left: 41.66667%; }
|
1017
|
+
.large-7 {
|
1018
|
+
width: 58.33333%; }
|
1019
|
+
.large-push-7 {
|
1020
|
+
position: relative;
|
1021
|
+
left: 58.33333%; }
|
1022
|
+
.large-pull-7 {
|
1023
|
+
position: relative;
|
1024
|
+
left: -58.33333%; }
|
1025
|
+
.large-offset-6 {
|
1026
|
+
margin-left: 50%; }
|
1027
|
+
.large-8 {
|
1028
|
+
width: 66.66667%; }
|
1029
|
+
.large-push-8 {
|
1030
|
+
position: relative;
|
1031
|
+
left: 66.66667%; }
|
1032
|
+
.large-pull-8 {
|
1033
|
+
position: relative;
|
1034
|
+
left: -66.66667%; }
|
1035
|
+
.large-offset-7 {
|
1036
|
+
margin-left: 58.33333%; }
|
1037
|
+
.large-9 {
|
1038
|
+
width: 75%; }
|
1039
|
+
.large-push-9 {
|
1040
|
+
position: relative;
|
1041
|
+
left: 75%; }
|
1042
|
+
.large-pull-9 {
|
1043
|
+
position: relative;
|
1044
|
+
left: -75%; }
|
1045
|
+
.large-offset-8 {
|
1046
|
+
margin-left: 66.66667%; }
|
1047
|
+
.large-10 {
|
1048
|
+
width: 83.33333%; }
|
1049
|
+
.large-push-10 {
|
1050
|
+
position: relative;
|
1051
|
+
left: 83.33333%; }
|
1052
|
+
.large-pull-10 {
|
1053
|
+
position: relative;
|
1054
|
+
left: -83.33333%; }
|
1055
|
+
.large-offset-9 {
|
1056
|
+
margin-left: 75%; }
|
1057
|
+
.large-11 {
|
1058
|
+
width: 91.66667%; }
|
1059
|
+
.large-push-11 {
|
1060
|
+
position: relative;
|
1061
|
+
left: 91.66667%; }
|
1062
|
+
.large-pull-11 {
|
1063
|
+
position: relative;
|
1064
|
+
left: -91.66667%; }
|
1065
|
+
.large-offset-10 {
|
1066
|
+
margin-left: 83.33333%; }
|
1067
|
+
.large-12 {
|
1068
|
+
width: 100%; }
|
1069
|
+
.large-offset-11 {
|
1070
|
+
margin-left: 91.66667%; }
|
1071
|
+
.large-up-1 > .column, .large-up-1 > .columns {
|
1072
|
+
width: 100%;
|
1073
|
+
float: left; }
|
1074
|
+
.large-up-1 > .column:nth-of-type(1n), .large-up-1 > .columns:nth-of-type(1n) {
|
1075
|
+
clear: none; }
|
1076
|
+
.large-up-1 > .column:nth-of-type(1n+1), .large-up-1 > .columns:nth-of-type(1n+1) {
|
1077
|
+
clear: both; }
|
1078
|
+
.large-up-1 > .column:last-child, .large-up-1 > .columns:last-child {
|
1079
|
+
float: left; }
|
1080
|
+
.large-up-2 > .column, .large-up-2 > .columns {
|
1081
|
+
width: 50%;
|
1082
|
+
float: left; }
|
1083
|
+
.large-up-2 > .column:nth-of-type(1n), .large-up-2 > .columns:nth-of-type(1n) {
|
1084
|
+
clear: none; }
|
1085
|
+
.large-up-2 > .column:nth-of-type(2n+1), .large-up-2 > .columns:nth-of-type(2n+1) {
|
1086
|
+
clear: both; }
|
1087
|
+
.large-up-2 > .column:last-child, .large-up-2 > .columns:last-child {
|
1088
|
+
float: left; }
|
1089
|
+
.large-up-3 > .column, .large-up-3 > .columns {
|
1090
|
+
width: 33.33333%;
|
1091
|
+
float: left; }
|
1092
|
+
.large-up-3 > .column:nth-of-type(1n), .large-up-3 > .columns:nth-of-type(1n) {
|
1093
|
+
clear: none; }
|
1094
|
+
.large-up-3 > .column:nth-of-type(3n+1), .large-up-3 > .columns:nth-of-type(3n+1) {
|
1095
|
+
clear: both; }
|
1096
|
+
.large-up-3 > .column:last-child, .large-up-3 > .columns:last-child {
|
1097
|
+
float: left; }
|
1098
|
+
.large-up-4 > .column, .large-up-4 > .columns {
|
1099
|
+
width: 25%;
|
1100
|
+
float: left; }
|
1101
|
+
.large-up-4 > .column:nth-of-type(1n), .large-up-4 > .columns:nth-of-type(1n) {
|
1102
|
+
clear: none; }
|
1103
|
+
.large-up-4 > .column:nth-of-type(4n+1), .large-up-4 > .columns:nth-of-type(4n+1) {
|
1104
|
+
clear: both; }
|
1105
|
+
.large-up-4 > .column:last-child, .large-up-4 > .columns:last-child {
|
1106
|
+
float: left; }
|
1107
|
+
.large-up-5 > .column, .large-up-5 > .columns {
|
1108
|
+
width: 20%;
|
1109
|
+
float: left; }
|
1110
|
+
.large-up-5 > .column:nth-of-type(1n), .large-up-5 > .columns:nth-of-type(1n) {
|
1111
|
+
clear: none; }
|
1112
|
+
.large-up-5 > .column:nth-of-type(5n+1), .large-up-5 > .columns:nth-of-type(5n+1) {
|
1113
|
+
clear: both; }
|
1114
|
+
.large-up-5 > .column:last-child, .large-up-5 > .columns:last-child {
|
1115
|
+
float: left; }
|
1116
|
+
.large-up-6 > .column, .large-up-6 > .columns {
|
1117
|
+
width: 16.66667%;
|
1118
|
+
float: left; }
|
1119
|
+
.large-up-6 > .column:nth-of-type(1n), .large-up-6 > .columns:nth-of-type(1n) {
|
1120
|
+
clear: none; }
|
1121
|
+
.large-up-6 > .column:nth-of-type(6n+1), .large-up-6 > .columns:nth-of-type(6n+1) {
|
1122
|
+
clear: both; }
|
1123
|
+
.large-up-6 > .column:last-child, .large-up-6 > .columns:last-child {
|
1124
|
+
float: left; }
|
1125
|
+
.large-up-7 > .column, .large-up-7 > .columns {
|
1126
|
+
width: 14.28571%;
|
1127
|
+
float: left; }
|
1128
|
+
.large-up-7 > .column:nth-of-type(1n), .large-up-7 > .columns:nth-of-type(1n) {
|
1129
|
+
clear: none; }
|
1130
|
+
.large-up-7 > .column:nth-of-type(7n+1), .large-up-7 > .columns:nth-of-type(7n+1) {
|
1131
|
+
clear: both; }
|
1132
|
+
.large-up-7 > .column:last-child, .large-up-7 > .columns:last-child {
|
1133
|
+
float: left; }
|
1134
|
+
.large-up-8 > .column, .large-up-8 > .columns {
|
1135
|
+
width: 12.5%;
|
1136
|
+
float: left; }
|
1137
|
+
.large-up-8 > .column:nth-of-type(1n), .large-up-8 > .columns:nth-of-type(1n) {
|
1138
|
+
clear: none; }
|
1139
|
+
.large-up-8 > .column:nth-of-type(8n+1), .large-up-8 > .columns:nth-of-type(8n+1) {
|
1140
|
+
clear: both; }
|
1141
|
+
.large-up-8 > .column:last-child, .large-up-8 > .columns:last-child {
|
1142
|
+
float: left; }
|
1143
|
+
.large-collapse > .column, .large-collapse > .columns {
|
1144
|
+
padding-left: 0;
|
1145
|
+
padding-right: 0; }
|
1146
|
+
.large-collapse .row {
|
1147
|
+
margin-left: 0;
|
1148
|
+
margin-right: 0; }
|
1149
|
+
.large-uncollapse > .column, .large-uncollapse > .columns {
|
1150
|
+
padding-left: 0.9375rem;
|
1151
|
+
padding-right: 0.9375rem; }
|
1152
|
+
.large-centered {
|
1153
|
+
float: none;
|
1154
|
+
margin-left: auto;
|
1155
|
+
margin-right: auto; }
|
1156
|
+
.large-uncentered,
|
1157
|
+
.large-push-0,
|
1158
|
+
.large-pull-0 {
|
1159
|
+
position: static;
|
1160
|
+
margin-left: 0;
|
1161
|
+
margin-right: 0;
|
1162
|
+
float: left; } }
|
1163
|
+
|
1164
|
+
div,
|
1165
|
+
dl,
|
1166
|
+
dt,
|
1167
|
+
dd,
|
1168
|
+
ul,
|
1169
|
+
ol,
|
1170
|
+
li,
|
1171
|
+
h1,
|
1172
|
+
h2,
|
1173
|
+
h3,
|
1174
|
+
h4,
|
1175
|
+
h5,
|
1176
|
+
h6,
|
1177
|
+
pre,
|
1178
|
+
form,
|
1179
|
+
p,
|
1180
|
+
blockquote,
|
1181
|
+
th,
|
1182
|
+
td {
|
1183
|
+
margin: 0;
|
1184
|
+
padding: 0; }
|
1185
|
+
|
1186
|
+
p {
|
1187
|
+
font-size: inherit;
|
1188
|
+
line-height: 1.6;
|
1189
|
+
margin-bottom: 1rem;
|
1190
|
+
text-rendering: optimizeLegibility; }
|
1191
|
+
|
1192
|
+
em,
|
1193
|
+
i {
|
1194
|
+
font-style: italic;
|
1195
|
+
line-height: inherit; }
|
1196
|
+
|
1197
|
+
strong,
|
1198
|
+
b {
|
1199
|
+
font-weight: bold;
|
1200
|
+
line-height: inherit; }
|
1201
|
+
|
1202
|
+
small {
|
1203
|
+
font-size: 80%;
|
1204
|
+
line-height: inherit; }
|
1205
|
+
|
1206
|
+
h1,
|
1207
|
+
h2,
|
1208
|
+
h3,
|
1209
|
+
h4,
|
1210
|
+
h5,
|
1211
|
+
h6 {
|
1212
|
+
font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
|
1213
|
+
font-weight: normal;
|
1214
|
+
font-style: normal;
|
1215
|
+
color: inherit;
|
1216
|
+
text-rendering: optimizeLegibility;
|
1217
|
+
margin-top: 0;
|
1218
|
+
margin-bottom: 0.5rem;
|
1219
|
+
line-height: 1.4; }
|
1220
|
+
h1 small,
|
1221
|
+
h2 small,
|
1222
|
+
h3 small,
|
1223
|
+
h4 small,
|
1224
|
+
h5 small,
|
1225
|
+
h6 small {
|
1226
|
+
color: #cacaca;
|
1227
|
+
line-height: 0; }
|
1228
|
+
|
1229
|
+
h1 {
|
1230
|
+
font-size: 1.5rem; }
|
1231
|
+
|
1232
|
+
h2 {
|
1233
|
+
font-size: 1.25rem; }
|
1234
|
+
|
1235
|
+
h3 {
|
1236
|
+
font-size: 1.1875rem; }
|
1237
|
+
|
1238
|
+
h4 {
|
1239
|
+
font-size: 1.125rem; }
|
1240
|
+
|
1241
|
+
h5 {
|
1242
|
+
font-size: 1.0625rem; }
|
1243
|
+
|
1244
|
+
h6 {
|
1245
|
+
font-size: 1rem; }
|
1246
|
+
|
1247
|
+
@media screen and (min-width: 40em) {
|
1248
|
+
h1 {
|
1249
|
+
font-size: 3rem; }
|
1250
|
+
h2 {
|
1251
|
+
font-size: 2.5rem; }
|
1252
|
+
h3 {
|
1253
|
+
font-size: 1.9375rem; }
|
1254
|
+
h4 {
|
1255
|
+
font-size: 1.5625rem; }
|
1256
|
+
h5 {
|
1257
|
+
font-size: 1.25rem; }
|
1258
|
+
h6 {
|
1259
|
+
font-size: 1rem; } }
|
1260
|
+
|
1261
|
+
a {
|
1262
|
+
color: #2199e8;
|
1263
|
+
text-decoration: none;
|
1264
|
+
line-height: inherit;
|
1265
|
+
cursor: pointer; }
|
1266
|
+
a:hover, a:focus {
|
1267
|
+
color: #1585cf; }
|
1268
|
+
a img {
|
1269
|
+
border: 0; }
|
1270
|
+
|
1271
|
+
hr {
|
1272
|
+
max-width: 75rem;
|
1273
|
+
height: 0;
|
1274
|
+
border-right: 0;
|
1275
|
+
border-top: 0;
|
1276
|
+
border-bottom: 1px solid #cacaca;
|
1277
|
+
border-left: 0;
|
1278
|
+
margin: 1.25rem auto;
|
1279
|
+
clear: both; }
|
1280
|
+
|
1281
|
+
ul,
|
1282
|
+
ol,
|
1283
|
+
dl {
|
1284
|
+
line-height: 1.6;
|
1285
|
+
margin-bottom: 1rem;
|
1286
|
+
list-style-position: outside; }
|
1287
|
+
|
1288
|
+
li {
|
1289
|
+
font-size: inherit; }
|
1290
|
+
|
1291
|
+
ul {
|
1292
|
+
list-style-type: disc;
|
1293
|
+
margin-left: 1.25rem; }
|
1294
|
+
|
1295
|
+
ol {
|
1296
|
+
margin-left: 1.25rem; }
|
1297
|
+
|
1298
|
+
ul ul, ol ul, ul ol, ol ol {
|
1299
|
+
margin-left: 1.25rem;
|
1300
|
+
margin-bottom: 0; }
|
1301
|
+
|
1302
|
+
dl {
|
1303
|
+
margin-bottom: 1rem; }
|
1304
|
+
dl dt {
|
1305
|
+
margin-bottom: 0.3rem;
|
1306
|
+
font-weight: bold; }
|
1307
|
+
|
1308
|
+
blockquote {
|
1309
|
+
margin: 0 0 1rem;
|
1310
|
+
padding: 0.5625rem 1.25rem 0 1.1875rem;
|
1311
|
+
border-left: 1px solid #cacaca; }
|
1312
|
+
blockquote, blockquote p {
|
1313
|
+
line-height: 1.6;
|
1314
|
+
color: #8a8a8a; }
|
1315
|
+
|
1316
|
+
cite {
|
1317
|
+
display: block;
|
1318
|
+
font-size: 0.8125rem;
|
1319
|
+
color: #8a8a8a; }
|
1320
|
+
cite:before {
|
1321
|
+
content: '\2014 \0020'; }
|
1322
|
+
|
1323
|
+
abbr {
|
1324
|
+
color: #0a0a0a;
|
1325
|
+
cursor: help;
|
1326
|
+
border-bottom: 1px dotted #0a0a0a; }
|
1327
|
+
|
1328
|
+
code {
|
1329
|
+
font-family: Consolas, "Liberation Mono", Courier, monospace;
|
1330
|
+
font-weight: normal;
|
1331
|
+
color: #0a0a0a;
|
1332
|
+
background-color: #e6e6e6;
|
1333
|
+
border: 1px solid #cacaca;
|
1334
|
+
padding: 0.125rem 0.3125rem 0.0625rem; }
|
1335
|
+
|
1336
|
+
kbd {
|
1337
|
+
padding: 0.125rem 0.25rem 0;
|
1338
|
+
margin: 0;
|
1339
|
+
background-color: #e6e6e6;
|
1340
|
+
color: #0a0a0a;
|
1341
|
+
font-family: Consolas, "Liberation Mono", Courier, monospace; }
|
1342
|
+
|
1343
|
+
.subheader {
|
1344
|
+
margin-top: 0.2rem;
|
1345
|
+
margin-bottom: 0.5rem;
|
1346
|
+
font-weight: normal;
|
1347
|
+
line-height: 1.4;
|
1348
|
+
color: #8a8a8a; }
|
1349
|
+
|
1350
|
+
.lead {
|
1351
|
+
font-size: 125%;
|
1352
|
+
line-height: 1.6; }
|
1353
|
+
|
1354
|
+
.stat {
|
1355
|
+
font-size: 2.5rem;
|
1356
|
+
line-height: 1; }
|
1357
|
+
p + .stat {
|
1358
|
+
margin-top: -1rem; }
|
1359
|
+
|
1360
|
+
.no-bullet {
|
1361
|
+
margin-left: 0;
|
1362
|
+
list-style: none; }
|
1363
|
+
|
1364
|
+
.text-left {
|
1365
|
+
text-align: left; }
|
1366
|
+
|
1367
|
+
.text-right {
|
1368
|
+
text-align: right; }
|
1369
|
+
|
1370
|
+
.text-center {
|
1371
|
+
text-align: center; }
|
1372
|
+
|
1373
|
+
.text-justify {
|
1374
|
+
text-align: justify; }
|
1375
|
+
|
1376
|
+
@media screen and (min-width: 40em) {
|
1377
|
+
.medium-text-left {
|
1378
|
+
text-align: left; }
|
1379
|
+
.medium-text-right {
|
1380
|
+
text-align: right; }
|
1381
|
+
.medium-text-center {
|
1382
|
+
text-align: center; }
|
1383
|
+
.medium-text-justify {
|
1384
|
+
text-align: justify; } }
|
1385
|
+
|
1386
|
+
@media screen and (min-width: 64em) {
|
1387
|
+
.large-text-left {
|
1388
|
+
text-align: left; }
|
1389
|
+
.large-text-right {
|
1390
|
+
text-align: right; }
|
1391
|
+
.large-text-center {
|
1392
|
+
text-align: center; }
|
1393
|
+
.large-text-justify {
|
1394
|
+
text-align: justify; } }
|
1395
|
+
|
1396
|
+
.show-for-print {
|
1397
|
+
display: none !important; }
|
1398
|
+
|
1399
|
+
@media print {
|
1400
|
+
* {
|
1401
|
+
background: transparent !important;
|
1402
|
+
color: black !important;
|
1403
|
+
box-shadow: none !important;
|
1404
|
+
text-shadow: none !important; }
|
1405
|
+
.show-for-print {
|
1406
|
+
display: block !important; }
|
1407
|
+
.hide-for-print {
|
1408
|
+
display: none !important; }
|
1409
|
+
table.show-for-print {
|
1410
|
+
display: table !important; }
|
1411
|
+
thead.show-for-print {
|
1412
|
+
display: table-header-group !important; }
|
1413
|
+
tbody.show-for-print {
|
1414
|
+
display: table-row-group !important; }
|
1415
|
+
tr.show-for-print {
|
1416
|
+
display: table-row !important; }
|
1417
|
+
td.show-for-print {
|
1418
|
+
display: table-cell !important; }
|
1419
|
+
th.show-for-print {
|
1420
|
+
display: table-cell !important; }
|
1421
|
+
a,
|
1422
|
+
a:visited {
|
1423
|
+
text-decoration: underline; }
|
1424
|
+
a[href]:after {
|
1425
|
+
content: " (" attr(href) ")"; }
|
1426
|
+
.ir a:after,
|
1427
|
+
a[href^='javascript:']:after,
|
1428
|
+
a[href^='#']:after {
|
1429
|
+
content: ''; }
|
1430
|
+
abbr[title]:after {
|
1431
|
+
content: " (" attr(title) ")"; }
|
1432
|
+
pre,
|
1433
|
+
blockquote {
|
1434
|
+
border: 1px solid #8a8a8a;
|
1435
|
+
page-break-inside: avoid; }
|
1436
|
+
thead {
|
1437
|
+
display: table-header-group; }
|
1438
|
+
tr,
|
1439
|
+
img {
|
1440
|
+
page-break-inside: avoid; }
|
1441
|
+
img {
|
1442
|
+
max-width: 100% !important; }
|
1443
|
+
@page {
|
1444
|
+
margin: 0.5cm; }
|
1445
|
+
p,
|
1446
|
+
h2,
|
1447
|
+
h3 {
|
1448
|
+
orphans: 3;
|
1449
|
+
widows: 3; }
|
1450
|
+
h2,
|
1451
|
+
h3 {
|
1452
|
+
page-break-after: avoid; } }
|
1453
|
+
|
1454
|
+
[type='text'], [type='password'], [type='date'], [type='datetime'], [type='datetime-local'], [type='month'], [type='week'], [type='email'], [type='number'], [type='search'], [type='tel'], [type='time'], [type='url'], [type='color'],
|
1455
|
+
textarea {
|
1456
|
+
display: block;
|
1457
|
+
box-sizing: border-box;
|
1458
|
+
width: 100%;
|
1459
|
+
height: 2.4375rem;
|
1460
|
+
padding: 0.5rem;
|
1461
|
+
border: 1px solid #cacaca;
|
1462
|
+
margin: 0 0 1rem;
|
1463
|
+
font-family: inherit;
|
1464
|
+
font-size: 1rem;
|
1465
|
+
color: #0a0a0a;
|
1466
|
+
background-color: #fefefe;
|
1467
|
+
box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
|
1468
|
+
border-radius: 0;
|
1469
|
+
transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
|
1470
|
+
-webkit-appearance: none;
|
1471
|
+
-moz-appearance: none; }
|
1472
|
+
[type='text']:focus, [type='password']:focus, [type='date']:focus, [type='datetime']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='week']:focus, [type='email']:focus, [type='number']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='url']:focus, [type='color']:focus,
|
1473
|
+
textarea:focus {
|
1474
|
+
border: 1px solid #8a8a8a;
|
1475
|
+
background-color: #fefefe;
|
1476
|
+
outline: none;
|
1477
|
+
box-shadow: 0 0 5px #cacaca;
|
1478
|
+
transition: box-shadow 0.5s, border-color 0.25s ease-in-out; }
|
1479
|
+
|
1480
|
+
textarea {
|
1481
|
+
max-width: 100%; }
|
1482
|
+
textarea[rows] {
|
1483
|
+
height: auto; }
|
1484
|
+
|
1485
|
+
input::-webkit-input-placeholder,
|
1486
|
+
textarea::-webkit-input-placeholder {
|
1487
|
+
color: #cacaca; }
|
1488
|
+
|
1489
|
+
input::-moz-placeholder,
|
1490
|
+
textarea::-moz-placeholder {
|
1491
|
+
color: #cacaca; }
|
1492
|
+
|
1493
|
+
input:-ms-input-placeholder,
|
1494
|
+
textarea:-ms-input-placeholder {
|
1495
|
+
color: #cacaca; }
|
1496
|
+
|
1497
|
+
input::placeholder,
|
1498
|
+
textarea::placeholder {
|
1499
|
+
color: #cacaca; }
|
1500
|
+
|
1501
|
+
input:disabled, input[readonly],
|
1502
|
+
textarea:disabled,
|
1503
|
+
textarea[readonly] {
|
1504
|
+
background-color: #e6e6e6;
|
1505
|
+
cursor: default; }
|
1506
|
+
|
1507
|
+
[type='submit'],
|
1508
|
+
[type='button'] {
|
1509
|
+
border-radius: 0;
|
1510
|
+
-webkit-appearance: none;
|
1511
|
+
-moz-appearance: none; }
|
1512
|
+
|
1513
|
+
input[type='search'] {
|
1514
|
+
box-sizing: border-box; }
|
1515
|
+
|
1516
|
+
[type='file'],
|
1517
|
+
[type='checkbox'],
|
1518
|
+
[type='radio'] {
|
1519
|
+
margin: 0 0 1rem; }
|
1520
|
+
|
1521
|
+
[type='checkbox'] + label,
|
1522
|
+
[type='radio'] + label {
|
1523
|
+
display: inline-block;
|
1524
|
+
margin-left: 0.5rem;
|
1525
|
+
margin-right: 1rem;
|
1526
|
+
margin-bottom: 0;
|
1527
|
+
vertical-align: baseline; }
|
1528
|
+
[type='checkbox'] + label[for],
|
1529
|
+
[type='radio'] + label[for] {
|
1530
|
+
cursor: pointer; }
|
1531
|
+
|
1532
|
+
label > [type='checkbox'],
|
1533
|
+
label > [type='radio'] {
|
1534
|
+
margin-right: 0.5rem; }
|
1535
|
+
|
1536
|
+
[type='file'] {
|
1537
|
+
width: 100%; }
|
1538
|
+
|
1539
|
+
label {
|
1540
|
+
display: block;
|
1541
|
+
margin: 0;
|
1542
|
+
font-size: 0.875rem;
|
1543
|
+
font-weight: normal;
|
1544
|
+
line-height: 1.8;
|
1545
|
+
color: #0a0a0a; }
|
1546
|
+
label.middle {
|
1547
|
+
margin: 0 0 1rem;
|
1548
|
+
padding: 0.5625rem 0; }
|
1549
|
+
|
1550
|
+
.help-text {
|
1551
|
+
margin-top: -0.5rem;
|
1552
|
+
font-size: 0.8125rem;
|
1553
|
+
font-style: italic;
|
1554
|
+
color: #0a0a0a; }
|
1555
|
+
|
1556
|
+
.input-group {
|
1557
|
+
display: table;
|
1558
|
+
width: 100%;
|
1559
|
+
margin-bottom: 1rem; }
|
1560
|
+
.input-group > :first-child {
|
1561
|
+
border-radius: 0 0 0 0; }
|
1562
|
+
.input-group > :last-child > * {
|
1563
|
+
border-radius: 0 0 0 0; }
|
1564
|
+
|
1565
|
+
.input-group-label, .input-group-field, .input-group-button {
|
1566
|
+
margin: 0;
|
1567
|
+
display: table-cell;
|
1568
|
+
vertical-align: middle; }
|
1569
|
+
|
1570
|
+
.input-group-label {
|
1571
|
+
text-align: center;
|
1572
|
+
padding: 0 1rem;
|
1573
|
+
background: #e6e6e6;
|
1574
|
+
color: #0a0a0a;
|
1575
|
+
border: 1px solid #cacaca;
|
1576
|
+
white-space: nowrap;
|
1577
|
+
width: 1%;
|
1578
|
+
height: 100%; }
|
1579
|
+
.input-group-label:first-child {
|
1580
|
+
border-right: 0; }
|
1581
|
+
.input-group-label:last-child {
|
1582
|
+
border-left: 0; }
|
1583
|
+
|
1584
|
+
.input-group-field {
|
1585
|
+
border-radius: 0;
|
1586
|
+
height: 2.5rem; }
|
1587
|
+
|
1588
|
+
.input-group-button {
|
1589
|
+
padding-top: 0;
|
1590
|
+
padding-bottom: 0;
|
1591
|
+
text-align: center;
|
1592
|
+
height: 100%;
|
1593
|
+
width: 1%; }
|
1594
|
+
.input-group-button a,
|
1595
|
+
.input-group-button input,
|
1596
|
+
.input-group-button button {
|
1597
|
+
margin: 0; }
|
1598
|
+
|
1599
|
+
.input-group .input-group-button {
|
1600
|
+
display: table-cell; }
|
1601
|
+
|
1602
|
+
fieldset {
|
1603
|
+
border: 0;
|
1604
|
+
padding: 0;
|
1605
|
+
margin: 0; }
|
1606
|
+
|
1607
|
+
legend {
|
1608
|
+
margin-bottom: 0.5rem;
|
1609
|
+
max-width: 100%; }
|
1610
|
+
|
1611
|
+
.fieldset {
|
1612
|
+
border: 1px solid #cacaca;
|
1613
|
+
padding: 1.25rem;
|
1614
|
+
margin: 1.125rem 0; }
|
1615
|
+
.fieldset legend {
|
1616
|
+
background: #fefefe;
|
1617
|
+
padding: 0 0.1875rem;
|
1618
|
+
margin: 0;
|
1619
|
+
margin-left: -0.1875rem; }
|
1620
|
+
|
1621
|
+
select {
|
1622
|
+
height: 2.4375rem;
|
1623
|
+
padding: 0.5rem;
|
1624
|
+
border: 1px solid #cacaca;
|
1625
|
+
margin: 0 0 1rem;
|
1626
|
+
font-size: 1rem;
|
1627
|
+
font-family: inherit;
|
1628
|
+
line-height: normal;
|
1629
|
+
color: #0a0a0a;
|
1630
|
+
background-color: #fefefe;
|
1631
|
+
border-radius: 0;
|
1632
|
+
-webkit-appearance: none;
|
1633
|
+
-moz-appearance: none;
|
1634
|
+
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="32" height="24" viewBox="0 0 32 24"><polygon points="0,0 32,0 16,24" style="fill: rgb%28138, 138, 138%29"></polygon></svg>');
|
1635
|
+
background-size: 9px 6px;
|
1636
|
+
background-position: right center;
|
1637
|
+
background-origin: content-box;
|
1638
|
+
background-repeat: no-repeat; }
|
1639
|
+
@media screen and (min-width: 0\0) {
|
1640
|
+
select {
|
1641
|
+
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg=="); } }
|
1642
|
+
select:disabled {
|
1643
|
+
background-color: #e6e6e6;
|
1644
|
+
cursor: default; }
|
1645
|
+
select::-ms-expand {
|
1646
|
+
display: none; }
|
1647
|
+
select[multiple] {
|
1648
|
+
height: auto;
|
1649
|
+
background-image: none; }
|
1650
|
+
|
1651
|
+
.is-invalid-input:not(:focus) {
|
1652
|
+
background-color: rgba(236, 88, 64, 0.1);
|
1653
|
+
border-color: #ec5840; }
|
1654
|
+
|
1655
|
+
.is-invalid-label {
|
1656
|
+
color: #ec5840; }
|
1657
|
+
|
1658
|
+
.form-error {
|
1659
|
+
display: none;
|
1660
|
+
margin-top: -0.5rem;
|
1661
|
+
margin-bottom: 1rem;
|
1662
|
+
font-size: 0.75rem;
|
1663
|
+
font-weight: bold;
|
1664
|
+
color: #ec5840; }
|
1665
|
+
.form-error.is-visible {
|
1666
|
+
display: block; }
|
1667
|
+
|
1668
|
+
.button {
|
1669
|
+
display: inline-block;
|
1670
|
+
text-align: center;
|
1671
|
+
line-height: 1;
|
1672
|
+
cursor: pointer;
|
1673
|
+
-webkit-appearance: none;
|
1674
|
+
transition: background-color 0.25s ease-out, color 0.25s ease-out;
|
1675
|
+
vertical-align: middle;
|
1676
|
+
border: 1px solid transparent;
|
1677
|
+
border-radius: 0;
|
1678
|
+
padding: 0.85em 1em;
|
1679
|
+
margin: 0 0 1rem 0;
|
1680
|
+
font-size: 0.9rem;
|
1681
|
+
background-color: #2199e8;
|
1682
|
+
color: #fefefe; }
|
1683
|
+
[data-whatinput='mouse'] .button {
|
1684
|
+
outline: 0; }
|
1685
|
+
.button:hover, .button:focus {
|
1686
|
+
background-color: #1583cc;
|
1687
|
+
color: #fefefe; }
|
1688
|
+
.button.tiny {
|
1689
|
+
font-size: 0.6rem; }
|
1690
|
+
.button.small {
|
1691
|
+
font-size: 0.75rem; }
|
1692
|
+
.button.large {
|
1693
|
+
font-size: 1.25rem; }
|
1694
|
+
.button.expanded {
|
1695
|
+
display: block;
|
1696
|
+
width: 100%;
|
1697
|
+
margin-left: 0;
|
1698
|
+
margin-right: 0; }
|
1699
|
+
.button.primary {
|
1700
|
+
background-color: #2199e8;
|
1701
|
+
color: #fefefe; }
|
1702
|
+
.button.primary:hover, .button.primary:focus {
|
1703
|
+
background-color: #147cc0;
|
1704
|
+
color: #fefefe; }
|
1705
|
+
.button.secondary {
|
1706
|
+
background-color: #777;
|
1707
|
+
color: #fefefe; }
|
1708
|
+
.button.secondary:hover, .button.secondary:focus {
|
1709
|
+
background-color: #5f5f5f;
|
1710
|
+
color: #fefefe; }
|
1711
|
+
.button.success {
|
1712
|
+
background-color: #3adb76;
|
1713
|
+
color: #fefefe; }
|
1714
|
+
.button.success:hover, .button.success:focus {
|
1715
|
+
background-color: #22bb5b;
|
1716
|
+
color: #fefefe; }
|
1717
|
+
.button.warning {
|
1718
|
+
background-color: #ffae00;
|
1719
|
+
color: #fefefe; }
|
1720
|
+
.button.warning:hover, .button.warning:focus {
|
1721
|
+
background-color: #cc8b00;
|
1722
|
+
color: #fefefe; }
|
1723
|
+
.button.alert {
|
1724
|
+
background-color: #ec5840;
|
1725
|
+
color: #fefefe; }
|
1726
|
+
.button.alert:hover, .button.alert:focus {
|
1727
|
+
background-color: #da3116;
|
1728
|
+
color: #fefefe; }
|
1729
|
+
.button.hollow {
|
1730
|
+
border: 1px solid #2199e8;
|
1731
|
+
color: #2199e8; }
|
1732
|
+
.button.hollow, .button.hollow:hover, .button.hollow:focus {
|
1733
|
+
background-color: transparent; }
|
1734
|
+
.button.hollow:hover, .button.hollow:focus {
|
1735
|
+
border-color: #0c4d78;
|
1736
|
+
color: #0c4d78; }
|
1737
|
+
.button.hollow.primary {
|
1738
|
+
border: 1px solid #2199e8;
|
1739
|
+
color: #2199e8; }
|
1740
|
+
.button.hollow.primary:hover, .button.hollow.primary:focus {
|
1741
|
+
border-color: #0c4d78;
|
1742
|
+
color: #0c4d78; }
|
1743
|
+
.button.hollow.secondary {
|
1744
|
+
border: 1px solid #777;
|
1745
|
+
color: #777; }
|
1746
|
+
.button.hollow.secondary:hover, .button.hollow.secondary:focus {
|
1747
|
+
border-color: #3c3c3c;
|
1748
|
+
color: #3c3c3c; }
|
1749
|
+
.button.hollow.success {
|
1750
|
+
border: 1px solid #3adb76;
|
1751
|
+
color: #3adb76; }
|
1752
|
+
.button.hollow.success:hover, .button.hollow.success:focus {
|
1753
|
+
border-color: #157539;
|
1754
|
+
color: #157539; }
|
1755
|
+
.button.hollow.warning {
|
1756
|
+
border: 1px solid #ffae00;
|
1757
|
+
color: #ffae00; }
|
1758
|
+
.button.hollow.warning:hover, .button.hollow.warning:focus {
|
1759
|
+
border-color: #805700;
|
1760
|
+
color: #805700; }
|
1761
|
+
.button.hollow.alert {
|
1762
|
+
border: 1px solid #ec5840;
|
1763
|
+
color: #ec5840; }
|
1764
|
+
.button.hollow.alert:hover, .button.hollow.alert:focus {
|
1765
|
+
border-color: #881f0e;
|
1766
|
+
color: #881f0e; }
|
1767
|
+
.button.disabled, .button[disabled] {
|
1768
|
+
opacity: 0.25;
|
1769
|
+
cursor: not-allowed; }
|
1770
|
+
.button.dropdown::after {
|
1771
|
+
content: '';
|
1772
|
+
display: block;
|
1773
|
+
width: 0;
|
1774
|
+
height: 0;
|
1775
|
+
border: inset 0.4em;
|
1776
|
+
border-color: #fefefe transparent transparent;
|
1777
|
+
border-top-style: solid;
|
1778
|
+
border-bottom-width: 0;
|
1779
|
+
position: relative;
|
1780
|
+
top: 0.4em;
|
1781
|
+
float: right;
|
1782
|
+
margin-left: 1em;
|
1783
|
+
display: inline-block; }
|
1784
|
+
.button.arrow-only::after {
|
1785
|
+
margin-left: 0;
|
1786
|
+
float: none;
|
1787
|
+
top: -0.1em; }
|
1788
|
+
|
1789
|
+
.accordion {
|
1790
|
+
list-style-type: none;
|
1791
|
+
background: #fefefe;
|
1792
|
+
border: 1px solid #e6e6e6;
|
1793
|
+
border-bottom: 0;
|
1794
|
+
border-radius: 0;
|
1795
|
+
margin-left: 0; }
|
1796
|
+
|
1797
|
+
.accordion-title {
|
1798
|
+
display: block;
|
1799
|
+
padding: 1.25rem 1rem;
|
1800
|
+
line-height: 1;
|
1801
|
+
font-size: 0.75rem;
|
1802
|
+
color: #2199e8;
|
1803
|
+
position: relative;
|
1804
|
+
border-bottom: 1px solid #e6e6e6; }
|
1805
|
+
.accordion-title:hover, .accordion-title:focus {
|
1806
|
+
background-color: #e6e6e6; }
|
1807
|
+
.accordion-title::before {
|
1808
|
+
content: '+';
|
1809
|
+
position: absolute;
|
1810
|
+
right: 1rem;
|
1811
|
+
top: 50%;
|
1812
|
+
margin-top: -0.5rem; }
|
1813
|
+
.is-active > .accordion-title::before {
|
1814
|
+
content: '–'; }
|
1815
|
+
|
1816
|
+
.accordion-content {
|
1817
|
+
padding: 1rem;
|
1818
|
+
display: none;
|
1819
|
+
border-bottom: 1px solid #e6e6e6;
|
1820
|
+
background-color: #fefefe; }
|
1821
|
+
|
1822
|
+
.is-accordion-submenu-parent > a {
|
1823
|
+
position: relative; }
|
1824
|
+
.is-accordion-submenu-parent > a::after {
|
1825
|
+
content: '';
|
1826
|
+
display: block;
|
1827
|
+
width: 0;
|
1828
|
+
height: 0;
|
1829
|
+
border: inset 6px;
|
1830
|
+
border-color: #2199e8 transparent transparent;
|
1831
|
+
border-top-style: solid;
|
1832
|
+
border-bottom-width: 0;
|
1833
|
+
position: absolute;
|
1834
|
+
top: 50%;
|
1835
|
+
margin-top: -4px;
|
1836
|
+
right: 1rem; }
|
1837
|
+
|
1838
|
+
.is-accordion-submenu-parent[aria-expanded='true'] > a::after {
|
1839
|
+
-webkit-transform-origin: 50% 50%;
|
1840
|
+
-ms-transform-origin: 50% 50%;
|
1841
|
+
transform-origin: 50% 50%;
|
1842
|
+
-webkit-transform: scaleY(-1);
|
1843
|
+
-ms-transform: scaleY(-1);
|
1844
|
+
transform: scaleY(-1); }
|
1845
|
+
|
1846
|
+
.badge {
|
1847
|
+
display: inline-block;
|
1848
|
+
padding: 0.3em;
|
1849
|
+
min-width: 2.1em;
|
1850
|
+
font-size: 0.6rem;
|
1851
|
+
text-align: center;
|
1852
|
+
border-radius: 50%;
|
1853
|
+
background: #2199e8;
|
1854
|
+
color: #fefefe; }
|
1855
|
+
.badge.secondary {
|
1856
|
+
background: #777;
|
1857
|
+
color: #fefefe; }
|
1858
|
+
.badge.success {
|
1859
|
+
background: #3adb76;
|
1860
|
+
color: #fefefe; }
|
1861
|
+
.badge.warning {
|
1862
|
+
background: #ffae00;
|
1863
|
+
color: #fefefe; }
|
1864
|
+
.badge.alert {
|
1865
|
+
background: #ec5840;
|
1866
|
+
color: #fefefe; }
|
1867
|
+
|
1868
|
+
.breadcrumbs {
|
1869
|
+
list-style: none;
|
1870
|
+
margin: 0 0 1rem 0; }
|
1871
|
+
.breadcrumbs::before, .breadcrumbs::after {
|
1872
|
+
content: ' ';
|
1873
|
+
display: table; }
|
1874
|
+
.breadcrumbs::after {
|
1875
|
+
clear: both; }
|
1876
|
+
.breadcrumbs li {
|
1877
|
+
float: left;
|
1878
|
+
color: #0a0a0a;
|
1879
|
+
font-size: 0.6875rem;
|
1880
|
+
cursor: default;
|
1881
|
+
text-transform: uppercase; }
|
1882
|
+
.breadcrumbs li:not(:last-child)::after {
|
1883
|
+
color: #cacaca;
|
1884
|
+
content: "/";
|
1885
|
+
margin: 0 0.75rem;
|
1886
|
+
position: relative;
|
1887
|
+
top: 1px;
|
1888
|
+
opacity: 1; }
|
1889
|
+
.breadcrumbs a {
|
1890
|
+
color: #2199e8; }
|
1891
|
+
.breadcrumbs a:hover {
|
1892
|
+
text-decoration: underline; }
|
1893
|
+
.breadcrumbs .disabled {
|
1894
|
+
color: #cacaca;
|
1895
|
+
cursor: not-allowed; }
|
1896
|
+
|
1897
|
+
.button-group {
|
1898
|
+
margin-bottom: 1rem;
|
1899
|
+
font-size: 0; }
|
1900
|
+
.button-group::before, .button-group::after {
|
1901
|
+
content: ' ';
|
1902
|
+
display: table; }
|
1903
|
+
.button-group::after {
|
1904
|
+
clear: both; }
|
1905
|
+
.button-group .button {
|
1906
|
+
margin: 0;
|
1907
|
+
font-size: 0.9rem; }
|
1908
|
+
.button-group .button:not(:last-child) {
|
1909
|
+
margin-right: 1px; }
|
1910
|
+
.button-group.tiny .button {
|
1911
|
+
font-size: 0.6rem; }
|
1912
|
+
.button-group.small .button {
|
1913
|
+
font-size: 0.75rem; }
|
1914
|
+
.button-group.large .button {
|
1915
|
+
font-size: 1.25rem; }
|
1916
|
+
.button-group.expanded {
|
1917
|
+
margin-right: -1px; }
|
1918
|
+
.button-group.expanded::before, .button-group.expanded::after {
|
1919
|
+
display: none; }
|
1920
|
+
.button-group.expanded .button:first-child:nth-last-child(2), .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button {
|
1921
|
+
display: inline-block;
|
1922
|
+
width: calc(50% - 1px);
|
1923
|
+
margin-right: 1px; }
|
1924
|
+
.button-group.expanded .button:first-child:nth-last-child(3), .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button {
|
1925
|
+
display: inline-block;
|
1926
|
+
width: calc(33.33333% - 1px);
|
1927
|
+
margin-right: 1px; }
|
1928
|
+
.button-group.expanded .button:first-child:nth-last-child(4), .button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button {
|
1929
|
+
display: inline-block;
|
1930
|
+
width: calc(25% - 1px);
|
1931
|
+
margin-right: 1px; }
|
1932
|
+
.button-group.expanded .button:first-child:nth-last-child(5), .button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button {
|
1933
|
+
display: inline-block;
|
1934
|
+
width: calc(20% - 1px);
|
1935
|
+
margin-right: 1px; }
|
1936
|
+
.button-group.expanded .button:first-child:nth-last-child(6), .button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button {
|
1937
|
+
display: inline-block;
|
1938
|
+
width: calc(16.66667% - 1px);
|
1939
|
+
margin-right: 1px; }
|
1940
|
+
.button-group.primary .button {
|
1941
|
+
background-color: #2199e8;
|
1942
|
+
color: #fefefe; }
|
1943
|
+
.button-group.primary .button:hover, .button-group.primary .button:focus {
|
1944
|
+
background-color: #147cc0;
|
1945
|
+
color: #fefefe; }
|
1946
|
+
.button-group.secondary .button {
|
1947
|
+
background-color: #777;
|
1948
|
+
color: #fefefe; }
|
1949
|
+
.button-group.secondary .button:hover, .button-group.secondary .button:focus {
|
1950
|
+
background-color: #5f5f5f;
|
1951
|
+
color: #fefefe; }
|
1952
|
+
.button-group.success .button {
|
1953
|
+
background-color: #3adb76;
|
1954
|
+
color: #fefefe; }
|
1955
|
+
.button-group.success .button:hover, .button-group.success .button:focus {
|
1956
|
+
background-color: #22bb5b;
|
1957
|
+
color: #fefefe; }
|
1958
|
+
.button-group.warning .button {
|
1959
|
+
background-color: #ffae00;
|
1960
|
+
color: #fefefe; }
|
1961
|
+
.button-group.warning .button:hover, .button-group.warning .button:focus {
|
1962
|
+
background-color: #cc8b00;
|
1963
|
+
color: #fefefe; }
|
1964
|
+
.button-group.alert .button {
|
1965
|
+
background-color: #ec5840;
|
1966
|
+
color: #fefefe; }
|
1967
|
+
.button-group.alert .button:hover, .button-group.alert .button:focus {
|
1968
|
+
background-color: #da3116;
|
1969
|
+
color: #fefefe; }
|
1970
|
+
.button-group.stacked .button, .button-group.stacked-for-small .button, .button-group.stacked-for-medium .button {
|
1971
|
+
width: 100%;
|
1972
|
+
border-right: 1px solid transparent; }
|
1973
|
+
.button-group.stacked .button:not(:last-child), .button-group.stacked-for-small .button:not(:last-child), .button-group.stacked-for-medium .button:not(:last-child) {
|
1974
|
+
border-bottom: 1px solid #fefefe; }
|
1975
|
+
@media screen and (min-width: 40em) {
|
1976
|
+
.button-group.stacked-for-small .button {
|
1977
|
+
width: auto; }
|
1978
|
+
.button-group.stacked-for-small .button:not(:last-child) {
|
1979
|
+
margin-right: 1px; } }
|
1980
|
+
@media screen and (min-width: 64em) {
|
1981
|
+
.button-group.stacked-for-medium .button {
|
1982
|
+
width: auto; }
|
1983
|
+
.button-group.stacked-for-medium .button:not(:last-child) {
|
1984
|
+
margin-right: 1px; } }
|
1985
|
+
@media screen and (max-width: 39.9375em) {
|
1986
|
+
.button-group.stacked-for-small.expanded {
|
1987
|
+
display: block; }
|
1988
|
+
.button-group.stacked-for-small.expanded .button {
|
1989
|
+
display: block;
|
1990
|
+
margin-right: 0; } }
|
1991
|
+
|
1992
|
+
.callout {
|
1993
|
+
margin: 0 0 1rem 0;
|
1994
|
+
padding: 1rem;
|
1995
|
+
border: 1px solid rgba(10, 10, 10, 0.25);
|
1996
|
+
border-radius: 0;
|
1997
|
+
position: relative;
|
1998
|
+
color: #0a0a0a;
|
1999
|
+
background-color: white; }
|
2000
|
+
.callout > :first-child {
|
2001
|
+
margin-top: 0; }
|
2002
|
+
.callout > :last-child {
|
2003
|
+
margin-bottom: 0; }
|
2004
|
+
.callout.primary {
|
2005
|
+
background-color: #def0fc; }
|
2006
|
+
.callout.secondary {
|
2007
|
+
background-color: #ebebeb; }
|
2008
|
+
.callout.success {
|
2009
|
+
background-color: #e1faea; }
|
2010
|
+
.callout.warning {
|
2011
|
+
background-color: #fff3d9; }
|
2012
|
+
.callout.alert {
|
2013
|
+
background-color: #fce6e2; }
|
2014
|
+
.callout.small {
|
2015
|
+
padding-top: 0.5rem;
|
2016
|
+
padding-right: 0.5rem;
|
2017
|
+
padding-bottom: 0.5rem;
|
2018
|
+
padding-left: 0.5rem; }
|
2019
|
+
.callout.large {
|
2020
|
+
padding-top: 3rem;
|
2021
|
+
padding-right: 3rem;
|
2022
|
+
padding-bottom: 3rem;
|
2023
|
+
padding-left: 3rem; }
|
2024
|
+
|
2025
|
+
.close-button {
|
2026
|
+
position: absolute;
|
2027
|
+
color: #8a8a8a;
|
2028
|
+
right: 1rem;
|
2029
|
+
top: 0.5rem;
|
2030
|
+
font-size: 2em;
|
2031
|
+
line-height: 1;
|
2032
|
+
cursor: pointer; }
|
2033
|
+
[data-whatinput='mouse'] .close-button {
|
2034
|
+
outline: 0; }
|
2035
|
+
.close-button:hover, .close-button:focus {
|
2036
|
+
color: #0a0a0a; }
|
2037
|
+
|
2038
|
+
.menu {
|
2039
|
+
margin: 0;
|
2040
|
+
list-style-type: none; }
|
2041
|
+
.menu > li {
|
2042
|
+
display: table-cell;
|
2043
|
+
vertical-align: middle; }
|
2044
|
+
[data-whatinput='mouse'] .menu > li {
|
2045
|
+
outline: 0; }
|
2046
|
+
.menu > li > a {
|
2047
|
+
display: block;
|
2048
|
+
padding: 0.7rem 1rem;
|
2049
|
+
line-height: 1; }
|
2050
|
+
.menu input,
|
2051
|
+
.menu a,
|
2052
|
+
.menu button {
|
2053
|
+
margin-bottom: 0; }
|
2054
|
+
.menu > li > a img,
|
2055
|
+
.menu > li > a i {
|
2056
|
+
vertical-align: middle; }
|
2057
|
+
.menu > li > a i + span,
|
2058
|
+
.menu > li > a img + span {
|
2059
|
+
vertical-align: middle; }
|
2060
|
+
.menu > li > a img,
|
2061
|
+
.menu > li > a i {
|
2062
|
+
margin-right: 0.25rem;
|
2063
|
+
display: inline-block; }
|
2064
|
+
.menu > li {
|
2065
|
+
display: table-cell; }
|
2066
|
+
.menu.vertical > li {
|
2067
|
+
display: block; }
|
2068
|
+
@media screen and (min-width: 40em) {
|
2069
|
+
.menu.medium-horizontal > li {
|
2070
|
+
display: table-cell; }
|
2071
|
+
.menu.medium-vertical > li {
|
2072
|
+
display: block; } }
|
2073
|
+
@media screen and (min-width: 64em) {
|
2074
|
+
.menu.large-horizontal > li {
|
2075
|
+
display: table-cell; }
|
2076
|
+
.menu.large-vertical > li {
|
2077
|
+
display: block; } }
|
2078
|
+
.menu.simple li {
|
2079
|
+
line-height: 1;
|
2080
|
+
display: inline-block;
|
2081
|
+
margin-right: 1rem; }
|
2082
|
+
.menu.simple a {
|
2083
|
+
padding: 0; }
|
2084
|
+
.menu.align-right::before, .menu.align-right::after {
|
2085
|
+
content: ' ';
|
2086
|
+
display: table; }
|
2087
|
+
.menu.align-right::after {
|
2088
|
+
clear: both; }
|
2089
|
+
.menu.align-right > li {
|
2090
|
+
float: right; }
|
2091
|
+
.menu.expanded {
|
2092
|
+
width: 100%;
|
2093
|
+
display: table;
|
2094
|
+
table-layout: fixed; }
|
2095
|
+
.menu.expanded > li:first-child:last-child {
|
2096
|
+
width: 100%; }
|
2097
|
+
.menu.icon-top > li > a {
|
2098
|
+
text-align: center; }
|
2099
|
+
.menu.icon-top > li > a img,
|
2100
|
+
.menu.icon-top > li > a i {
|
2101
|
+
display: block;
|
2102
|
+
margin: 0 auto 0.25rem; }
|
2103
|
+
.menu.nested {
|
2104
|
+
margin-left: 1rem; }
|
2105
|
+
.menu .active > a {
|
2106
|
+
color: #fefefe;
|
2107
|
+
background: #2199e8; }
|
2108
|
+
|
2109
|
+
.menu-text {
|
2110
|
+
font-weight: bold;
|
2111
|
+
color: inherit;
|
2112
|
+
line-height: 1;
|
2113
|
+
padding-top: 0;
|
2114
|
+
padding-bottom: 0;
|
2115
|
+
padding: 0.7rem 1rem; }
|
2116
|
+
|
2117
|
+
.menu-centered {
|
2118
|
+
text-align: center; }
|
2119
|
+
.menu-centered > .menu {
|
2120
|
+
display: inline-block; }
|
2121
|
+
|
2122
|
+
.no-js [data-responsive-menu] ul {
|
2123
|
+
display: none; }
|
2124
|
+
|
2125
|
+
.menu-icon {
|
2126
|
+
position: relative;
|
2127
|
+
display: inline-block;
|
2128
|
+
vertical-align: middle;
|
2129
|
+
cursor: pointer;
|
2130
|
+
width: 20px;
|
2131
|
+
height: 16px; }
|
2132
|
+
.menu-icon::after {
|
2133
|
+
content: '';
|
2134
|
+
position: absolute;
|
2135
|
+
display: block;
|
2136
|
+
width: 100%;
|
2137
|
+
height: 2px;
|
2138
|
+
background: #fefefe;
|
2139
|
+
top: 0;
|
2140
|
+
left: 0;
|
2141
|
+
box-shadow: 0 7px 0 #fefefe, 0 14px 0 #fefefe; }
|
2142
|
+
.menu-icon:hover::after {
|
2143
|
+
background: #cacaca;
|
2144
|
+
box-shadow: 0 7px 0 #cacaca, 0 14px 0 #cacaca; }
|
2145
|
+
|
2146
|
+
.menu-icon.dark {
|
2147
|
+
position: relative;
|
2148
|
+
display: inline-block;
|
2149
|
+
vertical-align: middle;
|
2150
|
+
cursor: pointer;
|
2151
|
+
width: 20px;
|
2152
|
+
height: 16px; }
|
2153
|
+
.menu-icon.dark::after {
|
2154
|
+
content: '';
|
2155
|
+
position: absolute;
|
2156
|
+
display: block;
|
2157
|
+
width: 100%;
|
2158
|
+
height: 2px;
|
2159
|
+
background: #0a0a0a;
|
2160
|
+
top: 0;
|
2161
|
+
left: 0;
|
2162
|
+
box-shadow: 0 7px 0 #0a0a0a, 0 14px 0 #0a0a0a; }
|
2163
|
+
.menu-icon.dark:hover::after {
|
2164
|
+
background: #8a8a8a;
|
2165
|
+
box-shadow: 0 7px 0 #8a8a8a, 0 14px 0 #8a8a8a; }
|
2166
|
+
|
2167
|
+
.is-drilldown {
|
2168
|
+
position: relative;
|
2169
|
+
overflow: hidden; }
|
2170
|
+
.is-drilldown li {
|
2171
|
+
display: block !important; }
|
2172
|
+
|
2173
|
+
.is-drilldown-submenu {
|
2174
|
+
position: absolute;
|
2175
|
+
top: 0;
|
2176
|
+
left: 100%;
|
2177
|
+
z-index: -1;
|
2178
|
+
height: 100%;
|
2179
|
+
width: 100%;
|
2180
|
+
background: #fefefe;
|
2181
|
+
transition: -webkit-transform 0.15s linear;
|
2182
|
+
transition: transform 0.15s linear; }
|
2183
|
+
.is-drilldown-submenu.is-active {
|
2184
|
+
z-index: 1;
|
2185
|
+
display: block;
|
2186
|
+
-webkit-transform: translateX(-100%);
|
2187
|
+
-ms-transform: translateX(-100%);
|
2188
|
+
transform: translateX(-100%); }
|
2189
|
+
.is-drilldown-submenu.is-closing {
|
2190
|
+
-webkit-transform: translateX(100%);
|
2191
|
+
-ms-transform: translateX(100%);
|
2192
|
+
transform: translateX(100%); }
|
2193
|
+
|
2194
|
+
.is-drilldown-submenu-parent > a {
|
2195
|
+
position: relative; }
|
2196
|
+
.is-drilldown-submenu-parent > a::after {
|
2197
|
+
content: '';
|
2198
|
+
display: block;
|
2199
|
+
width: 0;
|
2200
|
+
height: 0;
|
2201
|
+
border: inset 6px;
|
2202
|
+
border-color: transparent transparent transparent #2199e8;
|
2203
|
+
border-left-style: solid;
|
2204
|
+
border-right-width: 0;
|
2205
|
+
position: absolute;
|
2206
|
+
top: 50%;
|
2207
|
+
margin-top: -6px;
|
2208
|
+
right: 1rem; }
|
2209
|
+
|
2210
|
+
.js-drilldown-back > a::before {
|
2211
|
+
content: '';
|
2212
|
+
display: block;
|
2213
|
+
width: 0;
|
2214
|
+
height: 0;
|
2215
|
+
border: inset 6px;
|
2216
|
+
border-color: transparent #2199e8 transparent transparent;
|
2217
|
+
border-right-style: solid;
|
2218
|
+
border-left-width: 0;
|
2219
|
+
border-left-width: 0;
|
2220
|
+
display: inline-block;
|
2221
|
+
vertical-align: middle;
|
2222
|
+
margin-right: 0.75rem; }
|
2223
|
+
|
2224
|
+
.dropdown-pane {
|
2225
|
+
background-color: #fefefe;
|
2226
|
+
border: 1px solid #cacaca;
|
2227
|
+
border-radius: 0;
|
2228
|
+
display: block;
|
2229
|
+
font-size: 1rem;
|
2230
|
+
padding: 1rem;
|
2231
|
+
position: absolute;
|
2232
|
+
visibility: hidden;
|
2233
|
+
width: 300px;
|
2234
|
+
z-index: 10; }
|
2235
|
+
.dropdown-pane.is-open {
|
2236
|
+
visibility: visible; }
|
2237
|
+
|
2238
|
+
.dropdown-pane.tiny {
|
2239
|
+
width: 100px; }
|
2240
|
+
|
2241
|
+
.dropdown-pane.small {
|
2242
|
+
width: 200px; }
|
2243
|
+
|
2244
|
+
.dropdown-pane.large {
|
2245
|
+
width: 400px; }
|
2246
|
+
|
2247
|
+
.dropdown.menu > li.opens-left > .is-dropdown-submenu {
|
2248
|
+
left: auto;
|
2249
|
+
right: 0;
|
2250
|
+
top: 100%; }
|
2251
|
+
|
2252
|
+
.dropdown.menu > li.opens-right > .is-dropdown-submenu {
|
2253
|
+
right: auto;
|
2254
|
+
left: 0;
|
2255
|
+
top: 100%; }
|
2256
|
+
|
2257
|
+
.dropdown.menu > li.is-dropdown-submenu-parent > a {
|
2258
|
+
padding-right: 1.5rem;
|
2259
|
+
position: relative; }
|
2260
|
+
|
2261
|
+
.dropdown.menu > li.is-dropdown-submenu-parent > a::after {
|
2262
|
+
content: '';
|
2263
|
+
display: block;
|
2264
|
+
width: 0;
|
2265
|
+
height: 0;
|
2266
|
+
border: inset 5px;
|
2267
|
+
border-color: #2199e8 transparent transparent;
|
2268
|
+
border-top-style: solid;
|
2269
|
+
border-bottom-width: 0;
|
2270
|
+
right: 5px;
|
2271
|
+
margin-top: -2px; }
|
2272
|
+
|
2273
|
+
[data-whatinput='mouse'] .dropdown.menu a {
|
2274
|
+
outline: 0; }
|
2275
|
+
|
2276
|
+
.no-js .dropdown.menu ul {
|
2277
|
+
display: none; }
|
2278
|
+
|
2279
|
+
.dropdown.menu.vertical > li .is-dropdown-submenu {
|
2280
|
+
top: 0; }
|
2281
|
+
|
2282
|
+
.dropdown.menu.vertical > li.opens-left .is-dropdown-submenu {
|
2283
|
+
left: auto;
|
2284
|
+
right: 100%; }
|
2285
|
+
|
2286
|
+
.dropdown.menu.vertical > li.opens-right .is-dropdown-submenu {
|
2287
|
+
right: auto;
|
2288
|
+
left: 100%; }
|
2289
|
+
|
2290
|
+
.dropdown.menu.vertical > li > a::after {
|
2291
|
+
right: 14px;
|
2292
|
+
margin-top: -3px; }
|
2293
|
+
|
2294
|
+
.dropdown.menu.vertical > li.opens-left > a::after {
|
2295
|
+
content: '';
|
2296
|
+
display: block;
|
2297
|
+
width: 0;
|
2298
|
+
height: 0;
|
2299
|
+
border: inset 5px;
|
2300
|
+
border-color: transparent #2199e8 transparent transparent;
|
2301
|
+
border-right-style: solid;
|
2302
|
+
border-left-width: 0; }
|
2303
|
+
|
2304
|
+
.dropdown.menu.vertical > li.opens-right > a::after {
|
2305
|
+
content: '';
|
2306
|
+
display: block;
|
2307
|
+
width: 0;
|
2308
|
+
height: 0;
|
2309
|
+
border: inset 5px;
|
2310
|
+
border-color: transparent transparent transparent #2199e8;
|
2311
|
+
border-left-style: solid;
|
2312
|
+
border-right-width: 0; }
|
2313
|
+
|
2314
|
+
@media screen and (min-width: 40em) {
|
2315
|
+
.dropdown.menu.medium-horizontal > li.opens-left > .is-dropdown-submenu {
|
2316
|
+
left: auto;
|
2317
|
+
right: 0;
|
2318
|
+
top: 100%; }
|
2319
|
+
.dropdown.menu.medium-horizontal > li.opens-right > .is-dropdown-submenu {
|
2320
|
+
right: auto;
|
2321
|
+
left: 0;
|
2322
|
+
top: 100%; }
|
2323
|
+
.dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a {
|
2324
|
+
padding-right: 1.5rem;
|
2325
|
+
position: relative; }
|
2326
|
+
.dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a::after {
|
2327
|
+
content: '';
|
2328
|
+
display: block;
|
2329
|
+
width: 0;
|
2330
|
+
height: 0;
|
2331
|
+
border: inset 5px;
|
2332
|
+
border-color: #2199e8 transparent transparent;
|
2333
|
+
border-top-style: solid;
|
2334
|
+
border-bottom-width: 0;
|
2335
|
+
right: 5px;
|
2336
|
+
margin-top: -2px; }
|
2337
|
+
.dropdown.menu.medium-vertical > li .is-dropdown-submenu {
|
2338
|
+
top: 0; }
|
2339
|
+
.dropdown.menu.medium-vertical > li.opens-left .is-dropdown-submenu {
|
2340
|
+
left: auto;
|
2341
|
+
right: 100%; }
|
2342
|
+
.dropdown.menu.medium-vertical > li.opens-right .is-dropdown-submenu {
|
2343
|
+
right: auto;
|
2344
|
+
left: 100%; }
|
2345
|
+
.dropdown.menu.medium-vertical > li > a::after {
|
2346
|
+
right: 14px;
|
2347
|
+
margin-top: -3px; }
|
2348
|
+
.dropdown.menu.medium-vertical > li.opens-left > a::after {
|
2349
|
+
content: '';
|
2350
|
+
display: block;
|
2351
|
+
width: 0;
|
2352
|
+
height: 0;
|
2353
|
+
border: inset 5px;
|
2354
|
+
border-color: transparent #2199e8 transparent transparent;
|
2355
|
+
border-right-style: solid;
|
2356
|
+
border-left-width: 0; }
|
2357
|
+
.dropdown.menu.medium-vertical > li.opens-right > a::after {
|
2358
|
+
content: '';
|
2359
|
+
display: block;
|
2360
|
+
width: 0;
|
2361
|
+
height: 0;
|
2362
|
+
border: inset 5px;
|
2363
|
+
border-color: transparent transparent transparent #2199e8;
|
2364
|
+
border-left-style: solid;
|
2365
|
+
border-right-width: 0; } }
|
2366
|
+
|
2367
|
+
@media screen and (min-width: 64em) {
|
2368
|
+
.dropdown.menu.large-horizontal > li.opens-left > .is-dropdown-submenu {
|
2369
|
+
left: auto;
|
2370
|
+
right: 0;
|
2371
|
+
top: 100%; }
|
2372
|
+
.dropdown.menu.large-horizontal > li.opens-right > .is-dropdown-submenu {
|
2373
|
+
right: auto;
|
2374
|
+
left: 0;
|
2375
|
+
top: 100%; }
|
2376
|
+
.dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a {
|
2377
|
+
padding-right: 1.5rem;
|
2378
|
+
position: relative; }
|
2379
|
+
.dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a::after {
|
2380
|
+
content: '';
|
2381
|
+
display: block;
|
2382
|
+
width: 0;
|
2383
|
+
height: 0;
|
2384
|
+
border: inset 5px;
|
2385
|
+
border-color: #2199e8 transparent transparent;
|
2386
|
+
border-top-style: solid;
|
2387
|
+
border-bottom-width: 0;
|
2388
|
+
right: 5px;
|
2389
|
+
margin-top: -2px; }
|
2390
|
+
.dropdown.menu.large-vertical > li .is-dropdown-submenu {
|
2391
|
+
top: 0; }
|
2392
|
+
.dropdown.menu.large-vertical > li.opens-left .is-dropdown-submenu {
|
2393
|
+
left: auto;
|
2394
|
+
right: 100%; }
|
2395
|
+
.dropdown.menu.large-vertical > li.opens-right .is-dropdown-submenu {
|
2396
|
+
right: auto;
|
2397
|
+
left: 100%; }
|
2398
|
+
.dropdown.menu.large-vertical > li > a::after {
|
2399
|
+
right: 14px;
|
2400
|
+
margin-top: -3px; }
|
2401
|
+
.dropdown.menu.large-vertical > li.opens-left > a::after {
|
2402
|
+
content: '';
|
2403
|
+
display: block;
|
2404
|
+
width: 0;
|
2405
|
+
height: 0;
|
2406
|
+
border: inset 5px;
|
2407
|
+
border-color: transparent #2199e8 transparent transparent;
|
2408
|
+
border-right-style: solid;
|
2409
|
+
border-left-width: 0; }
|
2410
|
+
.dropdown.menu.large-vertical > li.opens-right > a::after {
|
2411
|
+
content: '';
|
2412
|
+
display: block;
|
2413
|
+
width: 0;
|
2414
|
+
height: 0;
|
2415
|
+
border: inset 5px;
|
2416
|
+
border-color: transparent transparent transparent #2199e8;
|
2417
|
+
border-left-style: solid;
|
2418
|
+
border-right-width: 0; } }
|
2419
|
+
|
2420
|
+
.dropdown.menu.align-right .is-dropdown-submenu.first-sub {
|
2421
|
+
top: 100%;
|
2422
|
+
left: auto;
|
2423
|
+
right: 0; }
|
2424
|
+
|
2425
|
+
.is-dropdown-menu.vertical {
|
2426
|
+
width: 100px; }
|
2427
|
+
.is-dropdown-menu.vertical.align-right {
|
2428
|
+
float: right; }
|
2429
|
+
|
2430
|
+
.is-dropdown-submenu-parent {
|
2431
|
+
position: relative; }
|
2432
|
+
.is-dropdown-submenu-parent a::after {
|
2433
|
+
position: absolute;
|
2434
|
+
top: 50%;
|
2435
|
+
right: 5px;
|
2436
|
+
margin-top: -2px; }
|
2437
|
+
.is-dropdown-submenu-parent.opens-inner .is-dropdown-submenu {
|
2438
|
+
top: 100%; }
|
2439
|
+
.is-dropdown-submenu-parent.opens-left .is-dropdown-submenu {
|
2440
|
+
left: auto;
|
2441
|
+
right: 100%; }
|
2442
|
+
|
2443
|
+
.is-dropdown-submenu {
|
2444
|
+
display: none;
|
2445
|
+
position: absolute;
|
2446
|
+
top: 0;
|
2447
|
+
left: 100%;
|
2448
|
+
min-width: 200px;
|
2449
|
+
z-index: 1;
|
2450
|
+
background: #fefefe;
|
2451
|
+
border: 1px solid #cacaca; }
|
2452
|
+
.is-dropdown-submenu .is-dropdown-submenu-parent > a::after {
|
2453
|
+
right: 14px;
|
2454
|
+
margin-top: -3px; }
|
2455
|
+
.is-dropdown-submenu .is-dropdown-submenu-parent.opens-left > a::after {
|
2456
|
+
content: '';
|
2457
|
+
display: block;
|
2458
|
+
width: 0;
|
2459
|
+
height: 0;
|
2460
|
+
border: inset 5px;
|
2461
|
+
border-color: transparent #2199e8 transparent transparent;
|
2462
|
+
border-right-style: solid;
|
2463
|
+
border-left-width: 0; }
|
2464
|
+
.is-dropdown-submenu .is-dropdown-submenu-parent.opens-right > a::after {
|
2465
|
+
content: '';
|
2466
|
+
display: block;
|
2467
|
+
width: 0;
|
2468
|
+
height: 0;
|
2469
|
+
border: inset 5px;
|
2470
|
+
border-color: transparent transparent transparent #2199e8;
|
2471
|
+
border-left-style: solid;
|
2472
|
+
border-right-width: 0; }
|
2473
|
+
.is-dropdown-submenu .is-dropdown-submenu {
|
2474
|
+
margin-top: -1px; }
|
2475
|
+
.is-dropdown-submenu > li {
|
2476
|
+
width: 100%; }
|
2477
|
+
.is-dropdown-submenu:not(.js-dropdown-nohover) > .is-dropdown-submenu-parent:hover > .is-dropdown-submenu, .is-dropdown-submenu.js-dropdown-active {
|
2478
|
+
display: block; }
|
2479
|
+
|
2480
|
+
.flex-video {
|
2481
|
+
position: relative;
|
2482
|
+
height: 0;
|
2483
|
+
padding-bottom: 75%;
|
2484
|
+
margin-bottom: 1rem;
|
2485
|
+
overflow: hidden; }
|
2486
|
+
.flex-video iframe,
|
2487
|
+
.flex-video object,
|
2488
|
+
.flex-video embed,
|
2489
|
+
.flex-video video {
|
2490
|
+
position: absolute;
|
2491
|
+
top: 0;
|
2492
|
+
left: 0;
|
2493
|
+
width: 100%;
|
2494
|
+
height: 100%; }
|
2495
|
+
.flex-video.widescreen {
|
2496
|
+
padding-bottom: 56.25%; }
|
2497
|
+
.flex-video.vimeo {
|
2498
|
+
padding-top: 0; }
|
2499
|
+
|
2500
|
+
.label {
|
2501
|
+
display: inline-block;
|
2502
|
+
padding: 0.33333rem 0.5rem;
|
2503
|
+
font-size: 0.8rem;
|
2504
|
+
line-height: 1;
|
2505
|
+
white-space: nowrap;
|
2506
|
+
cursor: default;
|
2507
|
+
border-radius: 0;
|
2508
|
+
background: #2199e8;
|
2509
|
+
color: #fefefe; }
|
2510
|
+
.label.secondary {
|
2511
|
+
background: #777;
|
2512
|
+
color: #fefefe; }
|
2513
|
+
.label.success {
|
2514
|
+
background: #3adb76;
|
2515
|
+
color: #fefefe; }
|
2516
|
+
.label.warning {
|
2517
|
+
background: #ffae00;
|
2518
|
+
color: #fefefe; }
|
2519
|
+
.label.alert {
|
2520
|
+
background: #ec5840;
|
2521
|
+
color: #fefefe; }
|
2522
|
+
|
2523
|
+
.media-object {
|
2524
|
+
margin-bottom: 1rem;
|
2525
|
+
display: block; }
|
2526
|
+
.media-object img {
|
2527
|
+
max-width: none; }
|
2528
|
+
@media screen and (max-width: 39.9375em) {
|
2529
|
+
.media-object.stack-for-small .media-object-section {
|
2530
|
+
padding: 0;
|
2531
|
+
padding-bottom: 1rem;
|
2532
|
+
display: block; }
|
2533
|
+
.media-object.stack-for-small .media-object-section img {
|
2534
|
+
width: 100%; } }
|
2535
|
+
|
2536
|
+
.media-object-section {
|
2537
|
+
display: table-cell;
|
2538
|
+
vertical-align: top; }
|
2539
|
+
.media-object-section:first-child {
|
2540
|
+
padding-right: 1rem; }
|
2541
|
+
.media-object-section:last-child:not(:nth-child(2)) {
|
2542
|
+
padding-left: 1rem; }
|
2543
|
+
.media-object-section.middle {
|
2544
|
+
vertical-align: middle; }
|
2545
|
+
.media-object-section.bottom {
|
2546
|
+
vertical-align: bottom; }
|
2547
|
+
|
2548
|
+
html,
|
2549
|
+
body {
|
2550
|
+
height: 100%; }
|
2551
|
+
|
2552
|
+
.off-canvas-wrapper {
|
2553
|
+
width: 100%;
|
2554
|
+
overflow-x: hidden;
|
2555
|
+
position: relative;
|
2556
|
+
-webkit-backface-visibility: hidden;
|
2557
|
+
backface-visibility: hidden;
|
2558
|
+
-webkit-overflow-scrolling: auto; }
|
2559
|
+
|
2560
|
+
.off-canvas-wrapper-inner {
|
2561
|
+
position: relative;
|
2562
|
+
width: 100%;
|
2563
|
+
transition: -webkit-transform 0.5s ease;
|
2564
|
+
transition: transform 0.5s ease; }
|
2565
|
+
.off-canvas-wrapper-inner::before, .off-canvas-wrapper-inner::after {
|
2566
|
+
content: ' ';
|
2567
|
+
display: table; }
|
2568
|
+
.off-canvas-wrapper-inner::after {
|
2569
|
+
clear: both; }
|
2570
|
+
|
2571
|
+
.off-canvas-content,
|
2572
|
+
.off-canvas-content {
|
2573
|
+
min-height: 100%;
|
2574
|
+
background: #fefefe;
|
2575
|
+
transition: -webkit-transform 0.5s ease;
|
2576
|
+
transition: transform 0.5s ease;
|
2577
|
+
-webkit-backface-visibility: hidden;
|
2578
|
+
backface-visibility: hidden;
|
2579
|
+
z-index: 1;
|
2580
|
+
padding-bottom: 0.1px;
|
2581
|
+
box-shadow: 0 0 10px rgba(10, 10, 10, 0.5); }
|
2582
|
+
|
2583
|
+
.js-off-canvas-exit {
|
2584
|
+
display: none;
|
2585
|
+
position: absolute;
|
2586
|
+
top: 0;
|
2587
|
+
left: 0;
|
2588
|
+
width: 100%;
|
2589
|
+
height: 100%;
|
2590
|
+
background: rgba(254, 254, 254, 0.25);
|
2591
|
+
cursor: pointer;
|
2592
|
+
transition: background 0.5s ease; }
|
2593
|
+
|
2594
|
+
.off-canvas {
|
2595
|
+
position: absolute;
|
2596
|
+
background: #e6e6e6;
|
2597
|
+
z-index: -1;
|
2598
|
+
max-height: 100%;
|
2599
|
+
overflow-y: auto;
|
2600
|
+
-webkit-transform: translateX(0);
|
2601
|
+
-ms-transform: translateX(0);
|
2602
|
+
transform: translateX(0); }
|
2603
|
+
[data-whatinput='mouse'] .off-canvas {
|
2604
|
+
outline: 0; }
|
2605
|
+
.off-canvas.position-left {
|
2606
|
+
left: -250px;
|
2607
|
+
top: 0;
|
2608
|
+
width: 250px; }
|
2609
|
+
.is-open-left {
|
2610
|
+
-webkit-transform: translateX(250px);
|
2611
|
+
-ms-transform: translateX(250px);
|
2612
|
+
transform: translateX(250px); }
|
2613
|
+
.off-canvas.position-right {
|
2614
|
+
right: -250px;
|
2615
|
+
top: 0;
|
2616
|
+
width: 250px; }
|
2617
|
+
.is-open-right {
|
2618
|
+
-webkit-transform: translateX(-250px);
|
2619
|
+
-ms-transform: translateX(-250px);
|
2620
|
+
transform: translateX(-250px); }
|
2621
|
+
|
2622
|
+
@media screen and (min-width: 40em) {
|
2623
|
+
.position-left.reveal-for-medium {
|
2624
|
+
left: 0;
|
2625
|
+
z-index: auto;
|
2626
|
+
position: fixed; }
|
2627
|
+
.position-left.reveal-for-medium ~ .off-canvas-content {
|
2628
|
+
margin-left: 250px; }
|
2629
|
+
.position-right.reveal-for-medium {
|
2630
|
+
right: 0;
|
2631
|
+
z-index: auto;
|
2632
|
+
position: fixed; }
|
2633
|
+
.position-right.reveal-for-medium ~ .off-canvas-content {
|
2634
|
+
margin-right: 250px; } }
|
2635
|
+
|
2636
|
+
@media screen and (min-width: 64em) {
|
2637
|
+
.position-left.reveal-for-large {
|
2638
|
+
left: 0;
|
2639
|
+
z-index: auto;
|
2640
|
+
position: fixed; }
|
2641
|
+
.position-left.reveal-for-large ~ .off-canvas-content {
|
2642
|
+
margin-left: 250px; }
|
2643
|
+
.position-right.reveal-for-large {
|
2644
|
+
right: 0;
|
2645
|
+
z-index: auto;
|
2646
|
+
position: fixed; }
|
2647
|
+
.position-right.reveal-for-large ~ .off-canvas-content {
|
2648
|
+
margin-right: 250px; } }
|
2649
|
+
|
2650
|
+
.orbit {
|
2651
|
+
position: relative; }
|
2652
|
+
|
2653
|
+
.orbit-container {
|
2654
|
+
position: relative;
|
2655
|
+
margin: 0;
|
2656
|
+
overflow: hidden;
|
2657
|
+
list-style: none; }
|
2658
|
+
|
2659
|
+
.orbit-slide {
|
2660
|
+
width: 100%;
|
2661
|
+
max-height: 100%; }
|
2662
|
+
.orbit-slide.no-motionui.is-active {
|
2663
|
+
top: 0;
|
2664
|
+
left: 0; }
|
2665
|
+
|
2666
|
+
.orbit-figure {
|
2667
|
+
margin: 0; }
|
2668
|
+
|
2669
|
+
.orbit-image {
|
2670
|
+
margin: 0;
|
2671
|
+
width: 100%;
|
2672
|
+
max-width: 100%; }
|
2673
|
+
|
2674
|
+
.orbit-caption {
|
2675
|
+
position: absolute;
|
2676
|
+
bottom: 0;
|
2677
|
+
width: 100%;
|
2678
|
+
padding: 1rem;
|
2679
|
+
margin-bottom: 0;
|
2680
|
+
color: #fefefe;
|
2681
|
+
background-color: rgba(10, 10, 10, 0.5); }
|
2682
|
+
|
2683
|
+
.orbit-previous, .orbit-next {
|
2684
|
+
position: absolute;
|
2685
|
+
top: 50%;
|
2686
|
+
-webkit-transform: translateY(-50%);
|
2687
|
+
-ms-transform: translateY(-50%);
|
2688
|
+
transform: translateY(-50%);
|
2689
|
+
z-index: 10;
|
2690
|
+
padding: 1rem;
|
2691
|
+
color: #fefefe; }
|
2692
|
+
[data-whatinput='mouse'] .orbit-previous, [data-whatinput='mouse'] .orbit-next {
|
2693
|
+
outline: 0; }
|
2694
|
+
.orbit-previous:hover, .orbit-next:hover, .orbit-previous:active, .orbit-next:active, .orbit-previous:focus, .orbit-next:focus {
|
2695
|
+
background-color: rgba(10, 10, 10, 0.5); }
|
2696
|
+
|
2697
|
+
.orbit-previous {
|
2698
|
+
left: 0; }
|
2699
|
+
|
2700
|
+
.orbit-next {
|
2701
|
+
left: auto;
|
2702
|
+
right: 0; }
|
2703
|
+
|
2704
|
+
.orbit-bullets {
|
2705
|
+
position: relative;
|
2706
|
+
margin-top: 0.8rem;
|
2707
|
+
margin-bottom: 0.8rem;
|
2708
|
+
text-align: center; }
|
2709
|
+
[data-whatinput='mouse'] .orbit-bullets {
|
2710
|
+
outline: 0; }
|
2711
|
+
.orbit-bullets button {
|
2712
|
+
width: 1.2rem;
|
2713
|
+
height: 1.2rem;
|
2714
|
+
margin: 0.1rem;
|
2715
|
+
background-color: #cacaca;
|
2716
|
+
border-radius: 50%; }
|
2717
|
+
.orbit-bullets button:hover {
|
2718
|
+
background-color: #8a8a8a; }
|
2719
|
+
.orbit-bullets button.is-active {
|
2720
|
+
background-color: #8a8a8a; }
|
2721
|
+
|
2722
|
+
.pagination {
|
2723
|
+
margin-left: 0;
|
2724
|
+
margin-bottom: 1rem; }
|
2725
|
+
.pagination::before, .pagination::after {
|
2726
|
+
content: ' ';
|
2727
|
+
display: table; }
|
2728
|
+
.pagination::after {
|
2729
|
+
clear: both; }
|
2730
|
+
.pagination li {
|
2731
|
+
font-size: 0.875rem;
|
2732
|
+
margin-right: 0.0625rem;
|
2733
|
+
border-radius: 0;
|
2734
|
+
display: none; }
|
2735
|
+
.pagination li:last-child, .pagination li:first-child {
|
2736
|
+
display: inline-block; }
|
2737
|
+
@media screen and (min-width: 40em) {
|
2738
|
+
.pagination li {
|
2739
|
+
display: inline-block; } }
|
2740
|
+
.pagination a,
|
2741
|
+
.pagination button {
|
2742
|
+
color: #0a0a0a;
|
2743
|
+
display: block;
|
2744
|
+
padding: 0.1875rem 0.625rem;
|
2745
|
+
border-radius: 0; }
|
2746
|
+
.pagination a:hover,
|
2747
|
+
.pagination button:hover {
|
2748
|
+
background: #e6e6e6; }
|
2749
|
+
.pagination .current {
|
2750
|
+
padding: 0.1875rem 0.625rem;
|
2751
|
+
background: #2199e8;
|
2752
|
+
color: #fefefe;
|
2753
|
+
cursor: default; }
|
2754
|
+
.pagination .disabled {
|
2755
|
+
padding: 0.1875rem 0.625rem;
|
2756
|
+
color: #cacaca;
|
2757
|
+
cursor: not-allowed; }
|
2758
|
+
.pagination .disabled:hover {
|
2759
|
+
background: transparent; }
|
2760
|
+
.pagination .ellipsis::after {
|
2761
|
+
content: '\2026';
|
2762
|
+
padding: 0.1875rem 0.625rem;
|
2763
|
+
color: #0a0a0a; }
|
2764
|
+
|
2765
|
+
.pagination-previous a::before,
|
2766
|
+
.pagination-previous.disabled::before {
|
2767
|
+
content: '\00ab';
|
2768
|
+
display: inline-block;
|
2769
|
+
margin-right: 0.5rem; }
|
2770
|
+
|
2771
|
+
.pagination-next a::after,
|
2772
|
+
.pagination-next.disabled::after {
|
2773
|
+
content: '\00bb';
|
2774
|
+
display: inline-block;
|
2775
|
+
margin-left: 0.5rem; }
|
2776
|
+
|
2777
|
+
.progress {
|
2778
|
+
background-color: #cacaca;
|
2779
|
+
height: 1rem;
|
2780
|
+
margin-bottom: 1rem;
|
2781
|
+
border-radius: 0; }
|
2782
|
+
.progress.primary .progress-meter {
|
2783
|
+
background-color: #2199e8; }
|
2784
|
+
.progress.secondary .progress-meter {
|
2785
|
+
background-color: #777; }
|
2786
|
+
.progress.success .progress-meter {
|
2787
|
+
background-color: #3adb76; }
|
2788
|
+
.progress.warning .progress-meter {
|
2789
|
+
background-color: #ffae00; }
|
2790
|
+
.progress.alert .progress-meter {
|
2791
|
+
background-color: #ec5840; }
|
2792
|
+
|
2793
|
+
.progress-meter {
|
2794
|
+
position: relative;
|
2795
|
+
display: block;
|
2796
|
+
width: 0%;
|
2797
|
+
height: 100%;
|
2798
|
+
background-color: #2199e8; }
|
2799
|
+
|
2800
|
+
.progress-meter-text {
|
2801
|
+
position: absolute;
|
2802
|
+
top: 50%;
|
2803
|
+
left: 50%;
|
2804
|
+
-webkit-transform: translate(-50%, -50%);
|
2805
|
+
-ms-transform: translate(-50%, -50%);
|
2806
|
+
transform: translate(-50%, -50%);
|
2807
|
+
position: absolute;
|
2808
|
+
margin: 0;
|
2809
|
+
font-size: 0.75rem;
|
2810
|
+
font-weight: bold;
|
2811
|
+
color: #fefefe;
|
2812
|
+
white-space: nowrap; }
|
2813
|
+
|
2814
|
+
.slider {
|
2815
|
+
position: relative;
|
2816
|
+
height: 0.5rem;
|
2817
|
+
margin-top: 1.25rem;
|
2818
|
+
margin-bottom: 2.25rem;
|
2819
|
+
background-color: #e6e6e6;
|
2820
|
+
cursor: pointer;
|
2821
|
+
-webkit-user-select: none;
|
2822
|
+
-moz-user-select: none;
|
2823
|
+
-ms-user-select: none;
|
2824
|
+
user-select: none;
|
2825
|
+
-ms-touch-action: none;
|
2826
|
+
touch-action: none; }
|
2827
|
+
|
2828
|
+
.slider-fill {
|
2829
|
+
position: absolute;
|
2830
|
+
top: 0;
|
2831
|
+
left: 0;
|
2832
|
+
display: inline-block;
|
2833
|
+
max-width: 100%;
|
2834
|
+
height: 0.5rem;
|
2835
|
+
background-color: #cacaca;
|
2836
|
+
transition: all 0.2s ease-in-out; }
|
2837
|
+
.slider-fill.is-dragging {
|
2838
|
+
transition: all 0s linear; }
|
2839
|
+
|
2840
|
+
.slider-handle {
|
2841
|
+
position: absolute;
|
2842
|
+
top: 50%;
|
2843
|
+
-webkit-transform: translateY(-50%);
|
2844
|
+
-ms-transform: translateY(-50%);
|
2845
|
+
transform: translateY(-50%);
|
2846
|
+
position: absolute;
|
2847
|
+
left: 0;
|
2848
|
+
z-index: 1;
|
2849
|
+
display: inline-block;
|
2850
|
+
width: 1.4rem;
|
2851
|
+
height: 1.4rem;
|
2852
|
+
background-color: #2199e8;
|
2853
|
+
transition: all 0.2s ease-in-out;
|
2854
|
+
-ms-touch-action: manipulation;
|
2855
|
+
touch-action: manipulation;
|
2856
|
+
border-radius: 0; }
|
2857
|
+
[data-whatinput='mouse'] .slider-handle {
|
2858
|
+
outline: 0; }
|
2859
|
+
.slider-handle:hover {
|
2860
|
+
background-color: #1583cc; }
|
2861
|
+
.slider-handle.is-dragging {
|
2862
|
+
transition: all 0s linear; }
|
2863
|
+
|
2864
|
+
.slider.disabled,
|
2865
|
+
.slider[disabled] {
|
2866
|
+
opacity: 0.25;
|
2867
|
+
cursor: not-allowed; }
|
2868
|
+
|
2869
|
+
.slider.vertical {
|
2870
|
+
display: inline-block;
|
2871
|
+
width: 0.5rem;
|
2872
|
+
height: 12.5rem;
|
2873
|
+
margin: 0 1.25rem;
|
2874
|
+
-webkit-transform: scale(1, -1);
|
2875
|
+
-ms-transform: scale(1, -1);
|
2876
|
+
transform: scale(1, -1); }
|
2877
|
+
.slider.vertical .slider-fill {
|
2878
|
+
top: 0;
|
2879
|
+
width: 0.5rem;
|
2880
|
+
max-height: 100%; }
|
2881
|
+
.slider.vertical .slider-handle {
|
2882
|
+
position: absolute;
|
2883
|
+
top: 0;
|
2884
|
+
left: 50%;
|
2885
|
+
width: 1.4rem;
|
2886
|
+
height: 1.4rem;
|
2887
|
+
-webkit-transform: translateX(-50%);
|
2888
|
+
-ms-transform: translateX(-50%);
|
2889
|
+
transform: translateX(-50%); }
|
2890
|
+
|
2891
|
+
.sticky-container {
|
2892
|
+
position: relative; }
|
2893
|
+
|
2894
|
+
.sticky {
|
2895
|
+
position: absolute;
|
2896
|
+
z-index: 0;
|
2897
|
+
-webkit-transform: translate3d(0, 0, 0);
|
2898
|
+
transform: translate3d(0, 0, 0); }
|
2899
|
+
|
2900
|
+
.sticky.is-stuck {
|
2901
|
+
position: fixed;
|
2902
|
+
z-index: 5; }
|
2903
|
+
.sticky.is-stuck.is-at-top {
|
2904
|
+
top: 0; }
|
2905
|
+
.sticky.is-stuck.is-at-bottom {
|
2906
|
+
bottom: 0; }
|
2907
|
+
|
2908
|
+
.sticky.is-anchored {
|
2909
|
+
position: absolute;
|
2910
|
+
left: auto;
|
2911
|
+
right: auto; }
|
2912
|
+
.sticky.is-anchored.is-at-bottom {
|
2913
|
+
bottom: 0; }
|
2914
|
+
|
2915
|
+
body.is-reveal-open {
|
2916
|
+
overflow: hidden; }
|
2917
|
+
|
2918
|
+
.reveal-overlay {
|
2919
|
+
display: none;
|
2920
|
+
position: fixed;
|
2921
|
+
top: 0;
|
2922
|
+
bottom: 0;
|
2923
|
+
left: 0;
|
2924
|
+
right: 0;
|
2925
|
+
z-index: 1005;
|
2926
|
+
background-color: rgba(10, 10, 10, 0.45);
|
2927
|
+
overflow-y: scroll; }
|
2928
|
+
|
2929
|
+
.reveal {
|
2930
|
+
display: none;
|
2931
|
+
z-index: 1006;
|
2932
|
+
padding: 1rem;
|
2933
|
+
border: 1px solid #cacaca;
|
2934
|
+
background-color: #fefefe;
|
2935
|
+
border-radius: 0;
|
2936
|
+
position: relative;
|
2937
|
+
top: 100px;
|
2938
|
+
margin-left: auto;
|
2939
|
+
margin-right: auto;
|
2940
|
+
overflow-y: auto; }
|
2941
|
+
[data-whatinput='mouse'] .reveal {
|
2942
|
+
outline: 0; }
|
2943
|
+
@media screen and (min-width: 40em) {
|
2944
|
+
.reveal {
|
2945
|
+
min-height: 0; } }
|
2946
|
+
.reveal .column, .reveal .columns,
|
2947
|
+
.reveal .columns {
|
2948
|
+
min-width: 0; }
|
2949
|
+
.reveal > :last-child {
|
2950
|
+
margin-bottom: 0; }
|
2951
|
+
@media screen and (min-width: 40em) {
|
2952
|
+
.reveal {
|
2953
|
+
width: 600px;
|
2954
|
+
max-width: 75rem; } }
|
2955
|
+
@media screen and (min-width: 40em) {
|
2956
|
+
.reveal .reveal {
|
2957
|
+
left: auto;
|
2958
|
+
right: auto;
|
2959
|
+
margin: 0 auto; } }
|
2960
|
+
.reveal.collapse {
|
2961
|
+
padding: 0; }
|
2962
|
+
@media screen and (min-width: 40em) {
|
2963
|
+
.reveal.tiny {
|
2964
|
+
width: 30%;
|
2965
|
+
max-width: 75rem; } }
|
2966
|
+
@media screen and (min-width: 40em) {
|
2967
|
+
.reveal.small {
|
2968
|
+
width: 50%;
|
2969
|
+
max-width: 75rem; } }
|
2970
|
+
@media screen and (min-width: 40em) {
|
2971
|
+
.reveal.large {
|
2972
|
+
width: 90%;
|
2973
|
+
max-width: 75rem; } }
|
2974
|
+
.reveal.full {
|
2975
|
+
top: 0;
|
2976
|
+
left: 0;
|
2977
|
+
width: 100%;
|
2978
|
+
height: 100%;
|
2979
|
+
height: 100vh;
|
2980
|
+
min-height: 100vh;
|
2981
|
+
max-width: none;
|
2982
|
+
margin-left: 0;
|
2983
|
+
border: 0;
|
2984
|
+
border-radius: 0; }
|
2985
|
+
@media screen and (max-width: 39.9375em) {
|
2986
|
+
.reveal {
|
2987
|
+
top: 0;
|
2988
|
+
left: 0;
|
2989
|
+
width: 100%;
|
2990
|
+
height: 100%;
|
2991
|
+
height: 100vh;
|
2992
|
+
min-height: 100vh;
|
2993
|
+
max-width: none;
|
2994
|
+
margin-left: 0;
|
2995
|
+
border: 0;
|
2996
|
+
border-radius: 0; } }
|
2997
|
+
.reveal.without-overlay {
|
2998
|
+
position: fixed; }
|
2999
|
+
|
3000
|
+
.switch {
|
3001
|
+
margin-bottom: 1rem;
|
3002
|
+
outline: 0;
|
3003
|
+
position: relative;
|
3004
|
+
-webkit-user-select: none;
|
3005
|
+
-moz-user-select: none;
|
3006
|
+
-ms-user-select: none;
|
3007
|
+
user-select: none;
|
3008
|
+
color: #fefefe;
|
3009
|
+
font-weight: bold;
|
3010
|
+
font-size: 0.875rem; }
|
3011
|
+
|
3012
|
+
.switch-input {
|
3013
|
+
opacity: 0;
|
3014
|
+
position: absolute; }
|
3015
|
+
|
3016
|
+
.switch-paddle {
|
3017
|
+
background: #cacaca;
|
3018
|
+
cursor: pointer;
|
3019
|
+
display: block;
|
3020
|
+
position: relative;
|
3021
|
+
width: 4rem;
|
3022
|
+
height: 2rem;
|
3023
|
+
transition: all 0.25s ease-out;
|
3024
|
+
border-radius: 0;
|
3025
|
+
color: inherit;
|
3026
|
+
font-weight: inherit; }
|
3027
|
+
input + .switch-paddle {
|
3028
|
+
margin: 0; }
|
3029
|
+
.switch-paddle::after {
|
3030
|
+
background: #fefefe;
|
3031
|
+
content: '';
|
3032
|
+
display: block;
|
3033
|
+
position: absolute;
|
3034
|
+
height: 1.5rem;
|
3035
|
+
left: 0.25rem;
|
3036
|
+
top: 0.25rem;
|
3037
|
+
width: 1.5rem;
|
3038
|
+
transition: all 0.25s ease-out;
|
3039
|
+
-webkit-transform: translate3d(0, 0, 0);
|
3040
|
+
transform: translate3d(0, 0, 0);
|
3041
|
+
border-radius: 0; }
|
3042
|
+
input:checked ~ .switch-paddle {
|
3043
|
+
background: #2199e8; }
|
3044
|
+
input:checked ~ .switch-paddle::after {
|
3045
|
+
left: 2.25rem; }
|
3046
|
+
[data-whatinput='mouse'] input:focus ~ .switch-paddle {
|
3047
|
+
outline: 0; }
|
3048
|
+
|
3049
|
+
.switch-active, .switch-inactive {
|
3050
|
+
position: absolute;
|
3051
|
+
top: 50%;
|
3052
|
+
-webkit-transform: translateY(-50%);
|
3053
|
+
-ms-transform: translateY(-50%);
|
3054
|
+
transform: translateY(-50%); }
|
3055
|
+
|
3056
|
+
.switch-active {
|
3057
|
+
left: 8%;
|
3058
|
+
display: none; }
|
3059
|
+
input:checked + label > .switch-active {
|
3060
|
+
display: block; }
|
3061
|
+
|
3062
|
+
.switch-inactive {
|
3063
|
+
right: 15%; }
|
3064
|
+
input:checked + label > .switch-inactive {
|
3065
|
+
display: none; }
|
3066
|
+
|
3067
|
+
.switch.tiny .switch-paddle {
|
3068
|
+
width: 3rem;
|
3069
|
+
height: 1.5rem;
|
3070
|
+
font-size: 0.625rem; }
|
3071
|
+
|
3072
|
+
.switch.tiny .switch-paddle::after {
|
3073
|
+
width: 1rem;
|
3074
|
+
height: 1rem; }
|
3075
|
+
|
3076
|
+
.switch.tiny input:checked ~ .switch-paddle::after {
|
3077
|
+
left: 1.75rem; }
|
3078
|
+
|
3079
|
+
.switch.small .switch-paddle {
|
3080
|
+
width: 3.5rem;
|
3081
|
+
height: 1.75rem;
|
3082
|
+
font-size: 0.75rem; }
|
3083
|
+
|
3084
|
+
.switch.small .switch-paddle::after {
|
3085
|
+
width: 1.25rem;
|
3086
|
+
height: 1.25rem; }
|
3087
|
+
|
3088
|
+
.switch.small input:checked ~ .switch-paddle::after {
|
3089
|
+
left: 2rem; }
|
3090
|
+
|
3091
|
+
.switch.large .switch-paddle {
|
3092
|
+
width: 5rem;
|
3093
|
+
height: 2.5rem;
|
3094
|
+
font-size: 1rem; }
|
3095
|
+
|
3096
|
+
.switch.large .switch-paddle::after {
|
3097
|
+
width: 2rem;
|
3098
|
+
height: 2rem; }
|
3099
|
+
|
3100
|
+
.switch.large input:checked ~ .switch-paddle::after {
|
3101
|
+
left: 2.75rem; }
|
3102
|
+
|
3103
|
+
table {
|
3104
|
+
width: 100%;
|
3105
|
+
margin-bottom: 1rem;
|
3106
|
+
border-radius: 0; }
|
3107
|
+
table thead,
|
3108
|
+
table tbody,
|
3109
|
+
table tfoot {
|
3110
|
+
border: 1px solid #f1f1f1;
|
3111
|
+
background-color: #fefefe; }
|
3112
|
+
table caption {
|
3113
|
+
font-weight: bold;
|
3114
|
+
padding: 0.5rem 0.625rem 0.625rem; }
|
3115
|
+
table thead,
|
3116
|
+
table tfoot {
|
3117
|
+
background: #f8f8f8;
|
3118
|
+
color: #0a0a0a; }
|
3119
|
+
table thead tr,
|
3120
|
+
table tfoot tr {
|
3121
|
+
background: transparent; }
|
3122
|
+
table thead th,
|
3123
|
+
table thead td,
|
3124
|
+
table tfoot th,
|
3125
|
+
table tfoot td {
|
3126
|
+
padding: 0.5rem 0.625rem 0.625rem;
|
3127
|
+
font-weight: bold;
|
3128
|
+
text-align: left; }
|
3129
|
+
table tbody tr:nth-child(even) {
|
3130
|
+
background-color: #f1f1f1; }
|
3131
|
+
table tbody th,
|
3132
|
+
table tbody td {
|
3133
|
+
padding: 0.5rem 0.625rem 0.625rem; }
|
3134
|
+
|
3135
|
+
@media screen and (max-width: 63.9375em) {
|
3136
|
+
table.stack thead {
|
3137
|
+
display: none; }
|
3138
|
+
table.stack tfoot {
|
3139
|
+
display: none; }
|
3140
|
+
table.stack tr,
|
3141
|
+
table.stack th,
|
3142
|
+
table.stack td {
|
3143
|
+
display: block; }
|
3144
|
+
table.stack td {
|
3145
|
+
border-top: 0; } }
|
3146
|
+
|
3147
|
+
table.scroll {
|
3148
|
+
display: block;
|
3149
|
+
width: 100%;
|
3150
|
+
overflow-x: auto; }
|
3151
|
+
|
3152
|
+
table.hover tr:hover {
|
3153
|
+
background-color: #f9f9f9; }
|
3154
|
+
|
3155
|
+
table.hover tr:nth-of-type(even):hover {
|
3156
|
+
background-color: #ececec; }
|
3157
|
+
|
3158
|
+
.table-scroll {
|
3159
|
+
overflow-x: auto; }
|
3160
|
+
.table-scroll table {
|
3161
|
+
width: auto; }
|
3162
|
+
|
3163
|
+
.tabs {
|
3164
|
+
margin: 0;
|
3165
|
+
list-style-type: none;
|
3166
|
+
background: #fefefe;
|
3167
|
+
border: 1px solid #e6e6e6; }
|
3168
|
+
.tabs::before, .tabs::after {
|
3169
|
+
content: ' ';
|
3170
|
+
display: table; }
|
3171
|
+
.tabs::after {
|
3172
|
+
clear: both; }
|
3173
|
+
|
3174
|
+
.tabs.vertical > li {
|
3175
|
+
width: auto;
|
3176
|
+
float: none;
|
3177
|
+
display: block; }
|
3178
|
+
|
3179
|
+
.tabs.simple > li > a {
|
3180
|
+
padding: 0; }
|
3181
|
+
.tabs.simple > li > a:hover {
|
3182
|
+
background: transparent; }
|
3183
|
+
|
3184
|
+
.tabs.primary {
|
3185
|
+
background: #2199e8; }
|
3186
|
+
.tabs.primary > li > a {
|
3187
|
+
color: #fefefe; }
|
3188
|
+
.tabs.primary > li > a:hover, .tabs.primary > li > a:focus {
|
3189
|
+
background: #1893e4; }
|
3190
|
+
|
3191
|
+
.tabs-title {
|
3192
|
+
float: left; }
|
3193
|
+
.tabs-title > a {
|
3194
|
+
display: block;
|
3195
|
+
padding: 1.25rem 1.5rem;
|
3196
|
+
line-height: 1;
|
3197
|
+
font-size: 0.75rem; }
|
3198
|
+
.tabs-title > a:hover {
|
3199
|
+
background: #fefefe; }
|
3200
|
+
.tabs-title > a:focus, .tabs-title > a[aria-selected='true'] {
|
3201
|
+
background: #e6e6e6; }
|
3202
|
+
|
3203
|
+
.tabs-content {
|
3204
|
+
background: #fefefe;
|
3205
|
+
transition: all 0.5s ease;
|
3206
|
+
border: 1px solid #e6e6e6;
|
3207
|
+
border-top: 0; }
|
3208
|
+
|
3209
|
+
.tabs-content.vertical {
|
3210
|
+
border: 1px solid #e6e6e6;
|
3211
|
+
border-left: 0; }
|
3212
|
+
|
3213
|
+
.tabs-panel {
|
3214
|
+
display: none;
|
3215
|
+
padding: 1rem; }
|
3216
|
+
.tabs-panel.is-active {
|
3217
|
+
display: block; }
|
3218
|
+
|
3219
|
+
.thumbnail {
|
3220
|
+
border: solid 4px #fefefe;
|
3221
|
+
box-shadow: 0 0 0 1px rgba(10, 10, 10, 0.2);
|
3222
|
+
display: inline-block;
|
3223
|
+
line-height: 0;
|
3224
|
+
max-width: 100%;
|
3225
|
+
transition: box-shadow 200ms ease-out;
|
3226
|
+
border-radius: 0;
|
3227
|
+
margin-bottom: 1rem; }
|
3228
|
+
.thumbnail:hover, .thumbnail:focus {
|
3229
|
+
box-shadow: 0 0 6px 1px rgba(33, 153, 232, 0.5); }
|
3230
|
+
|
3231
|
+
.title-bar {
|
3232
|
+
background: #0a0a0a;
|
3233
|
+
color: #fefefe;
|
3234
|
+
padding: 0.5rem; }
|
3235
|
+
.title-bar::before, .title-bar::after {
|
3236
|
+
content: ' ';
|
3237
|
+
display: table; }
|
3238
|
+
.title-bar::after {
|
3239
|
+
clear: both; }
|
3240
|
+
.title-bar .menu-icon {
|
3241
|
+
margin-left: 0.25rem;
|
3242
|
+
margin-right: 0.5rem; }
|
3243
|
+
|
3244
|
+
.title-bar-left {
|
3245
|
+
float: left; }
|
3246
|
+
|
3247
|
+
.title-bar-right {
|
3248
|
+
float: right;
|
3249
|
+
text-align: right; }
|
3250
|
+
|
3251
|
+
.title-bar-title {
|
3252
|
+
font-weight: bold;
|
3253
|
+
vertical-align: middle;
|
3254
|
+
display: inline-block; }
|
3255
|
+
|
3256
|
+
.menu-icon.dark {
|
3257
|
+
position: relative;
|
3258
|
+
display: inline-block;
|
3259
|
+
vertical-align: middle;
|
3260
|
+
cursor: pointer;
|
3261
|
+
width: 20px;
|
3262
|
+
height: 16px; }
|
3263
|
+
.menu-icon.dark::after {
|
3264
|
+
content: '';
|
3265
|
+
position: absolute;
|
3266
|
+
display: block;
|
3267
|
+
width: 100%;
|
3268
|
+
height: 2px;
|
3269
|
+
background: #0a0a0a;
|
3270
|
+
top: 0;
|
3271
|
+
left: 0;
|
3272
|
+
box-shadow: 0 7px 0 #0a0a0a, 0 14px 0 #0a0a0a; }
|
3273
|
+
.menu-icon.dark:hover::after {
|
3274
|
+
background: #8a8a8a;
|
3275
|
+
box-shadow: 0 7px 0 #8a8a8a, 0 14px 0 #8a8a8a; }
|
3276
|
+
|
3277
|
+
.has-tip {
|
3278
|
+
border-bottom: dotted 1px #8a8a8a;
|
3279
|
+
font-weight: bold;
|
3280
|
+
position: relative;
|
3281
|
+
display: inline-block;
|
3282
|
+
cursor: help; }
|
3283
|
+
|
3284
|
+
.tooltip {
|
3285
|
+
background-color: #0a0a0a;
|
3286
|
+
color: #fefefe;
|
3287
|
+
font-size: 80%;
|
3288
|
+
padding: 0.75rem;
|
3289
|
+
position: absolute;
|
3290
|
+
z-index: 10;
|
3291
|
+
top: calc(100% + 0.6495rem);
|
3292
|
+
max-width: 10rem !important;
|
3293
|
+
border-radius: 0; }
|
3294
|
+
.tooltip::before {
|
3295
|
+
content: '';
|
3296
|
+
display: block;
|
3297
|
+
width: 0;
|
3298
|
+
height: 0;
|
3299
|
+
border: inset 0.75rem;
|
3300
|
+
border-color: transparent transparent #0a0a0a;
|
3301
|
+
border-bottom-style: solid;
|
3302
|
+
border-top-width: 0;
|
3303
|
+
bottom: 100%;
|
3304
|
+
position: absolute;
|
3305
|
+
left: 50%;
|
3306
|
+
-webkit-transform: translateX(-50%);
|
3307
|
+
-ms-transform: translateX(-50%);
|
3308
|
+
transform: translateX(-50%); }
|
3309
|
+
.tooltip.top::before {
|
3310
|
+
content: '';
|
3311
|
+
display: block;
|
3312
|
+
width: 0;
|
3313
|
+
height: 0;
|
3314
|
+
border: inset 0.75rem;
|
3315
|
+
border-color: #0a0a0a transparent transparent;
|
3316
|
+
border-top-style: solid;
|
3317
|
+
border-bottom-width: 0;
|
3318
|
+
top: 100%;
|
3319
|
+
bottom: auto; }
|
3320
|
+
.tooltip.left::before {
|
3321
|
+
content: '';
|
3322
|
+
display: block;
|
3323
|
+
width: 0;
|
3324
|
+
height: 0;
|
3325
|
+
border: inset 0.75rem;
|
3326
|
+
border-color: transparent transparent transparent #0a0a0a;
|
3327
|
+
border-left-style: solid;
|
3328
|
+
border-right-width: 0;
|
3329
|
+
bottom: auto;
|
3330
|
+
left: 100%;
|
3331
|
+
top: 50%;
|
3332
|
+
-webkit-transform: translateY(-50%);
|
3333
|
+
-ms-transform: translateY(-50%);
|
3334
|
+
transform: translateY(-50%); }
|
3335
|
+
.tooltip.right::before {
|
3336
|
+
content: '';
|
3337
|
+
display: block;
|
3338
|
+
width: 0;
|
3339
|
+
height: 0;
|
3340
|
+
border: inset 0.75rem;
|
3341
|
+
border-color: transparent #0a0a0a transparent transparent;
|
3342
|
+
border-right-style: solid;
|
3343
|
+
border-left-width: 0;
|
3344
|
+
bottom: auto;
|
3345
|
+
left: auto;
|
3346
|
+
right: 100%;
|
3347
|
+
top: 50%;
|
3348
|
+
-webkit-transform: translateY(-50%);
|
3349
|
+
-ms-transform: translateY(-50%);
|
3350
|
+
transform: translateY(-50%); }
|
3351
|
+
|
3352
|
+
.top-bar {
|
3353
|
+
padding: 0.5rem; }
|
3354
|
+
.top-bar::before, .top-bar::after {
|
3355
|
+
content: ' ';
|
3356
|
+
display: table; }
|
3357
|
+
.top-bar::after {
|
3358
|
+
clear: both; }
|
3359
|
+
.top-bar,
|
3360
|
+
.top-bar ul {
|
3361
|
+
background-color: #e6e6e6; }
|
3362
|
+
.top-bar input {
|
3363
|
+
max-width: 200px;
|
3364
|
+
margin-right: 1rem; }
|
3365
|
+
.top-bar .input-group-field {
|
3366
|
+
width: 100%;
|
3367
|
+
margin-right: 0; }
|
3368
|
+
.top-bar input.button {
|
3369
|
+
width: auto; }
|
3370
|
+
.top-bar .top-bar-left,
|
3371
|
+
.top-bar .top-bar-right {
|
3372
|
+
width: 100%; }
|
3373
|
+
@media screen and (min-width: 40em) {
|
3374
|
+
.top-bar .top-bar-left,
|
3375
|
+
.top-bar .top-bar-right {
|
3376
|
+
width: auto; } }
|
3377
|
+
@media screen and (max-width: 63.9375em) {
|
3378
|
+
.top-bar.stacked-for-medium .top-bar-left,
|
3379
|
+
.top-bar.stacked-for-medium .top-bar-right {
|
3380
|
+
width: 100%; } }
|
3381
|
+
@media screen and (max-width: 74.9375em) {
|
3382
|
+
.top-bar.stacked-for-large .top-bar-left,
|
3383
|
+
.top-bar.stacked-for-large .top-bar-right {
|
3384
|
+
width: 100%; } }
|
3385
|
+
|
3386
|
+
.top-bar-title {
|
3387
|
+
float: left;
|
3388
|
+
margin-right: 1rem; }
|
3389
|
+
|
3390
|
+
.top-bar-left {
|
3391
|
+
float: left; }
|
3392
|
+
|
3393
|
+
.top-bar-right {
|
3394
|
+
float: right; }
|
3395
|
+
|
3396
|
+
.hide {
|
3397
|
+
display: none !important; }
|
3398
|
+
|
3399
|
+
.invisible {
|
3400
|
+
visibility: hidden; }
|
3401
|
+
|
3402
|
+
@media screen and (max-width: 39.9375em) {
|
3403
|
+
.hide-for-small-only {
|
3404
|
+
display: none !important; } }
|
3405
|
+
|
3406
|
+
@media screen and (max-width: 0em), screen and (min-width: 40em) {
|
3407
|
+
.show-for-small-only {
|
3408
|
+
display: none !important; } }
|
3409
|
+
|
3410
|
+
@media screen and (min-width: 40em) {
|
3411
|
+
.hide-for-medium {
|
3412
|
+
display: none !important; } }
|
3413
|
+
|
3414
|
+
@media screen and (max-width: 39.9375em) {
|
3415
|
+
.show-for-medium {
|
3416
|
+
display: none !important; } }
|
3417
|
+
|
3418
|
+
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
|
3419
|
+
.hide-for-medium-only {
|
3420
|
+
display: none !important; } }
|
3421
|
+
|
3422
|
+
@media screen and (max-width: 39.9375em), screen and (min-width: 64em) {
|
3423
|
+
.show-for-medium-only {
|
3424
|
+
display: none !important; } }
|
3425
|
+
|
3426
|
+
@media screen and (min-width: 64em) {
|
3427
|
+
.hide-for-large {
|
3428
|
+
display: none !important; } }
|
3429
|
+
|
3430
|
+
@media screen and (max-width: 63.9375em) {
|
3431
|
+
.show-for-large {
|
3432
|
+
display: none !important; } }
|
3433
|
+
|
3434
|
+
@media screen and (min-width: 64em) and (max-width: 74.9375em) {
|
3435
|
+
.hide-for-large-only {
|
3436
|
+
display: none !important; } }
|
3437
|
+
|
3438
|
+
@media screen and (max-width: 63.9375em), screen and (min-width: 75em) {
|
3439
|
+
.show-for-large-only {
|
3440
|
+
display: none !important; } }
|
3441
|
+
|
3442
|
+
.show-for-sr,
|
3443
|
+
.show-on-focus {
|
3444
|
+
position: absolute !important;
|
3445
|
+
width: 1px;
|
3446
|
+
height: 1px;
|
3447
|
+
overflow: hidden;
|
3448
|
+
clip: rect(0, 0, 0, 0); }
|
3449
|
+
|
3450
|
+
.show-on-focus:active, .show-on-focus:focus {
|
3451
|
+
position: static !important;
|
3452
|
+
height: auto;
|
3453
|
+
width: auto;
|
3454
|
+
overflow: visible;
|
3455
|
+
clip: auto; }
|
3456
|
+
|
3457
|
+
.show-for-landscape,
|
3458
|
+
.hide-for-portrait {
|
3459
|
+
display: block !important; }
|
3460
|
+
@media screen and (orientation: landscape) {
|
3461
|
+
.show-for-landscape,
|
3462
|
+
.hide-for-portrait {
|
3463
|
+
display: block !important; } }
|
3464
|
+
@media screen and (orientation: portrait) {
|
3465
|
+
.show-for-landscape,
|
3466
|
+
.hide-for-portrait {
|
3467
|
+
display: none !important; } }
|
3468
|
+
|
3469
|
+
.hide-for-landscape,
|
3470
|
+
.show-for-portrait {
|
3471
|
+
display: none !important; }
|
3472
|
+
@media screen and (orientation: landscape) {
|
3473
|
+
.hide-for-landscape,
|
3474
|
+
.show-for-portrait {
|
3475
|
+
display: none !important; } }
|
3476
|
+
@media screen and (orientation: portrait) {
|
3477
|
+
.hide-for-landscape,
|
3478
|
+
.show-for-portrait {
|
3479
|
+
display: block !important; } }
|
3480
|
+
|
3481
|
+
.float-left {
|
3482
|
+
float: left !important; }
|
3483
|
+
|
3484
|
+
.float-right {
|
3485
|
+
float: right !important; }
|
3486
|
+
|
3487
|
+
.float-center {
|
3488
|
+
display: block;
|
3489
|
+
margin-left: auto;
|
3490
|
+
margin-right: auto; }
|
3491
|
+
|
3492
|
+
.clearfix::before, .clearfix::after {
|
3493
|
+
content: ' ';
|
3494
|
+
display: table; }
|
3495
|
+
|
3496
|
+
.clearfix::after {
|
3497
|
+
clear: both; }
|
3498
|
+
|
3499
|
+
/*# sourceMappingURL=foundation.css.map */
|