-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathscreen.css
1697 lines (1602 loc) · 39.6 KB
/
screen.css
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
/* ------------------------------------------------------------------------- */
/* Layout */
/* line 10, ../sass/screen.sass */
html, body {
height: 100%;
overflow: hidden;
}
/* line 14, ../sass/screen.sass */
body {
font-family: "Source Sans Pro", sans-serif;
font-weight: 400;
background-color: #f2f2f2;
}
/* line 19, ../sass/screen.sass */
bold, strong {
font-weight: 700;
}
/* line 22, ../sass/screen.sass */
.container {
*zoom: 1;
max-width: 19em;
_width: 19em;
margin-left: auto;
margin-right: auto;
padding-left: 1em;
padding-right: 1em;
background-color: white;
padding: 1em 1em;
}
/* line 38, ../../../../../../usr/local/Cellar/ruby/1.9.3-p286/lib/ruby/gems/1.9.1/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/general/_clearfix.scss */
.container:after {
content: "";
display: table;
clear: both;
}
@media (min-width: 30em) {
/* line 22, ../sass/screen.sass */
.container {
max-width: 29em;
margin-left: auto;
margin-right: auto;
padding-left: 1em;
padding-right: 1em;
}
/* line 38, ../../../../../../usr/local/Cellar/ruby/1.9.3-p286/lib/ruby/gems/1.9.1/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/general/_clearfix.scss */
.container:after {
content: "";
display: table;
clear: both;
}
}
@media (min-width: 35em) {
/* line 22, ../sass/screen.sass */
.container {
max-width: 34em;
margin-left: auto;
margin-right: auto;
padding-left: 1em;
padding-right: 1em;
}
/* line 38, ../../../../../../usr/local/Cellar/ruby/1.9.3-p286/lib/ruby/gems/1.9.1/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/general/_clearfix.scss */
.container:after {
content: "";
display: table;
clear: both;
}
}
@media (min-width: 45em) {
/* line 22, ../sass/screen.sass */
.container {
max-width: 44em;
margin-left: auto;
margin-right: auto;
padding-left: 1em;
padding-right: 1em;
}
/* line 38, ../../../../../../usr/local/Cellar/ruby/1.9.3-p286/lib/ruby/gems/1.9.1/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/general/_clearfix.scss */
.container:after {
content: "";
display: table;
clear: both;
}
}
@media (min-width: 45em) {
/* line 33, ../sass/screen.sass */
.home .container {
background-color: transparent;
}
}
/* line 37, ../sass/screen.sass */
article {
overflow: hidden;
}
@media (min-width: 45em) {
/* line 37, ../sass/screen.sass */
article {
font-size: 1.4em;
}
/* line 41, ../sass/screen.sass */
article header p.summary {
padding: 0.85em;
margin: -0.85em;
margin-bottom: 1em;
}
}
/* line 46, ../sass/screen.sass */
img, video, embed, object {
max-width: 100%;
}
/* line 49, ../sass/screen.sass */
article figure.right {
max-width: 100%;
}
@media (min-width: 30em) {
/* line 49, ../sass/screen.sass */
article figure.right {
max-width: 13.5em;
margin-left: 1em;
margin-bottom: 1em;
float: right;
}
}
@media (min-width: 35em) {
/* line 49, ../sass/screen.sass */
article figure.right {
max-width: 16.5em;
}
}
@media (min-width: 45em) {
/* line 49, ../sass/screen.sass */
article figure.right {
max-width: 15.5em;
}
}
@media (min-width: 35em) {
/* line 61, ../sass/screen.sass */
article figure.right.one-third {
max-width: 11em;
}
}
@media (min-width: 45em) {
/* line 61, ../sass/screen.sass */
article figure.right.one-third {
max-width: 10.33333em;
}
}
/* line 67, ../sass/screen.sass */
h1 {
font-weight: 400;
text-transform: uppercase;
color: #989a9e;
font-size: 1.875em;
line-height: 1.06667em;
margin-top: 2em;
margin-right: 3em;
}
/* line 76, ../sass/screen.sass */
h2 {
font-weight: 600;
color: #ffa23e;
font-size: 1.875em;
line-height: 1.06667em;
}
/* line 82, ../sass/screen.sass */
h3 {
color: #989a9e;
font-weight: 400;
font-size: 1.25em;
line-height: 1.2em;
}
/* line 88, ../sass/screen.sass */
a:link, a:visited {
font-weight: 700;
color: #55bed8;
}
/* line 92, ../sass/screen.sass */
a:hover {
color: #7ecee2;
}
/* line 95, ../sass/screen.sass */
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;
}
/* line 103, ../sass/screen.sass */
input[type=submit], button {
font-size: 1em;
font-weight: 700;
line-height: 1.4em;
font-family: inherit;
}
/* line 109, ../sass/screen.sass */
a.button, a.bigbutton, input[type=submit], button {
display: inline-block;
text-decoration: none;
background: #55bed8;
color: white;
padding: 0.3em 0.5em;
border: 1px solid white;
-webkit-box-shadow: 1px 3px 10px 0px rgba(0, 0, 0, 0.2);
box-shadow: 1px 3px 10px 0px rgba(0, 0, 0, 0.2);
margin-left: -1px;
text-transform: uppercase;
margin-right: 1em;
margin-bottom: 1em;
}
/* line 123, ../sass/screen.sass */
a.button + p, a.bigbutton + p, input[type=submit] + p, button + p {
margin-top: 0;
}
/* line 126, ../sass/screen.sass */
a.button.secondary, a.bigbutton.secondary, input[type=submit].secondary, button.secondary {
background: #95b257;
}
/* line 129, ../sass/screen.sass */
a.button:hover, a.bigbutton:hover, input[type=submit]:hover, button:hover {
background: #7ecee2;
}
/* line 132, ../sass/screen.sass */
a.button.cancel, a.bigbutton.cancel, input[type=submit].cancel, button.cancel {
background: #b2b4b7;
opacity: 0.8;
font-size: 0.8em;
}
/* line 137, ../sass/screen.sass */
a.button.cancel:hover, a.bigbutton.cancel:hover, input[type=submit].cancel:hover, button.cancel:hover {
background: #989a9e;
opacity: 1;
}
/* line 141, ../sass/screen.sass */
a.button.secondary:hover, a.bigbutton.secondary:hover, input[type=submit].secondary:hover, button.secondary:hover {
background: #abc27a;
}
/* line 144, ../sass/screen.sass */
a.bigbutton {
text-transform: none;
font-weight: 400;
}
/* line 147, ../sass/screen.sass */
a.bigbutton strong {
display: block;
text-transform: uppercase;
font-weight: 700;
}
/* line 152, ../sass/screen.sass */
.chromeframe {
background-color: #d1eef5;
margin: 0;
padding: 1em;
}
/* line 157, ../sass/screen.sass */
header {
background: rgba(0, 0, 0, 0.05);
overflow: hidden;
*zoom: 1;
padding: 1em;
margin: -1em;
margin-bottom: 1em;
}
/* line 163, ../sass/screen.sass */
header p.location-date {
font-size: 0.875em;
color: #333333;
text-align: center;
margin: 0;
}
/* line 168, ../sass/screen.sass */
header p.location-date span.host {
display: block;
}
/* line 170, ../sass/screen.sass */
header p.location-date span.location {
padding-right: 1em;
}
/* line 172, ../sass/screen.sass */
header p.tagline {
font-size: 0.875em;
margin: 0;
margin-top: 0;
color: #777777;
text-align: center;
}
/* line 178, ../sass/screen.sass */
header img#logo {
display: block;
max-width: 14em;
margin: 0 auto 1em;
}
@media (min-width: 30em) {
/* line 157, ../sass/screen.sass */
header {
padding-left: 16em;
padding-right: 1em;
padding-top: 1.8em;
}
/* line 187, ../sass/screen.sass */
header img#logo {
float: left;
margin: -0.8em 0 0 -15em;
}
/* line 190, ../sass/screen.sass */
header p.location-date, header p.tagline {
text-align: left;
}
}
@media (min-width: 45em) {
/* line 157, ../sass/screen.sass */
header {
padding-left: 22em;
padding-right: 2em;
padding-top: 2.8em;
}
/* line 197, ../sass/screen.sass */
header img#logo {
max-width: 18em;
margin: -1.8em 0 0 -21em;
}
}
/* line 201, ../sass/screen.sass */
.home header {
text-align: center;
background-color: white;
background-image: -moz-radial-gradient(50% 40%, circle closest-side, white, white 8em, #f2f2f2 11em);
background-image: -webkit-radial-gradient(50% 40%, circle closest-side, white, white 8em, #f2f2f2 11em);
background-image: -o-radial-gradient(50% 40%, circle closest-side, white, white 8em, #f2f2f2 11em);
background-image: -ms-radial-gradient(50% 40%, circle closest-side, white, white 8em, #f2f2f2 11em);
background-image: radial-gradient(50% 40%, circle closest-side, #ffffff, #ffffff 8em, #f2f2f2 11em);
margin: -1em -1em 1em;
padding: 1em;
}
/* line 213, ../sass/screen.sass */
.home header img#logo {
display: block;
max-width: 14em;
margin: 0 auto;
}
/* line 218, ../sass/screen.sass */
.home header p.tagline {
color: #333333;
margin-bottom: 1em;
}
/* line 221, ../sass/screen.sass */
.home header p.location-date {
margin-top: 1.5em;
color: #777777;
}
@media (min-width: 45em) {
/* line 221, ../sass/screen.sass */
.home header p.location-date {
margin: 0;
}
}
/* line 226, ../sass/screen.sass */
.home header span.location {
padding-right: 1em;
}
/* line 229, ../sass/screen.sass */
.home header p.theme {
font-size: 1.125em;
padding: 0 2em;
color: #ffa23e;
margin: 0;
}
@media (min-width: 30em) {
/* line 201, ../sass/screen.sass */
.home header {
padding: 1em;
}
/* line 238, ../sass/screen.sass */
.home header img#logo {
float: none;
margin: 0 auto;
}
/* line 241, ../sass/screen.sass */
.home header p.location-date, .home header p.tagline {
text-align: inherit;
}
}
@media (min-width: 45em) {
/* line 201, ../sass/screen.sass */
.home header {
margin: 0 1em 1em;
background-image: -moz-radial-gradient(12.5em 12em, circle closest-side, white, white 8em, #f2f2f2 11em);
background-image: -webkit-radial-gradient(11.5em 12em, circle closest-side, white, white 9em, #f2f2f2 12em);
background-image: -o-radial-gradient(12.5em 12em, circle closest-side, white, white 8em, #f2f2f2 11em);
background-image: -ms-radial-gradient(12.5em 12em, circle closest-side, white, white 8em, #f2f2f2 11em);
background-image: radial-gradient(12.5em 12em, circle closest-side, #ffffff, #ffffff 8em, #f2f2f2 11em);
overflow: hidden;
padding-left: 22em;
padding-right: 1em;
padding-top: 5em;
padding-bottom: 3em;
border-bottom: 1px solid #cccccc;
}
/* line 259, ../sass/screen.sass */
.home header img#logo {
max-width: 18em;
margin: 0;
margin-left: -20em;
float: left;
}
/* line 264, ../sass/screen.sass */
.home header p.location-date {
font-size: 1.8em;
color: #333333;
margin-bottom: 1em;
text-align: center;
}
/* line 269, ../sass/screen.sass */
.home header p.location-date span.location, .home header p.location-date span.date {
display: block;
margin: 0;
padding-right: 0;
}
/* line 273, ../sass/screen.sass */
.home header p.tagline {
color: #777777;
font-size: 1.2em;
line-height: 1.2em;
padding: 0 4em;
margin-bottom: 2em;
float: right;
text-align: center;
}
}
/* line 282, ../sass/screen.sass */
article header {
background: transparent;
padding: 1em 1em 0;
}
/* line 285, ../sass/screen.sass */
article header a.return {
background: url(/img/back-triangle-999.png) no-repeat 0 0.3em;
padding-left: 0.71429em;
text-transform: uppercase;
font-size: 0.875em;
font-weight: 600;
color: #999999;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5) {
/* line 285, ../sass/screen.sass */
article header a.return {
background-image: url(/img/[email protected]);
background-size: 5px 11px;
}
}
@media (min-width: 45em) {
/* line 285, ../sass/screen.sass */
article header a.return {
background-image: url(/img/[email protected]);
background-size: 7px 15.4px;
}
}
/* line 298, ../sass/screen.sass */
article header a.return:hover {
color: #ffa23e;
}
/* line 301, ../sass/screen.sass */
footer {
background-color: rgba(0, 0, 0, 0.05);
padding: 1em;
margin: 1em -1em -1em;
}
/* line 305, ../sass/screen.sass */
footer h2 {
font-size: 1em;
line-height: 1.4em;
color: #989a9e;
font-weight: 400;
margin: 0 0 1em;
}
/* line 311, ../sass/screen.sass */
footer .twitter-follow-button {
margin-bottom: 1em;
}
/* line 313, ../sass/screen.sass */
footer .linkedin-follow-button {
float: none;
}
/* line 315, ../sass/screen.sass */
footer .linkedin-follow-button img {
width: 182px;
height: 28px;
}
@media (min-width: 30em) {
/* line 313, ../sass/screen.sass */
footer .linkedin-follow-button {
float: right;
}
}
@media (min-width: 45em) {
/* line 301, ../sass/screen.sass */
footer {
overflow: hidden;
}
/* line 322, ../sass/screen.sass */
footer h2 {
width: 26.47059%;
float: left;
margin-right: 2.94118%;
font-size: 1.6em;
text-align: center;
}
/* line 326, ../sass/screen.sass */
footer .twitter-follow-button {
width: 70.58824%;
float: left;
margin-right: 2.94118%;
}
/* line 328, ../sass/screen.sass */
footer #subscribe {
width: 70.58824%;
float: right;
margin-right: 0;
}
}
@media (min-width: 45em) {
/* line 331, ../sass/screen.sass */
.home footer {
background-color: transparent;
}
}
/* line 335, ../sass/screen.sass */
#promovideo {
margin: 0 auto;
}
/* line 338, ../sass/screen.sass */
p.note {
font-size: 0.6875em;
line-height: 1.01818em;
margin-top: 0.43636em;
margin-bottom: 1em;
}
/* line 344, ../sass/screen.sass */
.intro {
border-bottom: 1px solid #cccccc;
}
/* line 346, ../sass/screen.sass */
.intro p {
color: #989a9e;
}
/* line 349, ../sass/screen.sass */
p.theme {
font-style: italic;
margin: 0 4em 0 2em;
font-weight: 600;
color: #989a9e;
}
@media (min-width: 45em) {
/* line 356, ../sass/screen.sass */
#options {
overflow: hidden;
margin: 0 -1em;
padding: 1em 0.5em;
}
/* line 360, ../sass/screen.sass */
.home #options .item {
background: white;
margin: 1em 2em 2em 0;
padding: 1em;
float: left;
max-width: 19em;
-webkit-box-shadow: 0px 30px 30px -30px rgba(0, 0, 0, 0.5);
box-shadow: 0px 30px 30px -30px rgba(0, 0, 0, 0.5);
}
/* line 366, ../sass/screen.sass */
.home #options .item h2 {
margin-top: 0;
}
/* line 368, ../sass/screen.sass */
.home #options .item *:last-child {
margin-bottom: 0;
}
/* line 372, ../sass/screen.sass */
.home div#program.item {
float: right;
margin-right: 0;
}
/* line 375, ../sass/screen.sass */
.home div#baggage-check.item {
float: left;
}
/* line 377, ../sass/screen.sass */
.home div#stay-in-touch.item {
float: left;
}
/* line 380, ../sass/screen.sass */
.home div#now.item #events {
overflow: scroll;
margin-bottom: 1em;
}
/* line 383, ../sass/screen.sass */
.home div#sponsor-highlight.item {
min-width: 100%;
}
}
/* line 387, ../sass/screen.sass */
.home div#stay-in-touch.item .twitter-follow-button, .home div#stay-in-touch.item .linkedin-follow-button {
margin: 10px 0;
display: block;
}
/* line 391, ../sass/screen.sass */
#organizers {
clear: left;
background-color: #303030;
background-image: -moz-radial-gradient(50% 50%, circle closest-side, #303030, #303030 8em, #232323 11em);
background-image: -webkit-radial-gradient(50% 50%, circle closest-side, #303030, #303030 8em, #232323 11em);
background-image: -o-radial-gradient(50% 50%, circle closest-side, #303030, #303030 8em, #232323 11em);
background-image: -ms-radial-gradient(50% 50%, circle closest-side, #303030, #303030 8em, #232323 11em);
background-image: radial-gradient(50% 50%, circle closest-side, #303030, #303030 8em, #232323 11em);
margin: 1em -1em -1em;
padding: 1em;
}
@media (min-width: 45em) {
/* line 391, ../sass/screen.sass */
#organizers {
background-image: -moz-radial-gradient(50% 50%, circle closest-side, #303030, #303030 12em, #232323 19em);
background-image: -webkit-radial-gradient(50% 50%, circle closest-side, #303030, #303030 12em, #232323 19em);
background-image: -o-radial-gradient(50% 50%, circle closest-side, #303030, #303030 12em, #232323 19em);
background-image: -ms-radial-gradient(50% 50%, circle closest-side, #303030, #303030 12em, #232323 19em);
background-image: radial-gradient(50% 50%, circle closest-side, #303030, #303030 12em, #232323 19em);
}
}
/* line 409, ../sass/screen.sass */
#organizers h2, #organizers p {
font-size: 0.875em;
line-height: 1.6em;
color: rgba(255, 255, 255, 0.8);
text-align: center;
clear: both;
}
/* line 415, ../sass/screen.sass */
#organizers h2 {
font-weight: 400;
}
/* line 417, ../sass/screen.sass */
#organizers .logos {
max-width: 246px;
margin: 0 auto;
}
/* line 420, ../sass/screen.sass */
#organizers .uottawa-logo, #organizers .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;
}
/* line 432, ../sass/screen.sass */
#organizers .uottawa-logo {
width: 83px;
height: 72px;
background-position: 0, 0;
margin: 10px 23px 20px 0;
}
/* line 437, ../sass/screen.sass */
#organizers .carleton-logo {
width: 140px;
height: 35px;
background-position: -106px -22px;
margin: 32px 0 15px 0;
}
/* line 442, ../sass/screen.sass */
#organizers .uottawa-logo:hover, #organizers .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) {
/* line 450, ../sass/screen.sass */
#organizers .uottawa-logo, #organizers .carleton-logo {
background-image: url(/img/[email protected]);
background-size: 246px 72px;
}
}
/* line 454, ../sass/screen.sass */
aside.highlight {
border: 2px solid #ffa23e;
padding: 1em;
}
/* line 457, ../sass/screen.sass */
aside.highlight h2 {
font-size: 1em;
line-height: 1.4em;
color: #ffa23e;
margin: 0;
}
/* line 462, ../sass/screen.sass */
aside.highlight p:last-of-type {
margin-bottom: 0;
}
/* line 465, ../sass/screen.sass */
aside.alternative {
text-align: right;
font-size: 1em;
margin: 1em 0;
color: #999999;
}
@media (min-width: 45em) {
/* line 465, ../sass/screen.sass */
aside.alternative {
font-size: 0.8em;
}
}
/* line 474, ../sass/screen.sass */
#answers h3 {
font-size: 1em;
line-height: 1.4em;
color: black;
font-weight: 700;
}
/* line 481, ../sass/screen.sass */
#subscribe .subscribe-loader, #subscribe-home .subscribe-loader {
background: url(/img/ajax-loader.gif) no-repeat top left;
width: 12px;
height: 12px;
display: inline-block;
}
/* line 486, ../sass/screen.sass */
#subscribe #subemail, #subscribe #subemail-home, #subscribe-home #subemail, #subscribe-home #subemail-home {
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;
}
@media (min-width: 30em) {
/* line 486, ../sass/screen.sass */
#subscribe #subemail, #subscribe #subemail-home, #subscribe-home #subemail, #subscribe-home #subemail-home {
font-size: 1em;
width: 74.35897%;
float: left;
margin-right: 2.5641%;
}
}
@media (min-width: 35em) {
/* line 486, ../sass/screen.sass */
#subscribe #subemail, #subscribe #subemail-home, #subscribe-home #subemail, #subscribe-home #subemail-home {
width: 77.27273%;
float: left;
margin-right: 2.27273%;
}
}
/* line 500, ../sass/screen.sass */
#subscribe #subemail-home, #subscribe-home #subemail-home {
margin-bottom: 10px;
display: block;
}
@media (min-width: 30em) {
/* line 503, ../sass/screen.sass */
#subscribe #subsubmit, #subscribe #subsubmit-home, #subscribe-home #subsubmit, #subscribe-home #subsubmit-home {
width: 23.07692%;
float: left;
margin-right: 2.5641%;
float: right;
margin-right: 0;
}
}
@media (min-width: 35em) {
/* line 503, ../sass/screen.sass */
#subscribe #subsubmit, #subscribe #subsubmit-home, #subscribe-home #subsubmit, #subscribe-home #subsubmit-home {
width: 20.45455%;
float: left;
margin-right: 2.27273%;
float: right;
margin-right: 0;
}
}
/* line 510, ../sass/screen.sass */
#subscribe .error_message, #subscribe-home .error_message {
margin-bottom: 1em;
color: #f36f67;
}
/* line 514, ../sass/screen.sass */
#subscribe #success_page h3, #subscribe #success_page-home h3, #subscribe-home #success_page h3, #subscribe-home #success_page-home h3 {
color: #95b257;
margin: 0;
}
/* line 517, ../sass/screen.sass */
#subscribe #success_page h3 + p, #subscribe #success_page-home h3 + p, #subscribe-home #success_page h3 + p, #subscribe-home #success_page-home h3 + p {
margin-top: 0;
}
/* line 521, ../sass/screen.sass */
.sponsors .current ul li {
margin-bottom: 0.3em;
}
/* line 523, ../sass/screen.sass */
.sponsors .current h2 {
font-size: 1.6em;
color: #f36f67;
}
@media (min-width: 30em) {
/* line 523, ../sass/screen.sass */
.sponsors .current h2 {
font-size: 1.8em;
}
}
/* line 531, ../sass/screen.sass */
.sponsors .current a.bigbutton {
background-color: #f36f67;
}
/* line 534, ../sass/screen.sass */
.sponsors .current a.bigbutton:hover {
background: #f79c96;
}
/* line 538, ../sass/screen.sass */
.sponsors article h2 {
font-size: 1.6em;
color: #f36f67;
}
@media (min-width: 30em) {
/* line 538, ../sass/screen.sass */
.sponsors article h2 {
font-size: 1.8em;
}
}
/* line 546, ../sass/screen.sass */
.sponsors article a.bigbutton {
background-color: #f36f67;
}
/* line 549, ../sass/screen.sass */
.sponsors article a.bigbutton:hover {
background: #f79c96;
}
/* line 552, ../sass/screen.sass */
.sponsors article a.bigbutton.secondary {
background-color: #55bed8;
}
/* line 555, ../sass/screen.sass */
.sponsors article a.bigbutton.secondary:hover {
background: #7ecee2;
}
@media (min-width: 45em) {
/* line 558, ../sass/screen.sass */
.sponsors article div#interested {
display: none;
}
}
/* line 564, ../sass/screen.sass */
.sponsors article .level {
color: #989a9e;
font-size: 0.8em;
display: block;
}
/* line 568, ../sass/screen.sass */
.sponsors article h1 .level {
font-size: 0.6em;
white-space: normal;
display: inline;
}
/* line 575, ../sass/screen.sass */
.sponsors header h1 {
margin: 1.6em auto;
}
/* line 577, ../sass/screen.sass */
.sponsors header img#icon {
max-width: 25%;
margin-top: 3.5em;
margin-left: 0;
margin-right: 1em;
float: left;
}
@media (min-width: 30em) {
/* line 577, ../sass/screen.sass */
.sponsors header img#icon {
margin-top: 2.4em;
}
}
@media (min-width: 45em) {
/* line 577, ../sass/screen.sass */
.sponsors header img#icon {
margin-top: 2em;
}
}
/* line 589, ../sass/screen.sass */
section#description h1 {
margin-top: 0;
font-weight: normal;
}
/* line 593, ../sass/screen.sass */
article#program .sessions, article#session .sessions, .home #events .sessions {
color: #989a9e;
}
/* line 595, ../sass/screen.sass */
article#program .sessions li, article#session .sessions li, .home #events .sessions li {
margin-bottom: 0.5em;
}
/* line 597, ../sass/screen.sass */
article#program .eventname, article#session .eventname, .home #events .eventname {
font-weight: 700;
display: block;
}
/* line 600, ../sass/screen.sass */
article#program .starttime, article#session .starttime, .home #events .starttime {
color: #989a9e;
}
/* line 602, ../sass/screen.sass */
article#program .endtime, article#session .endtime, .home #events .endtime {
color: #989a9e;
}
/* line 604, ../sass/screen.sass */
article#program .location, article#session .location, .home #events .location {
font-style: italic;
color: #989a9e;
}
/* line 607, ../sass/screen.sass */
article#program .intro, article#session .intro, .home #events .intro {
border-bottom: none;
}
/* line 610, ../sass/screen.sass */
article#session header h1 {
margin-bottom: 0;
}
/* line 612, ../sass/screen.sass */
article#session aside {
background: #55bed8;
color: white;
padding: 0.3em 0.5em 0.2em;
font-size: 1.2em;
line-height: 1.2em;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
}
/* line 621, ../sass/screen.sass */
article#session aside a {
color: white;
}
/* line 623, ../sass/screen.sass */
article#session aside.video_workshop_so_no, article#session aside.video_bof_so_no, article#session aside.video_not_allowed, article#session aside.video_glitch, article#session aside.video_cancelled {
background: #989a9e;
}
/* line 626, ../sass/screen.sass */