-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathscreen.css
More file actions
599 lines (550 loc) · 13.7 KB
/
Copy pathscreen.css
File metadata and controls
599 lines (550 loc) · 13.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
/**
* @file
* All the fonts we are going to use are imported here.
*/
@import url(https://fonts.googleapis.com/css?family=Oswald:700);
@import url(https://fonts.googleapis.com/css?family=Droid+Serif);
/* normalize.scss 2.2.0+normalize.2.1.3 | MIT/GPLv2 License | bit.ly/normalize-with-compass */
/**
* @file
* All the variables we are using in our styling are listed here.
*/
/* line 10, ../sass/lib/_normalize.scss */
html {
box-sizing: border-box;
}
/* line 13, ../sass/lib/_normalize.scss */
*, *:before, *:after {
box-sizing: inherit;
}
/* ==========================================================================
HTML5 display definitions
========================================================================== */
/**
* Correct `block` display not defined in IE 8/9.
*/
/* line 26, ../sass/lib/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
display: block;
}
/**
* Correct `inline-block` display not defined in IE 8/9.
*/
/* line 45, ../sass/lib/_normalize.scss */
audio,
canvas,
video {
display: inline-block;
}
/**
* Prevent modern browsers from displaying `audio` without controls.
* Remove excess height in iOS 5 devices.
*/
/* line 60, ../sass/lib/_normalize.scss */
audio:not([controls]) {
display: none;
height: 0;
}
/**
* Address `[hidden]` styling not present in IE 8/9.
* Hide the `template` element in IE, Safari, and Firefox < 22.
*/
/* line 70, ../sass/lib/_normalize.scss */
[hidden],
template {
display: none;
}
/* ==========================================================================
Base
========================================================================== */
/**
* 1. Set default font family to sans-serif.
* 2. Prevent iOS text size adjust after orientation change, without disabling
* user zoom.
* 3. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
* `em` units.
*/
/* line 87, ../sass/lib/_normalize.scss */
html {
font-family: "Droid Serif", Georgia, serif, sans-serif;
/* 1 */
-ms-text-size-adjust: 100%;
/* 2 */
-webkit-text-size-adjust: 100%;
/* 2 */
}
/**
* Remove default margin.
*/
/* line 119, ../sass/lib/_normalize.scss */
body {
line-height: 1.5;
margin: 0;
}
/* ==========================================================================
Links
========================================================================== */
/**
* Remove the gray background color from active links in IE 10.
*/
/* line 132, ../sass/lib/_normalize.scss */
a {
background: transparent;
text-decoration: none;
}
/* line 135, ../sass/lib/_normalize.scss */
a:focus, a:hover {
text-decoration: underline;
}
/* line 144, ../sass/lib/_normalize.scss */
p a:hover, p a:focus {
text-decoration: none;
}
/**
* Address `outline` inconsistency between Chrome and other browsers.
*/
/* line 156, ../sass/lib/_normalize.scss */
a:focus {
outline: thin dotted;
}
/**
* Improve readability when focused and also mouse hovered in all browsers.
*/
/* line 164, ../sass/lib/_normalize.scss */
a:active,
a:hover {
outline: 0;
}
/* ==========================================================================
Typography
========================================================================== */
/**
* Address variable `h1` font-size and margin within `section` and `article`
* contexts in Firefox 4+, Safari 5, and Chrome.
*/
/* line 194, ../sass/lib/_normalize.scss */
h1 {
/* Set the font-size and line-height while keeping a proper vertical rhythm. */
font-size: 2em;
/* Set 1 unit of vertical rhythm on the top and bottom margins. */
margin-top: 0.5625em;
margin-bottom: 0.5625em;
}
/**
* Address styling not present in IE 8/9, Safari 5, and Chrome.
*/
/* line 244, ../sass/lib/_normalize.scss */
abbr[title] {
border-bottom: 1px dotted;
}
/**
* Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
*/
/* line 252, ../sass/lib/_normalize.scss */
b,
strong {
font-weight: bold;
}
/**
* Address styling not present in Safari 5 and Chrome.
*/
/* line 261, ../sass/lib/_normalize.scss */
dfn {
font-style: italic;
}
/**
* Address differences between Firefox and other browsers.
*/
/* line 269, ../sass/lib/_normalize.scss */
hr {
-moz-box-sizing: content-box;
-webkit-box-sizing: content-box;
box-sizing: content-box;
height: 0;
}
/**
* Address styling not present in IE 8/9.
*/
/* line 278, ../sass/lib/_normalize.scss */
mark {
background: #ff0;
color: #000;
}
/**
* Correct font family set oddly in Safari 5 and Chrome.
*/
/* line 287, ../sass/lib/_normalize.scss */
code,
kbd,
pre,
samp {
font-family: monospace, serif;
font-size: 1em;
}
/**
* Improve readability of pre-formatted text in all browsers.
*/
/* line 302, ../sass/lib/_normalize.scss */
pre {
white-space: pre-wrap;
}
/**
* Set consistent quote types.
*/
/* line 317, ../sass/lib/_normalize.scss */
q {
quotes: "\201C" "\201D" "\2018" "\2019";
}
/**
* Address inconsistent and variable font size in all browsers.
*/
/* line 325, ../sass/lib/_normalize.scss */
small {
font-size: 80%;
}
/**
* Prevent `sub` and `sup` affecting `line-height` in all browsers.
*/
/* line 333, ../sass/lib/_normalize.scss */
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
/* line 341, ../sass/lib/_normalize.scss */
sup {
top: -0.5em;
}
/* line 345, ../sass/lib/_normalize.scss */
sub {
bottom: -0.25em;
}
/* ==========================================================================
Lists
========================================================================== */
/* ==========================================================================
Embedded content
========================================================================== */
/**
* Remove border when inside `a` element in IE 8/9.
*/
/* line 410, ../sass/lib/_normalize.scss */
img {
border: 0;
}
/**
* Correct overflow displayed oddly in IE 9.
*/
/* line 422, ../sass/lib/_normalize.scss */
svg:not(:root) {
overflow: hidden;
}
/* ==========================================================================
Figures
========================================================================== */
/**
* Address margin not present in IE 8/9 and Safari 5.
*/
/* line 434, ../sass/lib/_normalize.scss */
figure {
margin: 0;
}
/* ==========================================================================
Forms
========================================================================== */
/**
* Define consistent border, margin, and padding.
*/
/* line 456, ../sass/lib/_normalize.scss */
fieldset {
margin: 0 2px;
/* Apply borders and padding that keep the vertical rhythm. */
border-color: #c0c0c0;
border-top-width: 0.0625em;
border-top-style: solid;
padding-top: 0.33125em;
border-bottom-width: 0.0625em;
border-bottom-style: solid;
padding-bottom: 0.66875em;
border-left-width: 0.0625em;
border-left-style: solid;
padding-left: 0.64063em;
border-right-width: 0.0625em;
border-right-style: solid;
padding-right: 0.64063em;
}
/**
* 1. Correct `color` not being inherited in IE 8/9.
* 2. Remove padding so people aren't caught out if they zero out fieldsets.
* 3. Correct alignment displayed oddly in IE 6/7.
*/
/* line 472, ../sass/lib/_normalize.scss */
legend {
border: 0;
/* 1 */
padding: 0;
/* 2 */
}
/**
* 1. Correct font family not being inherited in all browsers.
* 2. Correct font size not being inherited in all browsers.
* 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
* 4. Improve appearance and consistency with IE 6/7.
*/
/* line 487, ../sass/lib/_normalize.scss */
button,
input,
select,
textarea {
font-family: inherit;
/* 1 */
font-size: 100%;
/* 2 */
margin: 5px 0;
/* 3 */
padding: 10px;
}
/**
* Address Firefox 4+ setting `line-height` on `input` using `!important` in
* the UA stylesheet.
*/
/* line 506, ../sass/lib/_normalize.scss */
button,
input {
line-height: normal;
}
/**
* Address inconsistent `text-transform` inheritance for `button` and `select`.
* All other form control elements do not inherit `text-transform` values.
* Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
* Correct `select` style inheritance in Firefox 4+ and Opera.
*/
/* line 518, ../sass/lib/_normalize.scss */
button,
select {
text-transform: none;
}
/**
* 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
* and `video` controls.
* 2. Correct inability to style clickable `input` types in iOS.
* 3. Improve usability and consistency of cursor style between image-type
* `input` and others.
* 4. Remove inner spacing in IE 7 without affecting normal text inputs.
* Known issue: inner spacing remains in IE 6.
*/
/* line 533, ../sass/lib/_normalize.scss */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
padding: 13px 21px;
padding: 0.8rem 1.3rem;
background: #fff;
clear: both;
display: block;
-webkit-appearance: button;
/* 2 */
cursor: pointer;
/* 3 */
width: auto;
}
/* line 547, ../sass/lib/_normalize.scss */
button:focus, button:hover,
html input[type="button"]:focus,
html input[type="button"]:hover,
input[type="reset"]:focus,
input[type="reset"]:hover,
input[type="submit"]:focus,
input[type="submit"]:hover {
color: #000;
}
/**
* Re-set default cursor for disabled elements.
*/
/* line 557, ../sass/lib/_normalize.scss */
button[disabled],
html input[disabled] {
cursor: default;
}
/**
* 1. Address box sizing set to `content-box` in IE 8/9/10.
* 2. Remove excess padding in IE 8/9/10.
* 3. Remove excess padding in IE 7.
* Known issue: excess padding remains in IE 6.
*/
/* line 569, ../sass/lib/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
/* 1 */
padding: 0;
/* 2 */
}
/**
* 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
* 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
* (include `-moz` to future-proof).
*/
/* line 585, ../sass/lib/_normalize.scss */
input[type="search"] {
-webkit-appearance: textfield;
/* 1 */
-moz-box-sizing: content-box;
-webkit-box-sizing: content-box;
box-sizing: content-box;
/* 2 */
}
/**
* Remove inner padding and search cancel button in Safari 5 and Chrome
* on OS X.
*/
/* line 595, ../sass/lib/_normalize.scss */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
}
/**
* Remove inner padding and border in Firefox 4+.
*/
/* line 604, ../sass/lib/_normalize.scss */
button::-moz-focus-inner,
input::-moz-focus-inner {
border: 0;
padding: 0;
}
/**
* 1. Remove default vertical scrollbar in IE 8/9.
* 2. Improve readability and alignment in all browsers.
*/
/* line 615, ../sass/lib/_normalize.scss */
textarea {
overflow: auto;
/* 1 */
vertical-align: top;
/* 2 */
}
/* ==========================================================================
Tables
========================================================================== */
/**
* Remove most spacing between table cells.
*/
/* line 628, ../sass/lib/_normalize.scss */
table {
border-collapse: collapse;
border-spacing: 0;
}
/**
* @file
* All the extends we are going to use are imported here.
*/
/* line 6, ../sass/lib/_extends.scss */
section a.btn, section .btn {
background: #FFE03A;
border: 2px solid #FFE03A;
border-radius: .5rem;
color: #054f51;
display: inline-block;
font-weight: bold;
padding: 1rem 2rem .75rem;
text-transform: uppercase;
}
/* line 15, ../sass/lib/_extends.scss */
section .btn:focus, section .btn:hover {
background: #333333;
color: #FFE03A;
cursor: pointer;
}
/**
* @file
* Zen Grids
**/
/* line 9, ../sass/_layout.scss */
.contained {
clear: both;
margin: auto;
max-width: 1024px;
padding: 0 1rem;
text-align: center;
}
/**
* @file
* Styling for headings is added here.
*/
/* line 6, ../sass/elements/_h.scss */
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Oswald, sans-serif;
}
/* line 1, ../sass/regions/_header.scss */
header {
background: #FFE03A;
color: #333333;
clear: both;
display: flex;
justify-content: center;
min-height: 33vh;
overflow: hidden;
}
/* line 1, ../sass/regions/_section.scss */
section {
background: #054f51;
border-bottom: 8px dashed #FFE03A;
border-top: 8px dashed #FFE03A;
clear: both;
color: #dfdfdf;
display: flex;
justify-content: center;
min-height: 50vh;
overflow: hidden;
}
/* line 13, ../sass/regions/_section.scss */
section .content {
align-self: center;
}
/* line 25, ../sass/regions/_section.scss */
section .btn {
margin-top: 1rem;
}
/* line 1, ../sass/regions/_footer.scss */
footer {
background: #FFE03A;
clear: both;
color: #333333;
display: flex;
font-family: Oswald, sans-serif;
font-weight: bold;
justify-content: center;
min-height: 17vh;
overflow: hidden;
}
/* line 13, ../sass/regions/_footer.scss */
footer a {
color: #333333;
text-decoration: underline;
}
/* line 16, ../sass/regions/_footer.scss */
footer a:focus, footer a:hover {
color: #054f51;
text-decoration: none;
}