This repository has been archived by the owner on Jun 8, 2023. It is now read-only.
forked from CANHEIT/CANHEIT-2013
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscreen.sass
1295 lines (1128 loc) · 31.8 KB
/
screen.sass
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
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// ---------------------------------------------------------------------------
// Imports
@import base
@import "compass/typography/text/replacement"
/* -------------------------------------------------------------------------
/* Layout */
body
font-family: 'Source Sans Pro', sans-serif
font-weight: $weight-normal
background-color: darken(white, 5%)
bold, strong
font-weight: $weight-bold
.container
+container
background-color: white
padding: 1em 1em
+at-breakpoint(30em 6)
+container
+at-breakpoint(35em 7)
+container
+at-breakpoint(45em 9)
+container
.home .container
+at-breakpoint(45em 9)
background-color: transparent
article
overflow: hidden
+at-breakpoint(45em 9)
font-size: 1.4em
header p.summary
padding: 0.85em /* 1.4 * 0.875 */
margin: -0.85em /* */
margin-bottom: 1em
img, video, embed, object
max-width: 100%
article figure.right
max-width: 100%
+at-breakpoint(30em 6)
max-width: 13.5em /* 28em - 1em for margin / 2 */
margin-left: 1em
margin-bottom: 1em
float: right
+at-breakpoint(35em 7)
max-width: 16.5em /* 34em - 1em for margin / 2 */
+at-breakpoint(45em 9)
max-width: 15.5em /* 32em - 1em for margin / 2 */
article figure.right.one-third
+at-breakpoint(35em 7)
max-width: 11em /* 34em - 1em for margin / 3 */
+at-breakpoint(45em 9)
max-width: 10.333333333em /* 32em - 1em for margin / 3 */
h1
font-weight: $weight-normal
text-transform: uppercase
color: $primary-gray
font-size: 1.875em /* 30 / 16 = 1.875 */
line-height: 1.06666666666667em /* 32 / 30 = 1.06666666666667 */
margin-top: 2em
margin-right: 3em
h2
font-weight: $weight-semibold
color: $primary-orange
font-size: 1.875em /* 30 / 16 = 1.875 */
line-height: 1.06666666666667em /* 32 / 30 = 1.06666666666667 */
h3
color: $primary-gray
font-weight: $weight-normal
font-size: 1.25em /* 20 / 16 = 1.25 */
line-height: 1.2em /* 24 / 20 = 1.2 */
a:link, a:visited
font-weight: $weight-bold
color: #55bed8
a:hover
color: lighten($secondary-blue, 10%)
a:link, a:visited, a:hover, input[type=submit], button
-webkit-transition: color 0.2s linear, background-color 0.2s linear, opacity 0.2s linear
-moz-transition: color 0.2s linear, background-color 0.2s linear, opacity 0.2s linear
-ms-transition: color 0.2s linear, background-color 0.2s linear, opacity 0.2s linear
-o-transition: color 0.2s linear, background-color 0.2s linear, opacity 0.2s linear
transition: color 0.2s linear, background-color 0.2s linear, opacity 0.2s linear
input[type=submit], button
font-size: 1em
font-weight: $weight-bold
line-height: 1.4em
font-family: inherit
a.button, a.bigbutton, input[type=submit], button
display: inline-block
text-decoration: none
background: $secondary-blue
color: white
padding: 0.3em 0.5em
border: 1px solid white
-webkit-box-shadow: 1px 3px 10px 0px rgba(0, 0, 0, .2)
box-shadow: 1px 3px 10px 0px rgba(0, 0, 0, .2)
margin-left: -1px
text-transform: uppercase
margin-right: 1em
margin-bottom: 1em
a.button + p, a.bigbutton + p, input[type=submit] + p, button + p
margin-top: 0
a.button.secondary, a.bigbutton.secondary, input[type=submit].secondary, button.secondary
background: $secondary-green
a.button:hover, a.bigbutton:hover, input[type=submit]:hover, button:hover
background: lighten($secondary-blue, 10%)
a.button.cancel, a.bigbutton.cancel, input[type=submit].cancel, button.cancel
background: lighten($primary-gray, 10%)
opacity: 0.8
font-size: 0.8em
a.button.cancel:hover, a.bigbutton.cancel:hover, input[type=submit].cancel:hover, button.cancel:hover
background: $primary-gray
opacity: 1
a.button.secondary:hover, a.bigbutton.secondary:hover, input[type=submit].secondary:hover, button.secondary:hover
background: lighten($secondary-green, 10%)
a.bigbutton
text-transform: none
font-weight: $weight-normal
strong
display: block
text-transform: uppercase
font-weight: $weight-bold
.chromeframe
background-color: lighten($secondary-blue, 30%)
margin: 0
padding: 1em
header
background: rgba(0 , 0, 0, 0.05)
+clearfix
padding: 1em
margin: -1em
margin-bottom: 1em
p.location-date
font-size: 0.875em /* 14px / 16px = 0.875 */
color: #333
text-align: center
margin: 0
span.host
display: block
span.location
padding-right: 1em
p.tagline
font-size: 0.875em /* 14px / 16px = 0.875 */
margin: 0
margin-top: 0
color: #777
text-align: center
img#logo
display: block
max-width: 14em
margin: 0 auto 1em
+at-breakpoint(30em 6)
padding-left: 16em
padding-right: 1em
padding-top: 1.8em
img#logo
float: left
margin: -.8em 0 0 -15em
p.location-date, p.tagline
text-align: left
+at-breakpoint(45em 9)
padding-left: 22em
padding-right: 2em
padding-top: 2.8em
img#logo
max-width: 18em
margin: -1.8em 0 0 -21em
.home header
text-align: center
background-color: #fff
background-image: -moz-radial-gradient(50% 40%, circle closest-side, white, white 8em, darken(white, 5%) 11em)
background-image: -webkit-radial-gradient(50% 40%, circle closest-side, white, white 8em, darken(white, 5%) 11em)
background-image: -o-radial-gradient(50% 40%, circle closest-side, white, white 8em, darken(white, 5%) 11em)
background-image: -ms-radial-gradient(50% 40%, circle closest-side, white, white 8em, darken(white, 5%) 11em)
background-image: radial-gradient(50% 40%, circle closest-side, white, white 8em, darken(white, 5%) 11em)
margin: -1em -1em 1em
padding: 1em
img#logo
display: block
max-width: 14em
margin: 0 auto
p.tagline
color: #333
margin-bottom: 1em
p.location-date
margin-top: 1.5em
color: #777
+at-breakpoint(45em 9)
margin: 0
span.location
padding-right: 1em
p.theme
font-size: 1.125em /* 18px / 16px = 1.125 */
padding: 0 2em
color: $primary-orange
margin: 0
+at-breakpoint(30em 6)
padding: 1em
img#logo
float: none
margin: 0 auto
p.location-date, p.tagline
text-align: inherit
+at-breakpoint(45em 9)
margin: 0 1em 1em
background-image: -moz-radial-gradient(12.5em 12em, circle closest-side, white, white 8em, darken(white, 5%) 11em)
background-image: -webkit-radial-gradient(11.5em 12em, circle closest-side, white, white 9em, darken(white, 5%) 12em)
background-image: -o-radial-gradient(12.5em 12em, circle closest-side, white, white 8em, darken(white, 5%) 11em)
background-image: -ms-radial-gradient(12.5em 12em, circle closest-side, white, white 8em, darken(white, 5%) 11em)
background-image: radial-gradient(12.5em 12em, circle closest-side, white, white 8em, darken(white, 5%) 11em)
+clearfix
padding-left: 22em
padding-right: 1em
padding-top: 5em
padding-bottom: 3em
border-bottom: 1px solid #ccc
img#logo
max-width: 18em
margin: 0
margin-left: -20em
float: left
p.location-date
font-size: 1.8em
color: #333
margin-bottom: 1em
text-align: center
span.location, span.date
display: block
margin: 0
padding-right: 0
p.tagline
color: #777
font-size: 1.2em
line-height: 1.2em
padding: 0 4em
margin-bottom: 2em
float: right
text-align: center
article header
background: transparent
padding: 1em 1em 0
a.return
background: url(/img/back-triangle-999.png) no-repeat 0 0.3em
padding-left: 0.71428571428571em /* 10 / 14*/
text-transform: uppercase
font-size: 0.875em /* 14 / 16 */
font-weight: $weight-semibold
color: #999
@media only screen and (-webkit-min-device-pixel-ratio: 1.5)
background-image: url(/img/[email protected])
background-size: 5px 11px
+at-breakpoint(45em 9)
background-image: url(/img/[email protected])
background-size: 7px 15.4px
a.return:hover
color: $primary-orange
a.register
float: right
footer
background-color: rgba(0, 0, 0, 0.05)
padding: 1em
margin: 1em -1em -1em
h2
font-size: 1em
line-height: 1.4em
color: $primary-gray
font-weight: $weight-normal
margin: 0 0 1em
.twitter-follow-button
margin-bottom: 1em
+at-breakpoint(45em 7)
+clearfix
h2
+span-columns(2, 7)
font-size: 1.6em
text-align: center
.twitter-follow-button
+span-columns(5, 7)
#subscribe
+span-columns(5 omega, 7)
.home footer
+at-breakpoint(45em 7)
background-color: transparent
#promovideo
margin: 0 auto
p.note
font-size: 0.6875em /* 11 / 16 = 0.6875 */
line-height: 1.01818181818182em /* 11.2 / 11 = 1.01818181818182 */
margin-top: 0.43636363636364em /* (4.8 / 11 = 0.43636363636364 */
margin-bottom: 1em
.intro
border-bottom: 1px solid #ccc
p
color: $primary-gray
p.theme
font-style: italic
margin: 0 4em 0 2em
font-weight: $weight-semibold
color: $primary-gray
+at-breakpoint(45em 9)
#options
+clearfix
margin: 0 -1em
padding: 1em 0.5em
.home #options .item
background: white
margin: 1em 2em 2em 0
padding: 1em
float: left
max-width: 19em
h2
margin-top: 0
*:last-child
margin-bottom: 0
-webkit-box-shadow: 0px 30px 30px -30px rgba(0, 0, 0, .5)
box-shadow: 0px 30px 30px -30px rgba(0, 0, 0, .5)
.home div#speakers-toolkit.item, .home div#your-stay.item, .home div#shuttle.item
float: right
margin-right: 0
.home div#program.item, .home div#register.item, .home div#contact.item, .home div#virtual.item
float: left
.home div#sponsor-highlight.item
min-width: 100%
.home div#your-stay, .home div#speakers-toolkit, .home div#shuttle
transform: rotate(1deg)
-ms-transform: rotate(1deg) /* IE 9 */
-moz-transform: rotate(1deg) /* Firefox */
-webkit-transform: rotate(1deg) /* Safari and Chrome */
-o-transform: rotate(1deg) /* Opera */
.home div#program, .home div#register, .home div#contact, .home div#virtual
margin-right: -1em
transform: rotate(-1deg)
-ms-transform: rotate(-1deg) /* IE 9 */
-moz-transform: rotate(-1deg) /* Firefox */
-webkit-transform: rotate(-1deg) /* Safari and Chrome */
-o-transform: rotate(-1deg) /* Opera */
div#app-promo.item
display: none
.no-touch div#app-promo.item
+container
padding: 1em 1em
+at-breakpoint(30em 6)
+container
+at-breakpoint(35em 7)
+container
+at-breakpoint(45em 9)
+container
overflow: hidden
display: block
padding: 0 1em 1em
-moz-border-radius: 10px
-webkit-border-radius: 10px
border-radius: 10px
background-color: white
padding: 1em 1em 0 1em
img
float: left
display: none
margin-right: 2em
margin-top: 0
margin-left: 0
margin-bottom: 0
max-width: 4em
+at-breakpoint(30em 6)
max-width: 5em
display: block
+at-breakpoint(35em 7)
max-width: 6em
+at-breakpoint(45em 9)
margin-bottom: 1em
h2
margin: 0.1em auto
font-size: 2em
float: none
+at-breakpoint(30em 6)
margin: 0.3em auto
font-size: 1.9em
+at-breakpoint(35em 7)
margin: 0.5em auto
+at-breakpoint(45em 9)
p
float: none
max-width: 21em
margin-top: 0.2em
margin-bottom: 0
margin-right: 2em
+at-breakpoint(30em 6)
margin-top: 0
margin-bottom: 0
margin-right: 2em
font-size: 1.2em
+at-breakpoint(35em 7)
margin-top: -0.3em
margin-bottom: 0
margin-right: 2em
+at-breakpoint(45em 9)
div.headings
float: left
display: block
max-width: 18em
+at-breakpoint(30em 6)
max-width: 120em
+at-breakpoint(35em 7)
+at-breakpoint(45em 9)
div.actions
margin-top: 10px
float: left
max-width: 50em
clear: both
+at-breakpoint(30em 6)
margin-left: 7.1em
+at-breakpoint(35em 7)
margin-left: 8.1em
+at-breakpoint(45em 9)
float: left
clear: none
max-width: 15em
margin-left: 0
margin-top: 3em
div.actions .button
max-width: 60em
margin-right: 0.4em
+at-breakpoint(30em 6)
+at-breakpoint(35em 7)
+at-breakpoint(45em 9)
div.actions .cancel
margin-left: 1em
margin-right: 0
+at-breakpoint(30em 6)
+at-breakpoint(35em 7)
+at-breakpoint(45em 9)
margin-left: 0
#organizers
clear: left
background-color: $charcoal
background-image: -moz-radial-gradient(50% 50%, circle closest-side, $charcoal, $charcoal 8em, darken($charcoal, 5%) 11em)
background-image: -webkit-radial-gradient(50% 50%, circle closest-side, $charcoal, $charcoal 8em, darken($charcoal, 5%) 11em)
background-image: -o-radial-gradient(50% 50%, circle closest-side, $charcoal, $charcoal 8em, darken($charcoal, 5%) 11em)
background-image: -ms-radial-gradient(50% 50%, circle closest-side, $charcoal, $charcoal 8em, darken($charcoal, 5%) 11em)
background-image: radial-gradient(50% 50%, circle closest-side, $charcoal, $charcoal 8em, darken($charcoal, 5%) 11em)
+at-breakpoint(45em 9)
background-image: -moz-radial-gradient(50% 50%, circle closest-side, $charcoal, $charcoal 12em, darken($charcoal, 5%) 19em)
background-image: -webkit-radial-gradient(50% 50%, circle closest-side, $charcoal, $charcoal 12em, darken($charcoal, 5%) 19em)
background-image: -o-radial-gradient(50% 50%, circle closest-side, $charcoal, $charcoal 12em, darken($charcoal, 5%) 19em)
background-image: -ms-radial-gradient(50% 50%, circle closest-side, $charcoal, $charcoal 12em, darken($charcoal, 5%) 19em)
background-image: radial-gradient(50% 50%, circle closest-side, $charcoal, $charcoal 12em, darken($charcoal, 5%) 19em)
margin: 1em -1em -1em
padding: 1em
h2, p
font-size: 0.875em /* 14 / 16 = 0.875 */
line-height: 1.6em /* 22.4 / 14 = 1.6 */
color: rgba(white, 0.8)
text-align: center
clear: both
h2
font-weight: $weight-normal
.logos
max-width: 246px
margin: 0 auto
.uottawa-logo, .carleton-logo
background-image: url(/img/organizer-logos.png)
background-repeat: no-repeat
text-indent: -9999px
display: block
float: left
opacity: 0.8
-webkit-transition: opacity 0.2s linear
-moz-transition: opacity 0.2s linear
-ms-transition: opacity 0.2s linear
-o-transition: opacity 0.2s linear
transition: opacity 0.2s linear
.uottawa-logo
width: 83px
height: 72px
background-position: 0, 0
margin: 10px 23px 20px 0
.carleton-logo
width: 140px
height: 35px
background-position: -106px -22px
margin: 32px 0 15px 0
.uottawa-logo:hover, .carleton-logo:hover
opacity: 1
-webkit-transition: opacity 0.2s linear
-moz-transition: opacity 0.2s linear
-ms-transition: opacity 0.2s linear
-o-transition: opacity 0.2s linear
transition: opacity 0.2s linear
@media only screen and (-webkit-min-device-pixel-ratio: 1.5)
.uottawa-logo, .carleton-logo
background-image: url(/img/[email protected])
background-size: 246px 72px
aside.highlight
border: 2px solid $primary-orange
padding: 1em
h2
font-size: 1em
line-height: 1.4em
color: $primary-orange
margin: 0
p:last-of-type
margin-bottom: 0
aside.alternative
text-align: right
font-size: 1em
margin: 1em 0
color: #999
+at-breakpoint(45em 9)
font-size: 0.8em
#answers
h3
font-size: 1em
line-height: 1.4em
color: black
font-weight: $weight-bold
#subscribe
.subscribe-loader
background: url(/img/ajax-loader.gif) no-repeat top left
width: 12px
height: 12px
display: inline-block
#subemail
width: 100%
padding: 0.3em 0.5em
-webkit-box-sizing: border-box
-moz-box-sizing: border-box
box-sizing: border-box
margin-top: 1px
margin-bottom: 0.5em
font-size: 0.9em
+at-breakpoint(30em 8)
font-size: 1em
+span-columns(6, 8)
+at-breakpoint(35em 9)
+span-columns(7, 9)
#subsubmit
+at-breakpoint(30em 8)
+span-columns(2, 8)
+omega
+at-breakpoint(35em 9)
+span-columns(2, 9)
+omega
.error_message
margin-bottom: 1em
color: #f36f67
#success_page
h3
color: #95b257
margin: 0
h3 + p
margin-top: 0
.sponsors .current
ul li
margin-bottom: 0.3em
h2
font-size: 1.6em
color: $secondary-pink
+at-breakpoint(30em 6)
font-size: 1.8em
+at-breakpoint(35em 7)
+at-breakpoint(45em 9)
a.bigbutton
background-color: $secondary-pink
a.bigbutton:hover
background: lighten($secondary-pink, 10%)
a.button.secondary.register
background-color: $secondary-green
a.button.secondary.register:hover
background: lighten($secondary-green, 10%)
.sponsors article
h2
font-size: 1.6em
color: $secondary-pink
+at-breakpoint(30em 6)
font-size: 1.8em
+at-breakpoint(35em 7)
+at-breakpoint(45em 9)
a.bigbutton
background-color: $secondary-pink
a.bigbutton:hover
background: lighten($secondary-pink, 10%)
a.bigbutton.secondary
background-color: $secondary-blue
a.bigbutton.secondary:hover
background: lighten($secondary-blue, 10%)
a.button.secondary.register
background-color: $secondary-green
a.button.secondary.register:hover
background: lighten($secondary-green, 10%)
div#interested
+at-breakpoint(45em 9)
display: none
.level
color: $primary-gray
font-size: 0.8em
display: block
h1 .level
font-size: 0.6em
white-space: normal
display: inline
.sponsors header a.register
background-color: $secondary-pink
.sponsors header
h1
margin: 1.6em auto
img#icon
max-width: 25%
margin-top: 3.5em
margin-left: 0
margin-right: 1em
float: left
+at-breakpoint(30em 6)
margin-top: 2.4em
+at-breakpoint(35em 7)
+at-breakpoint(45em 9)
margin-top: 2em
section#description h1
margin-top: 0
font-weight: normal
article#program, article#session
.sessions
color: $primary-gray
li
margin-bottom: 0.5em
.eventname
font-weight: $weight-bold
display: block
.starttime
color: $primary-orange
display: block
.endtime
color: $primary-gray
.location
font-style: italic
color: $primary-gray
.intro
border-bottom: none
article#session
p .location
display: block
table
border-top: 1px solid lighten($primary-gray, 20%)
tbody tr th, tbody tr td
padding: 0.5em
border-bottom: 1px solid lighten($primary-gray, 20%)
tbody tr td
color: lighten($charcoal, 20%)
article#program .intro table
thead
display: none
article#program
.day-title
margin: 1em 0
h2
margin: 0
padding: 0.2em 0
border-bottom: 1px solid rgba(0,0,0,0.1)
a
color: $primary-orange
text-decoration: none
font-weight: $weight-normal
.day-title h2.fixed
position: fixed
top: 0
background: rgba(255,255,255,0.9)
width: 10.13333333333333em // 304 / 30
+at-breakpoint(30em 6)
width: 15.46666666666667em // 464 / 30
+at-breakpoint(35em 7)
width: 18.13333333333333em // 544 / 30
+at-breakpoint(45em 9)
width: 16.76190476190476em // 704 / 42
.day-title h2.absolute
position: absolute
h3
a
color: $primary-gray
text-decoration: none
font-weight: $weight-normal
.contact article, .shuttle article
h2
border-bottom: 1px solid rgba(0,0,0,0.1)
margin-bottom: 0
.subtitle
margin-top: 0
color: $primary-gray
margin-bottom: 1em
section.description
padding-left: 1em
header
h1
margin: 1.6em auto
img#icon
max-width: 25%
margin-top: 2em
margin-left: 0
margin-right: 1em
float: left
header h1
font-size: 2em
+at-breakpoint(30em 6)
font-size: 2.5em
+at-breakpoint(35em 7)
font-size: 2.5em
+at-breakpoint(45em 9)
font-size: 2em
#notice
background-color: #fca045
display: block
-webkit-border-radius: 10px
-moz-border-radius: 10px
border-radius: 10px
h3
color: white
padding: 20px 15px 0 15px
p
color: white
padding: 0 15px 20px 15px
img
max-width: 40%
margin: 12px 0 5px 0
float: right
.register section div:first-child
display: block
border: 1px solid #f4f4f4
-webkit-border-radius: 10px
-moz-border-radius: 10px
border-radius: 10px
-webkit-box-shadow: 0 0 5px #f4f4f4
-moz-box-shadow: 0 0 5px #f4f4f4
box-shadow: 0 0 5px #f4f4f4
-moz-transition-property: all
-webkit-transition-property: all
-o-transition-property: all
transition-property: all
-moz-transition-duration: 0.5s
-webkit-transition-duration: 0.5s
-o-transition-duration: 0.5s
transition-duration: 0.5s
margin: 15px 6px 2px 5px
background: #ffffff /* Old browsers */
/* IE9 SVG, needs conditional override of 'filter' to 'none' */
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjI4JSIgc3RvcC1jb2xvcj0iI2ZkZmRmZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjY1JSIgc3RvcC1jb2xvcj0iI2Y5ZjlmOSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmNGY0ZjQiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+)
background: -moz-linear-gradient(top, #ffffff 0%, #fdfdfd 28%, #f9f9f9 65%, #f4f4f4 100%) /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(28%,#fdfdfd), color-stop(65%,#f9f9f9), color-stop(100%,#f4f4f4)) /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #ffffff 0%,#fdfdfd 28%,#f9f9f9 65%,#f4f4f4 100%) /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #ffffff 0%,#fdfdfd 28%,#f9f9f9 65%,#f4f4f4 100%) /* Opera 11.10+ */
background: -ms-linear-gradient(top, #ffffff 0%,#fdfdfd 28%,#f9f9f9 65%,#f4f4f4 100%) /* IE10+ */
background: linear-gradient(to bottom, #ffffff 0%,#fdfdfd 28%,#f9f9f9 65%,#f4f4f4 100%) /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f4f4f4',GradientType=0 ) /* IE6-8 */
.register section div:first-child h3
color: #989a9e
font-size: 1em
margin: 1em auto
+at-breakpoint(30em 6)
font-size: 1.5em
+at-breakpoint(35em 7)
font-size: 1.5em
+at-breakpoint(45em 9)
font-size: 1.5em
.register section div:first-child img.numberIcon
max-width: 2em
margin-top: 0
margin-left: 1em
margin-right: 0.5em
margin-bottom: auto
+at-breakpoint(30em 6)
+at-breakpoint(35em 7)
+at-breakpoint(45em 9)
.register section div:first-child:hover
border: 1px solid rgba(252, 160, 69, .5)
-webkit-background-clip: padding-box
background-clip: padding-box
-webkit-box-shadow: 0 0 5px #fca045
-moz-box-shadow: 0 0 5px #fca045
box-shadow: 0 0 5px #fca045
-moz-transition-property: all
-webkit-transition-property: all
-o-transition-property: all
transition-property: all
-moz-transition-duration: 0.5s
-webkit-transition-duration: 0.5s
-o-transition-duration: 0.5s
transition-duration: 0.5s
.register h3.or
text-align: center
.register section a
text-decoration: none
.register .continue .iframe
display: none
+at-breakpoint(30em 6)
display: block
+at-breakpoint(35em 7)
display: block
+at-breakpoint(45em 9)
display: block
.touch .register .continue .iframe
display: none
+at-breakpoint(30em 6)
display: none
+at-breakpoint(35em 7)
display: none
+at-breakpoint(45em 9)
display: none
.register .continue a.bigbutton
display: block
text-align: center
margin-left: 1em
+at-breakpoint(30em 6)
display: none
+at-breakpoint(35em 7)
display: none
+at-breakpoint(45em 9)
display: none
.touch .register .continue a.bigbutton
display: block
text-align: center
+at-breakpoint(30em 6)
display: block
+at-breakpoint(35em 7)
display: block
+at-breakpoint(45em 9)
display: block
section div.iconsBoxes
display: block
width: 8em
max-width: 10em
margin: 15px 5px 2px 5px
height: 9em
float: left
border: 1px solid #f4f4f4
-webkit-border-radius: 10px
-moz-border-radius: 10px
border-radius: 10px
-webkit-box-shadow: 0 0 5px #f4f4f4
-moz-box-shadow: 0 0 5px #f4f4f4
box-shadow: 0 0 5px #f4f4f4
-moz-transition-property: all
-webkit-transition-property: all
-o-transition-property: all
transition-property: all
-moz-transition-duration: 0.5s
-webkit-transition-duration: 0.5s
-o-transition-duration: 0.5s
transition-duration: 0.5s
background: #ffffff
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjI4JSIgc3RvcC1jb2xvcj0iI2ZkZmRmZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjY1JSIgc3RvcC1jb2xvcj0iI2Y5ZjlmOSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmNGY0ZjQiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+)
background: -moz-linear-gradient(top, #ffffff 0%, #fdfdfd 28%, #f9f9f9 65%, #f4f4f4 100%)
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(28%,#fdfdfd), color-stop(65%,#f9f9f9), color-stop(100%,#f4f4f4))
background: -webkit-linear-gradient(top, #ffffff 0%,#fdfdfd 28%,#f9f9f9 65%,#f4f4f4 100%)
background: -o-linear-gradient(top, #ffffff 0%,#fdfdfd 28%,#f9f9f9 65%,#f4f4f4 100%)
background: -ms-linear-gradient(top, #ffffff 0%,#fdfdfd 28%,#f9f9f9 65%,#f4f4f4 100%)
background: linear-gradient(to bottom, #ffffff 0%,#fdfdfd 28%,#f9f9f9 65%,#f4f4f4 100%)
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f4f4f4',GradientType=0 )
img
max-width: 3.5em
display: block
margin: 18px auto
+at-breakpoint(45em 9)
margin-top: 25px
img.oneLine
margin-top: 28px
+at-breakpoint(45em 9)
margin-top: 40px
h3
font-size: 1.2em
text-align: center
+at-breakpoint(30em 6)
max-width: 10em
margin: 15px 6px 2px 6px
font-size: 1em
+at-breakpoint(35em 7)
width: 9em
height: 9em
max-width: 10em
margin: 15px 9px 2px 9px
font-size: 1em
+at-breakpoint(45em 9)
width: 8.5em
margin: 15px 11px 2px 11px
font-size: 1em