-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcustom.css
691 lines (650 loc) · 19.5 KB
/
custom.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
/*
This is the Custom CSS for the WordCamp Los Angeles 2014 site.
We'll develop the theme first, and then take the compiled CSS
and add it to the site using Jetpack's Custom CSS module.
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 - Variables
1.1 - Fonts
1.2 - Colors
2.0 - Typography
2.1 - Header
3.0 - Elements and layout
3.1 - Elements
3.2 - Layout
3.3 - Subpage layouts
4.0 - Forms
5.0 - Navigation
5.1 - Links
5.2 - Menus
5.3 - Secondary toggle
6.0 - Widgets
--------------------------------------------------------------*/
/*--------------------------------------------------------------
1.0 - Variables
--------------------------------------------------------------*/
/*--------------------------------------------------------------
1.0 Variables
--------------------------------------------------------------*/
/*--------------------------------------------------------------
1.1 Fonts
--------------------------------------------------------------*/
@import url(http://fonts.googleapis.com/css?family=Montserrat:400,700);
/*--------------------------------------------------------------
1.2 Colors
--------------------------------------------------------------*/
/*--------------------------------------------------------------
1.3 Mixins
--------------------------------------------------------------*/
/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v0.10.4
* Docs at http://davidtheclark.github.io/scut
*/
/*--------------------------------------------------------------
2.0 - Typography
--------------------------------------------------------------*/
/*--------------------------------------------------------------
2.0 - Typography
--------------------------------------------------------------*/
/* line 5, sass/_typography.scss */
body,
button,
input,
select,
textarea {
color: #555e68;
font-family: "Montserrat", sans-serif; }
/* line 14, sass/_typography.scss */
h1, h2, h3, h4, h5, h6 {
color: #fd7e23;
font-family: "Montserrat", sans-serif;
text-transform: uppercase; }
/* line 22, sass/_typography.scss */
h1.entry-title {
font-size: 38px;
font-size: 3.8rem; }
/* line 28, sass/_typography.scss */
h4 {
font-size: 22px;
font-size: 2.2rem;
font-weight: 700;
margin: .5em 0; }
/* line 39, sass/_typography.scss */
.entry-meta {
font-size: 0.9em;
color: #6c7784; }
/* line 44, sass/_typography.scss */
.hentry {
border-bottom: 1px dotted #fd7e23;
padding-bottom: 1.5em; }
/* line 50, sass/_typography.scss */
.entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4, .entry-content h5, .entry-content h6 {
margin: 0.5em 0.222em; }
/* line 53, sass/_typography.scss */
.entry-content h1 {
font-size: 2.25em; }
/* line 54, sass/_typography.scss */
.entry-content h2 {
font-size: 1.688em; }
/* line 55, sass/_typography.scss */
.entry-content h3 {
font-size: 1.5em; }
/* line 56, sass/_typography.scss */
.entry-content h4 {
font-size: 1.125em; }
/* line 57, sass/_typography.scss */
.entry-content h5 {
font-size: 1em; }
/* line 58, sass/_typography.scss */
.entry-content h6 {
font-size: 0.75em; }
/* line 61, sass/_typography.scss */
.comments-title {
font-size: 1.688em;
margin: 0.5em 0 0.222em; }
/* line 66, sass/_typography.scss */
.commentlist {
list-style-type: none;
margin: 1.5em 0; }
/* line 69, sass/_typography.scss */
.commentlist li.comment {
border-bottom: 1px dotted #fd7e23;
margin: 0 0 1.5em 0;
padding: 0 0 1.5em 0; }
/* line 74, sass/_typography.scss */
.commentlist footer {
overflow: hidden; }
/* line 77, sass/_typography.scss */
.commentlist .avatar {
float: left;
margin: 0 1em 0.5em 0; }
/* line 81, sass/_typography.scss */
.commentlist .comment-meta {
font-size: 0.9em;
color: #6c7784; }
/* line 85, sass/_typography.scss */
.commentlist .reply {
text-align: right; }
/* line 88, sass/_typography.scss */
.commentlist .comment-content {
margin: 1em 0 0 1em; }
/*--------------------------------------------------------------
3.0 - Elements and Layout
--------------------------------------------------------------*/
/*--------------------------------------------------------------
3.1 - Elements
--------------------------------------------------------------*/
/* line 5, sass/_elements.scss */
hr {
clear: both;
margin: 1em 0; }
/*--------------------------------------------------------------
3.2 - Layout
--------------------------------------------------------------*/
/* line 4, sass/_layout.scss */
body {
background: url("http://2014.la.wordcamp.org/files/2014/05/wcla14_tileBG-footer.png") center bottom repeat-x; }
/* Header */
/* line 9, sass/_layout.scss */
#masthead hgroup,
#masthead nav div > ul {
float: none;
margin: 0 auto;
width: 100%; }
/* line 17, sass/_layout.scss */
#masthead {
background: url("http://2014.la.wordcamp.org/files/2014/06/wcla14_header-bgSub-opt.jpg") center top no-repeat black;
height: 400px;
position: relative; }
@media (max-width: 640px) {
/* line 17, sass/_layout.scss */
#masthead {
height: 380px; } }
@media (max-width: 480px) {
/* line 17, sass/_layout.scss */
#masthead {
height: 250px; } }
/* line 30, sass/_layout.scss */
.home #masthead {
background: url("http://2014.la.wordcamp.org/files/2014/06/wcla14_header-bgImg-fade-opt.jpg") center top no-repeat black;
height: 620px; }
@media (max-width: 640px) {
/* line 30, sass/_layout.scss */
.home #masthead {
height: 380px; } }
@media (max-width: 480px) {
/* line 30, sass/_layout.scss */
.home #masthead {
height: 250px; } }
/* line 43, sass/_layout.scss */
#masthead .site-title {
text-align: center; }
/* line 46, sass/_layout.scss */
#masthead .site-title a {
background-image: url("http://2014.la.wordcamp.org/files/2014/06/wcla14_logo-opt.png");
background-size: contain;
background-position: center top;
background-repeat: no-repeat;
font-size: 0px;
margin: 0 auto;
height: 300px;
display: block; }
/* line 56, sass/_layout.scss */
.home #masthead .site-title a {
height: 527px; }
@media (max-width: 870px) {
/* line 56, sass/_layout.scss */
.home #masthead .site-title a {
height: 449px; } }
@media (max-width: 640px) {
/* line 56, sass/_layout.scss */
.home #masthead .site-title a {
height: 300px; } }
@media (max-width: 480px) {
/* line 56, sass/_layout.scss */
.home #masthead .site-title a {
height: 160px; } }
@media (max-width: 480px) {
/* line 46, sass/_layout.scss */
#masthead .site-title a {
height: 160px; } }
/* line 78, sass/_layout.scss */
#masthead .site-description {
display: none; }
/* Content & Sidebar */
/* line 85, sass/_layout.scss */
#page {
background: url("http://2014.la.wordcamp.org/files/2014/05/wcla14_tileBG-features.png") center 400px repeat-x; }
@media (max-width: 640px) {
/* line 85, sass/_layout.scss */
#page {
background-position: center 380px; } }
@media (max-width: 480px) {
/* line 85, sass/_layout.scss */
#page {
background-position: center 250px; } }
/* line 96, sass/_layout.scss */
.home #page {
background: url("http://2014.la.wordcamp.org/files/2014/05/wcla14_tileBG-features.png") center 620px repeat-x; }
@media (max-width: 640px) {
/* line 96, sass/_layout.scss */
.home #page {
background-position: center 380px; } }
@media (max-width: 480px) {
/* line 96, sass/_layout.scss */
.home #page {
background-position: center 250px; } }
/* line 109, sass/_layout.scss */
#main {
margin: 0 auto;
width: 100%;
max-width: 1100px; }
/* line 10, sass/_scut.scss */
#main:after {
content: "";
display: table;
clear: both; }
/* line 117, sass/_layout.scss */
#colophon {
clear: both;
margin: 0 auto;
width: 100%; }
/* line 123, sass/_layout.scss */
#primary {
float: left;
width: 72%;
margin-left: 1.5%; }
@media (max-width: 640px) {
/* line 123, sass/_layout.scss */
#primary {
float: none;
width: 90%;
margin: 1em auto; } }
/* line 135, sass/_layout.scss */
#secondary {
float: right;
width: 22%;
margin-right: 1.5%; }
@media (max-width: 640px) {
/* line 135, sass/_layout.scss */
#secondary {
float: none;
width: 90%;
margin: 1em auto; } }
/* Tickets */
/* line 149, sass/_layout.scss */
.tix_tickets_table th,
.tix_tickets_table td {
padding: 5px; }
/* Footer */
/* line 155, sass/_layout.scss */
#colophon {
padding: 20px 0; }
/* line 158, sass/_layout.scss */
#colophon .site-info-generator {
display: block;
text-align: center; }
/* line 162, sass/_layout.scss */
#colophon .site-info-generator:before {
content: url("http://2014.la.wordcamp.org/files/2014/05/wcla14_greyW-transparentBg.png");
display: block; }
/* line 168, sass/_layout.scss */
#colophon .site-info-network {
position: absolute;
top: 12px;
left: 4px; }
@media (max-width: 480px) {
/* line 168, sass/_layout.scss */
#colophon .site-info-network {
top: 6px;
font-size: 11px;
font-size: 1.1rem; } }
/*--------------------------------------------------------------
3.3 - Subpage layouts
--------------------------------------------------------------*/
/* Organizers Page */
/* line 6, sass/_subpages.scss */
.wcorg-organizers {
clear: both;
overflow: hidden; }
/* line 10, sass/_subpages.scss */
.wcorg-organizers .wcorg-organizer {
float: left;
padding: 1%;
width: 23%; }
@media (max-width: 870px) {
/* line 10, sass/_subpages.scss */
.wcorg-organizers .wcorg-organizer {
width: 48%; } }
/* line 18, sass/_subpages.scss */
.wcorg-organizers .wcorg-organizer img {
margin: 1em 0;
display: block;
width: 80%;
padding: 10%;
background: #dde3e6; }
/* line 26, sass/_subpages.scss */
.wcorg-organizers .sharedaddy {
display: none; }
/* Speakers Page */
/* line 33, sass/_subpages.scss */
.wcb_speaker .sharedaddy {
display: none; }
/* line 36, sass/_subpages.scss */
.wcb_speaker .avatar {
float: left;
margin: 0 1em 0.5em 0; }
/* line 42, sass/_subpages.scss */
.speaker-gravatar-list {
margin-bottom: 2.25em; }
/* Sponsors Page */
/* line 48, sass/_subpages.scss */
.wcb_sponsor .sharedaddy {
display: none; }
/* Attendees Page */
/* line 54, sass/_subpages.scss */
#tix-attendees .tix-attendee-list {
list-style: none;
margin-left: 0; }
/* line 58, sass/_subpages.scss */
#tix-attendees .tix-attendee-list li {
display: inline-block;
margin-left: -4px;
padding: 1.5%;
text-align: center;
width: 22%;
vertical-align: top; }
@media (max-width: 870px) {
/* line 58, sass/_subpages.scss */
#tix-attendees .tix-attendee-list li {
width: 30%; } }
@media (max-width: 480px) {
/* line 58, sass/_subpages.scss */
#tix-attendees .tix-attendee-list li {
width: 47%; } }
/* line 73, sass/_subpages.scss */
#tix-attendees .tix-attendee-list li .avatar {
height: auto;
float: none;
max-width: 50%;
width: auto; }
/* line 80, sass/_subpages.scss */
#tix-attendees .tix-attendee-list li .tix-field {
margin-left: 0; }
/* Schedule Page(s) */
/* line 87, sass/_subpages.scss */
.wcpt-schedule {
margin: 1em 0; }
/* line 89, sass/_subpages.scss */
.wcpt-schedule thead th {
background: #fd7e23;
color: white;
text-transform: uppercase; }
/* line 94, sass/_subpages.scss */
.wcpt-schedule th, .wcpt-schedule td {
padding: 0.5em; }
/* line 97, sass/_subpages.scss */
.wcpt-schedule td {
border-bottom: 1px solid #ffc097;
padding: 1em 0.5em; }
/* line 101, sass/_subpages.scss */
.wcpt-schedule .wcpt-session-title {
display: block;
font-size: 1.125em; }
/* line 105, sass/_subpages.scss */
.wcpt-schedule .wcpt-col-time {
width: 14%; }
/* line 108, sass/_subpages.scss */
.wcpt-schedule .wcpt-col-track {
width: 28%; }
/* line 111, sass/_subpages.scss */
.wcpt-schedule .wcpt-session-speakers {
display: block;
font-style: italic;
margin: 1em 0 0 0; }
/* line 115, sass/_subpages.scss */
.wcpt-schedule .wcpt-session-speakers:before {
content: 'Speaker: '; }
/* line 118, sass/_subpages.scss */
.wcpt-schedule .wcpt-session-speakers a {
color: #14b59d; }
/* line 122, sass/_subpages.scss */
.wcpt-schedule .lunch-break td {
background: #ffdfcb; }
/* line 124, sass/_subpages.scss */
.wcpt-schedule .lunch-break td .scb-session-lunch-break {
text-align: center; }
/* Responsive columns for use inside page/post content since we can't use shortcodes */
/* line 135, sass/_subpages.scss */
.cols2 .cols, .cols3 .cols, .cols4 .cols {
padding: 1.5%; }
/* line 10, sass/_scut.scss */
.cols2:after {
content: "";
display: table;
clear: both; }
/* line 142, sass/_subpages.scss */
.cols2 .col {
float: left;
width: 47%; }
@media (max-width: 640px) {
/* line 142, sass/_subpages.scss */
.cols2 .col {
float: none;
width: 97%; } }
/* line 10, sass/_scut.scss */
.cols3:after {
content: "";
display: table;
clear: both; }
/* line 154, sass/_subpages.scss */
.cols3 .col {
float: left;
width: 30%; }
@media (max-width: 640px) {
/* line 154, sass/_subpages.scss */
.cols3 .col {
float: none;
width: 97%; } }
/* line 10, sass/_scut.scss */
.cols4:after {
content: "";
display: table;
clear: both; }
/* line 166, sass/_subpages.scss */
.cols4 .col {
float: left;
width: 22%; }
@media (max-width: 870px) {
/* line 166, sass/_subpages.scss */
.cols4 .col {
width: 47%; } }
@media (max-width: 640px) {
/* line 166, sass/_subpages.scss */
.cols4 .col {
float: none;
width: 97%; } }
/*--------------------------------------------------------------
4.0 - Forms
--------------------------------------------------------------*/
/*--------------------------------------------------------------
5.0 - Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
5.0 - Navigation
--------------------------------------------------------------*/
/* line 4, sass/_navigation.scss */
nav.main-navigation {
background: white;
background: rgba(255, 255, 255, 0.7);
position: absolute;
bottom: 0; }
/* line 15, sass/_navigation.scss */
nav.main-navigation .menu-primary-container {
width: 100%;
max-width: 1100px;
margin: 0 auto; }
/* line 21, sass/_navigation.scss */
nav.main-navigation .menu {
height: 65px;
line-height: 65px; }
/* line 26, sass/_navigation.scss */
nav.main-navigation .menu li a {
color: #000;
font-weight: 700;
font-size: 18px;
font-size: 1.8rem;
padding: 0 16px;
text-shadow: 1px 1px 1px #fff;
text-transform: uppercase;
-webkit-transition: all 200ms ease-in-out;
-moz-transition: all 200ms ease-in-out;
-ms-transition: all 200ms ease-in-out;
-o-transition: all 200ms ease-in-out;
transition: all 200ms ease-in-out; }
@media (max-width: 870px) {
/* line 26, sass/_navigation.scss */
nav.main-navigation .menu li a {
font-size: 16px;
font-size: 1.6rem;
padding: 0 0.75em; } }
/* line 43, sass/_navigation.scss */
nav.main-navigation .menu li:hover > a {
background: white;
background: rgba(255, 255, 255, 0.5); }
/* line 48, sass/_navigation.scss */
nav.main-navigation .menu li ul {
background: white;
background: rgba(255, 255, 255, 0.9);
top: 65px; }
/* line 53, sass/_navigation.scss */
nav.main-navigation .menu li ul li:hover > a {
background: #45ead2; }
/* line 61, sass/_navigation.scss */
.main-small-navigation {
background: white;
background: rgba(255, 255, 255, 0.7);
display: block;
padding: 1em 0;
position: absolute;
bottom: 0;
text-align: center;
width: 100%; }
/* line 71, sass/_navigation.scss */
.main-small-navigation .menu-toggle {
font-size: 24px;
font-size: 2.4rem;
text-align: center; }
/* line 80, sass/_navigation.scss */
.main-small-navigation #menu-primary {
position: absolute;
top: 4.25em;
bottom: auto;
z-index: 100;
background: white;
background: rgba(255, 255, 255, 0.7); }
/* line 88, sass/_navigation.scss */
.main-small-navigation #menu-primary ul li {
list-style: none; }
/*--------------------------------------------------------------
5.1 - Links
--------------------------------------------------------------*/
/* line 97, sass/_navigation.scss */
a,
a:active,
a:visited {
color: #fd7e23;
text-decoration: none; }
/* line 104, sass/_navigation.scss */
a:hover {
color: #ffc097; }
/* line 109, sass/_navigation.scss */
#colophon a,
#colophon a:active,
#colophon a:visited {
color: #555e68;
text-shadow: 1px 1px 1px #fff; }
/* line 116, sass/_navigation.scss */
#colophon a:hover {
color: #555e68; }
/* line 120, sass/_navigation.scss */
#colophon a.site-info-network {
color: #ffc097;
text-shadow: 1px 1px 1px #000; }
/*--------------------------------------------------------------
6.0 - Widgets
--------------------------------------------------------------*/
/* line 4, sass/_widgets.scss */
#primary-sidebar aside h1 {
background: #fd7e23;
color: #fff;
font-size: 18px;
font-size: 1.8rem;
line-height: 12px;
padding: 24px 0 0 0;
text-align: center;
text-transform: uppercase; }
/* line 15, sass/_widgets.scss */
#primary-sidebar aside a {
text-decoration: none; }
/* line 19, sass/_widgets.scss */
#primary-sidebar aside ul {
list-style: none;
margin: 0 0 1.5em 0; }
/* line 23, sass/_widgets.scss */
#primary-sidebar aside ul li {
padding: .5em; }
/* After Header Widgets */
/* line 31, sass/_widgets.scss */
#after-header-widgets {
clear: both;
margin: 40px auto;
overflow: hidden;
width: 100%;
max-width: 1100px; }
/* line 38, sass/_widgets.scss */
#after-header-widgets .widget {
float: left;
text-align: center;
width: 25%; }
/* line 43, sass/_widgets.scss */
#after-header-widgets .widget > div {
padding: 0 1em; }
@media (max-width: 640px) {
/* line 38, sass/_widgets.scss */
#after-header-widgets .widget {
width: 47.5%;
margin: 0 1% 1em 1%;
overflow-wrap: break-word;
min-height: 330px;
min-height: 33rem; } }
@media (max-width: 480px) {
/* line 38, sass/_widgets.scss */
#after-header-widgets .widget {
float: none;
width: 95%;
margin: 1em auto;
min-height: auto; } }
/* line 61, sass/_widgets.scss */
#after-header-widgets .widget img {
-webkit-transition: all 200ms ease-in-out;
-moz-transition: all 200ms ease-in-out;
-ms-transition: all 200ms ease-in-out;
-o-transition: all 200ms ease-in-out;
transition: all 200ms ease-in-out; }
/* line 65, sass/_widgets.scss */
#after-header-widgets .widget:hover img {
-webkit-transform: scale(1.1);
-moz-transform: scale(1.1);
-ms-transform: scale(1.1);
-o-transform: scale(1.1);
transform: scale(1.1); }
/* line 72, sass/_widgets.scss */
#searchform .field {
max-width: 100%; }