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