-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
executable file
·1594 lines (1494 loc) · 34.3 KB
/
style.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
/*
Theme Name: VcA Pool
Theme URI: http://nekkidgrandma.com
Description:
Version: 1.5
Author: Johannes Pilkahn
Author URI: http://nekkidgrandma.com
Author Email: [email protected]
Tags: 1140px Grid, 21px Baseline Grid, Fluid down to mobile
*/
/* COLOR PALETTE
-----------------------------------------
1. VCA 2014
2. Goldeimer
3. VCA 2009 - 2013
1. VCA 2014
----------------------
blue100: #008fc1
blue75: #00a8cf
blue50: #7ec5e0
blue25: #c4e3f0
2. Goldeimer
----------------------
logo: #211e1e
red: #f1452a
green: #c4f3e2
yellow: #fff200
blue: #00adef
3. VCA 2009 - 2013
----------------------
blue100: #008fc1
blue75: #00a8cf
blue50: #7ec5e0
blue25: #c4e3f0
darkblue100: #002a3d
darkblue75: #00586c
darkblue50: #588b9b
darkblue25: #a9c4ce
lightblue100: #a4d8e3
lightblue75: #bee3eb
lightblue50: #d5ecf1
lightblue25: #ebf7f9
pink100: #e2007a
pink75: #e9619c
pink50: #f19fc1
pink25: #f9d3e3
darkbrown100: #584619
darkbrown75: #857043
darkbrown50: #b09e79
darkbrown25: #d9cdb8
lightbrown100: #bba259
lightbrown75: #ccb882
lightbrown50: #ddd0ac
lightbrown25: #eee7d5
beige100: #e3cf9a
beige75: #ebdbb3
beige50: #f1e6cc
beige25: #f9f3e6
grey100: #646567
grey75: #8f9092
grey50: #b6b7b9
grey25: #dcdcdd
lightgrey100: #c5c6c8
lightgrey100: #d5d6d7
lightgrey100: #e3e4e5
lightgrey100: #fafafa
*/
/* SCREEN SIZES
-----------------------------------------
largest screen > 1280 px
large legacy-screen <= 1280 px
grid-width grid-width 1140px
medium tablet <= 1024 px
small mobile <= 767 px
smallest legacy-mobile <= 480 px
*/
/* FONT-FACE
----------------------------------------- */
@font-face {
font-family: GS;
src: url('fonts/GS200.eot');
src: url('fonts/GS200.eot?#iefix') format('embedded-opentype'),
url('fonts/GS200.woff') format('woff'),
url('fonts/GS200.ttf') format('truetype'),
url('fonts/GS200.svg#GS200') format('svg');
font-weight: 200;
font-style: normal;
}
@font-face {
font-family: GS;
src: url('fonts/GS400.eot');
src: url('fonts/GS400.eot?#iefix') format('embedded-opentype'),
url('fonts/GS400.woff') format('woff'),
url('fonts/GS400.ttf') format('truetype'),
url('fonts/GS400.svg#GS400') format('svg');
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: GS;
src: url('fonts/GS700.eot');
src: url('fonts/GS700.eot?#iefix') format('embedded-opentype'),
url('fonts/GS700.woff') format('woff'),
url('fonts/GS700.ttf') format('truetype'),
url('fonts/GS700.svg#GS700') format('svg');
font-weight: 700;
font-style: normal;
}
@font-face {
font-family: GS;
src: url('fonts/GSI400.eot');
src: url('fonts/GSI400.eot?#iefix') format('embedded-opentype'),
url('fonts/GSI400.woff') format('woff'),
url('fonts/GSI400.ttf') format('truetype'),
url('fonts/GSI400.svg#GSI400') format('svg');
font-weight: 400;
font-style: italic;
}
@font-face {
font-family: GSC;
src: url('fonts/GSC400.eot');
src: url('fonts/GSC400.eot?#iefix') format('embedded-opentype'),
url('fonts/GSC400.woff') format('woff'),
url('fonts/GSC400.ttf') format('truetype'),
url('fonts/GSC400.svg#GSC400') format('svg');
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: GSC;
src: url('fonts/GSC700.eot');
src: url('fonts/GSC700.eot?#iefix') format('embedded-opentype'),
url('fonts/GSC700.woff') format('woff'),
url('fonts/GSC700.ttf') format('truetype'),
url('fonts/GSC700.svg#GSC700') format('svg');
font-weight: 700;
font-style: normal;
}
/* LAYOUT & BG
----------------------------------------- */
html {
background: #fafafa;
overflow: hidden;
-webkit-overflow-scrolling: touch;
-webkit-tap-highlight-color: rgba(0,0,0,0);
-webkit-tap-highlight-color: transparent;
-webkit-text-size-adjust: none;
-ms-text-size-adjust: none;
}
body {
background: #fafafa;
font-size: 10px !important;
}
div.wrapper {
min-height: 100%;
height: auto !important;
height: 100%;
margin: 0 0 -7.9em;
position: relative;
}
div.content-wrap-wrap {
margin: 0 2em 1em 2em;
flex-grow: 1;
display: flex;
overflow: auto;
}
div.content-wrap .navigation {
display: none !important;
}
div.content-wrap {
width: 100%;
max-width: 1280px;
position: relative;
margin: 0 auto;
}
div.navigation {
width: 15em;
position: absolute;
top: 0;
left: 0;
}
div.content-container {
padding: 0;
}
div.content-container.margin-container {
margin-left: 15em;
}
div.push {
height: 3.6em;
position: relative;
margin: 4.2em 0 0;
}
/* HEADER & NAVIGATION
----------------------------------------- */
header {
margin: 0;
position: relative;
}
header .grid-container {
padding: 0.5em 0;
background-color: blue;
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 3px 10px 0 rgba(0, 0, 0, 0.19);
-moz-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 3px 10px 0 rgba(0, 0, 0, 0.19);
-webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 3px 10px 0 rgba(0, 0, 0, 0.19);
border-bottom: 1px solid #c5c6c8;
}
header .grid-container.mobile {
min-height: 6.4em;
}
header .grid-row {
padding: 1em 0 1em;
position: relative;
}
header div.bottom {
height: 4.2em;
width: 100%;
/* IE9 SVG, needs conditional override of 'filter' to 'none' */
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMCIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
/* FF3.6+ */
background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
/* Chrome, Safari4+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(255,255,255,0)));
/* Chrome10+, Safari5.1+ */
background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
/* Opera 11.10+ */
background: -o-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
/* IE10+ */
background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
/* W3C */
background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
/* IE6-8 */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=0 );
}
.ie9 header div.bottom,
.ie10 header div.bottom {
filter: none;
}
.user-menu {
font-family: GS, Verdana, Geneva, Helvetica, Arial, sans-serif;
font-size: 1.4em;
font-weight: 700;
line-height: 2.286;
text-transform: uppercase;
color: #ebf7f9;
margin-top: .143em;
}
.user-menu {
float: right;
}
.user-menu img.avatar {
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
.nav-break {
/* border-right: 1px solid #ffffff; */
padding-left: 1em;
margin-right: 1em;
}
.user-menu a:focus,
.user-menu a:active,
.no-touch .user-menu a:hover {
color: #ffffff;
text-shadow: 0 0 5px #e3cf9a;
}
.user-menu .current-menu-item {
color: #ffffff;
text-shadow: 0 0 5px #e9619c;
}
.user-menu .current-menu-item:focus,
.user-menu .current-menu-item:active,
.no-touch .user-menu .current-menu-item:hover {
text-shadow: 0 0 5px #e9619c;
cursor: default;
}
.user-menu .avatar-32 {
margin: 0 8px 0 0;
}
.logout-button {
width: 11px;
height: 14px;
overflow: hidden;
position: relative;
display: inline-block;
margin: 0 0 -1px;
}
.logout-button img {
position: absolute;
height: 28px;
width: 11px;
top: 0;
left: 0;
}
.logout-button a:hover img {
top: -14px;
left: 0;
}
div.navigation nav {
width: 8.7em;
padding: 0 2.1em 0 0;
border-right: 1px solid #c5c6c8;
}
div.navigation ul.menu>li {
margin-bottom: 2.8em;
}
div.navigation ul.menu li:last-child {
margin-bottom: 0;
}
div.navigation ul.sub-menu li {
margin-top: 1em;
}
div.navigation ul {
font-family: GS, Verdana, Geneva, Helvetica, Arial, sans-serif;
font-weight: 700;
line-height: 1;
text-align: right;
text-transform: uppercase;
color: #008fc1;
}
div.navigation ul.menu a {
font-size: 1.4em;
}
div.navigation ul.sub-menu a {
font-size: 1.1em;
}
.no-touch div.navigation ul a:hover,
div.navigation ul a:focus,
div.navigation ul a:active {
text-decoration: none;
padding-right: .5em;
}
.no-touch div.navigation ul.sub-menu a:hover,
div.navigation ul.sub-menu a:focus,
div.navigation ul.sub-menu a:active {
text-decoration: none;
padding-right: .636363em;
}
div.navigation li.current-menu-item>a {
color: #00586c;
text-shadow: 0 0 3px #008fc1;
}
div.navigation li.current-menu-item>a:hover,
div.navigation li.current-menu-item>a:active,
div.navigation li.current-menu-item>a:focus {
padding-right: 0;
}
@media only screen and (min-height: 600px) and (min-width: 767px) {
/* header {
position: fixed;
width: 100%;
z-index: 1000;
}
div.content-wrap-wrap {
padding-top: 13.1em;
z-index: 1;
}*/
div.navigation nav {
position: fixed;
}
}
/* TYPOGRAPHY
----------------------------------------- */
body {
font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
color:#020b0e;
}
p {
font-size: 1.4em;
margin-bottom: 1.5em;
line-height: 1.5;
}
h1,
h2 {
font-family: GSC, Helvetica, Arial, Verdana, Geneva, sans-serif;
color: #008fc1;
text-transform: uppercase;
font-size: 3.2em;
font-weight: 700;
line-height: 1;
margin: -.125em 0 .4375em;
}
h3 {
font-family: GS, Verdana, Geneva, Helvetica, Arial, sans-serif;
color: #008fc1;
text-transform: uppercase;
font-weight: 700;
font-size: 1.8em;
line-height: 1.1666667;
margin-bottom: 1.16666667em;
}
a {
color: inherit;
}
p a {
border-bottom: 1px dotted #008fc1;
}
.no-touch p a:hover,
p a:active,
p a:focus {
color: #008fc1;
text-shadow: 0 0 1px #008fc1;
border-color: #e2007a;
}
::-moz-selection {
background: #c4e3f0;
color: #00586c;
text-shadow: none;
}
::selection {
background: #c4e3f0;
color: #00586c;
text-shadow: none;
}
.highlight {
color: #e2007a;
}
/* BASELINE GRID, ASSETS
----------------------------------------- */
.content-container img,
.content-container object,
.content-container embed,
.content-container iframe {
margin: 0 0 2.1em;
}
.content-container p img,
.content-container p object,
.content-container p embed,
.content-container p iframe {
margin: .25em 0 0 .5em;
float: right;
}
.content-container p img.align-left,
.content-container p object.align-left,
.content-container p embed.align-left,
.content-container p iframe.align-left {
margin: .25em .5em 0 0;
float: left;
}
/* TABLES
----------------------------------------- */
table {
width: 100%;
font-size: 1.4em;
margin-bottom: 1.5em;
line-height: 1.5;
}
th {
font-weight: 700;
}
.padded-cell {
padding: 0 1em 0 0;
}
table.meta-table,
table.options-table {
font-size: 1em;
margin: 0;
}
p.label {
color: #333333;
font-style: italic;
line-height: 1;
font-size: 1em;
margin: 1.1em 0 0;
}
p.metadata {
font-size: 1.2em;
line-height: 1.75;
margin: 0;
}
/* FORMS
----------------------------------------- */
.form-row {
width: 100%;
display: block;
margin: 0 0 1.7em;
overflow:hidden;
}
.trap-row {
display: none !important;
visibility: hidden !important;
}
label {
font-family: GS, Helvetica, Arial, Verdana, Geneva, sans-serif;
cursor: pointer;
font-size: 1.4em;
line-height: 1.5;
color: #002a3d;
padding: 0 0 0 4px;
}
label.warning {
color: #e2007a !important;
}
.form-row p {
padding: 0;
}
.form-row p.description {
padding: .25em 0 .75em;
margin: 0;
font-style: italic;
font-size: 1.2em;
line-height: 1.75;
clear: both;
}
input,
textarea,
select {
font-family: GS, Verdana, Geneva, Helvetica, Arial, sans-serif;
font-size: 1.4em;
line-height: 1.5;
vertical-align: baseline;
background: #c4e3f0;
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#c4e3f0), color-stop(100%,#ffffff));
background: -webkit-linear-gradient(top, #c4e3f0 0%,#ffffff 100%);
background: -moz-linear-gradient(top, #c4e3f0 0%, #ffffff 100%);
background: -ms-linear-gradient(top, #c4e3f0 0%,#ffffff 100%);
background: -o-linear-gradient(top, #c4e3f0 0%,#ffffff 100%);
background: linear-gradient(top, #c4e3f0 0%,#ffffff 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c4e3f0', endColorstr='#ffffff',GradientType=0 );
border: 2px solid #008fc1;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
.form-row input,
.form-row textarea {
padding: 0 .2143em;
display: block;
width: 100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
select {
padding: 1px 5px;
}
.ie9 input,
.ie9 textarea,
.ie9 select {
filter: none;
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2M0ZTNmMCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+); /* IE9 */
}
input:focus,
textarea:focus {
background: #ffffff;
}
input:invalid,
textarea:invalid {
background: #f0dddd;
}
.button,
button,
input[type="submit"],
input[type="button"] {
border: none;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
padding: .375em .625em .125em .625em;
color: #008fc1;
font-weight: 700;
font-size: 1.6em;
text-transform: uppercase;
background: #7ec5e0;
-webkit-box-shadow: inset 0 1px 2px #bee3eb,
0 1px 2px #00a8cf;
-moz-box-shadow: inset 0 1px 2px #bee3eb,
0 1px 2px #00a8cf;
box-shadow: inset 0 1px 2px #bee3eb,
0 1px 2px #00a8cf;
margin: .4375em 0;
}
.no-touch button:hover,
.no-touch input[type="submit"]:hover,
.no-touch input[type="button"]:hover {
text-shadow: 0 0 3px #ffffff;
}
button:active,
input[type="submit"]:active,
input[type="button"]:active {
color: #008fc1;
background: #7ec5e0;
-webkit-box-shadow: inset 0 2px 4px #008fc1,
0 1px 0 #ebf7f9;
-mox-box-shadow: inset 0 2px 4px #008fc1,
0 1px 0 #ebf7f9;
box-shadow: inset 0 2px 4px #008fc1,
0 1px 0 #ebf7f9;
}
.form-row button,
.form-row input[type=submit],
.form-row input[type=checkbox],
.form-row input[type=radio] {
width: auto;
}
.form-row input[type=checkbox] {
margin: .4em 0;
}
.check-row {
margin-top: .4em;
}
span.box-test + input[type=checkbox],
span.box-test + input[type=radio] {
display:none !important;
}
input[type=checkbox] + label span.box,
input[type=radio] + label span.box {
height: 16px;
width: 16px;
float: left;
margin: 0 7px 0 0;
background: #c4e3f0;
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#c4e3f0), color-stop(100%,#ffffff)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #c4e3f0 0%,#ffffff 100%); /* Chrome10+,Safari5.1+ */
background: -moz-linear-gradient(top, #c4e3f0 0%, #ffffff 100%); /* FF3.6+ */
background: -ms-linear-gradient(top, #c4e3f0 0%,#ffffff 100%); /* IE10+ */
background: -o-linear-gradient(top, #c4e3f0 0%,#ffffff 100%); /* Opera 11.10+ */
background: linear-gradient(top, #c4e3f0 0%,#ffffff 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c4e3f0', endColorstr='#ffffff',GradientType=0 ); /* IE6-8 */
border: 2px solid #008fc1;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
.ie9 input[type=checkbox] + label span.box,
.ie9 input[type=radio] + label span.box {
filter: none;
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2M0ZTNmMCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+); /* IE9 */
}
input[type=checkbox]:checked + label span.box {
background: #fff url(images/check.png) 1px 1px no-repeat;
}
input[type=radio]:checked + label span.box {
background: #fff url(images/x.png) 1px 1px no-repeat;
}
.form-row select {
float: right;
margin-bottom: .785714286em;
}
/* EMBEDDED CONTENT
----------------------------------------- */
iframe {
border: 2px solid #215e21;
}
/* LISTS
----------------------------------------- */
ul.list li {
list-style-type: disc;
}
ul.list ul li {
list-style-type: circle;
}
ul.list ul ul li {
list-style-type: square;
}
ol.list li,
ul.list ol li {
list-style-type: decimal;
}
ol.list ol li {
list-style-type: lower-alpha;
}
ol.list ol ol li {
list-style-type: lower-roman;
}
ul.list,
ol.list {
font-size: 1.4em;
margin-bottom: 1.5em;
line-height: 1.5;
}
ul.list li,
ul.list ul li,
ul.list ul ul li,
ol.list li,
ul.list ol li,
ol.list ol li,
ol.list ol ol li {
list-style-position: inside;
padding-left: 2.1em;
}
/* ACCORDION
----------------------------------------- */
.accordion {
width: 100%;
margin-bottom: 2.1em;
}
.accordion section {
padding: 0 2px;
}
.accordion .pointer {
position: absolute;
padding: 0;
margin: .25em 0 0;
line-height: 1;
width: .8125em;
color: #008fc1;
font-size:1.2em;
}
.accordion h5 {
padding: 0 0 0 1.125em;
font-size: 1.4em;
line-height: 1.5;
font-weight: bold;
}
.accordion .acc-show h5 {
color: #008fc1;
text-shadow: 0 0 1px #008fc1;
}
.accordion .acc-body p {
padding:0 0 0 1.15em;
color: #ffffff;
}
.accordion .acc-show .acc-body p {
color: #000000;
}
.accordion .acc-body {
height: 0;
overflow: hidden;
}
.accordion .acc-show .acc-body {
height: 100px;
}
.no-js .accordion :target .acc-body {
height: 100px;
overflow: auto;
}
.accordion .measuring-wrapper {
overflow: hidden;
}
.accordion section,
.accordion .pointer,
.accordion h5,
.accordion .acc-body,
.accordion .acc-body p {
-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
-ms-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;
}
.accordion .acc-show .pointer {
display:block;
-webkit-transform:rotate(90deg);
-moz-transform:rotate(90deg);
-ms-transform:rotate(90deg);
-o-transform:rotate(90deg);
transform:rotate(90deg);
}
/* specific to the activity accordion */
.activity-accordion .acc-body p {
padding: 0;
}
.activity-accordion .acc-body .measuring-wrapper>p {
padding: 0 0 0 1.15em;
}
.activity-accordion .acc-body .measuring-wrapper>p:last-of-type {
margin-bottom: 0;
}
.activity-accordion ul {
margin-left: 1.15em;
}
div.single-activity p:last-of-type {
margin-bottom: 0;
}
/* TOGGLABLE ELEMENTS
----------------------------------------- */
.toggle-wrapper {
padding: 0 2px;
cursor: pointer;
}
.toggle-wrapper.toggle-element-show {
cursor: default;
}
.toggle-wrapper .toggle-element {
height: 0;
overflow: hidden;
}
.no-js .toggle-wrapper :target .toggle-element {
height: 100px;
overflow: auto;
}
.toggle-wrapper .measuring-wrapper {
overflow: hidden;
}
.toggle-wrapper .toggle-element {
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}
.toggle-arrows-wrap {
width: 42px;
height: 11px;
overflow: hidden;
position: relative;
margin: 1em auto 0;
}
.toggle-arrows img {
position: absolute;
height: 22px;
max-width: 84px;
width: 84px;
}
.toggle-arrows-more img {
top: 0;
left: 0;
}
.toggle-arrows-less img {
top: -11px;
left: 0;
}
.no-touch .toggle-arrows:hover img,
.toggle-arrows:active img {
left: -42px;
}
.more-link-wrap {
text-align: center;
font-size: 1.2em;
}
.toggle-wrapper.toggle-mobile-sticky .toggle-element,
.toggle-wrapper.toggle-mobile .toggle-element {
height: auto;
}
.toggle-wrapper.toggle-mobile-sticky .toggle-arrows-wrap,
.toggle-wrapper.toggle-mobile .toggle-arrows-wrap {
display: none;
}
@media handheld, only screen and (max-width: 767px), only screen and (max-height: 699px) {
.sticky .toggle-wrapper.toggle-mobile-sticky .toggle-element,
.toggle-wrapper.toggle-mobile .toggle-element {
height: 0;
}
.sticky .toggle-wrapper.toggle-mobile-sticky .toggle-arrows-wrap,
.toggle-wrapper.toggle-mobile .toggle-arrows-wrap {
display: block;
}
}
@media only screen and (min-width: 768px) and (min-height: 700px) {
.toggle-wrapper.toggle-mobile-sticky .toggle-element[style],
.toggle-wrapper.toggle-mobile .toggle-element[style] {
height: auto !important;
}
}
/* TOOLTIPS
----------------------------------------- */
#tooltip {
padding: .5em;
background: #ffffff;
border: 2px solid #e9619c;
border-radius: 4px;
text-align: left;
font-family: GS, Verdana, Geneva, Helvetica, Arial, sans-serif;
font-size: 1.4em;
margin-right: 1.5em;
}
span.tip {
color: #ffffff;
}
.no-touch span.tip:hover,
span.tip:active {
color: #008fc1;
}
/* ANIMATIONS
----------------------------------------- */
a {
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-ms-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s;
}
input,
textarea {
-webkit-transition: background 0.5s;
-moz-transition: background 0.5s;
-ms-transition: background 0.5s;
-o-transition: background 0.5s;
transition: background 0.5s;
}
a.button,
button,
input[type="submit"],
input[type="button"] {
-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
-ms-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;
}
/* VCARD
----------------------------------------- */
.island.vcard {
margin: 0 0 2.1em;
}
.vcard table td {
vertical-align: top;
}
.vcard .avatar-cell {
padding-left: 1em;
}
.vcard .avatar {
border: 2px solid #008fc1;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
float: right;
}
/* CONTEXTUAL MENUS
----------------------------------------- */
.options-island {
margin:0 0 2.1em;
}
.options-table a {
color: #002a3d;
}
.no-touch .options-table a:hover,
.options-table a:active,
.options-table a:focus {
text-shadow: 0 0 2px #008fc1;
}
.options-table a.active-option {
text-shadow: 0 0 2px #008fc1;
font-weight: 700;
}