-
Notifications
You must be signed in to change notification settings - Fork 15
/
main.css
1213 lines (1197 loc) · 28.7 KB
/
main.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
/* =Reset
-------------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
border: 0;
font-family: inherit;
font-size: 100%;
font-style: inherit;
font-weight: inherit;
margin: 0;
outline: 0;
padding: 0;
vertical-align: baseline;
}
html {
font-size: 62.5%;
/* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
overflow-y: scroll;
/* Keeps page centered in all browsers regardless of content height */
-webkit-text-size-adjust: 100%;
/* Prevents iOS text size adjust after orientation change, without disabling user zoom */
-ms-text-size-adjust: 100%;
/* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
}
body {
background: #fff;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
display: block;
}
ol, ul {
list-style: none;
}
table {
/* tables still need 'cellspacing="0"' in the markup */
border-collapse: separate;
border-spacing: 0;
}
caption, th, td {
font-weight: normal;
text-align: left;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: "";
}
blockquote, q {
quotes: "" "";
}
a:focus {
outline: thin dotted;
}
a:hover,
a:active {
outline: 0;
}
a img {
border: 0;
}
/* =Global
----------------------------------------------- */
body,
button,
input,
select,
textarea {
color: #404040;
font-family: sans-serif;
font-size: 16px;
font-size: 1.6rem;
line-height: 1.5;
}
/*
* =========== Devhub Custom ========== Devhub Custom ========== Devhub Custom =====
* =========== Devhub Custom ========== Devhub Custom ========== Devhub Custom =====
* =========== Devhub Custom ========== Devhub Custom ========== Devhub Custom =====
* =========== Devhub Custom ========== Devhub Custom ========== Devhub Custom =====
* =========== Devhub Custom ========== Devhub Custom ========== Devhub Custom =====
* =========== Devhub Custom ========== Devhub Custom ========== Devhub Custom =====
* =========== Devhub Custom ========== Devhub Custom ========== Devhub Custom =====
*/
.devhub-wrap {
/*
* =========== Port _s defaults ========== Port _s defaults ========== Port _s defaults =====
* =========== Port _s defaults ========== Port _s defaults ========== Port _s defaults =====
* =========== Port _s defaults ========== Port _s defaults ========== Port _s defaults =====
* =========== Port _s defaults ========== Port _s defaults ========== Port _s defaults =====
* =========== Port _s defaults ========== Port _s defaults ========== Port _s defaults =====
*/
/* Headings */
/* Text elements */
/* Alignment */
/* Text meant only for screen readers */
/* Clearing */
/* =Content
----------------------------------------------- */
/* =Media
----------------------------------------------- */
/* Make sure embeds and iframes fit their containers */
/* =Comments
----------------------------------------------- */
/* =Widgets
----------------------------------------------- */
/* Make sure select elements fit in widgets */
/* Search widget */
/* =Infinite Scroll
----------------------------------------------- */
/* Globally hidden elements when Infinite Scroll is supported and in use. */
/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before */
font-family: 'Open Sans', sans-serif;
/*
* Header area
*/
/*
* section styles
*/
/* Comments */
}
.devhub-wrap h1, .devhub-wrap h2, .devhub-wrap h3, .devhub-wrap h4, .devhub-wrap h5, .devhub-wrap h6 {
clear: both;
}
.devhub-wrap hr {
background-color: #ccc;
border: 0;
height: 1px;
margin-bottom: 1.5em;
}
.devhub-wrap p {
margin-bottom: 1.5em;
}
.devhub-wrap ul, .devhub-wrap ol {
margin: 0 0 1.5em 3em;
}
.devhub-wrap ul {
list-style: disc;
}
.devhub-wrap ol {
list-style: decimal;
}
.devhub-wrap li > ul,
.devhub-wrap li > ol {
margin-bottom: 0;
margin-left: 1.5em;
}
.devhub-wrap dt {
font-weight: bold;
}
.devhub-wrap dd {
margin: 0 1.5em 1.5em;
}
.devhub-wrap b, .devhub-wrap strong {
font-weight: bold;
}
.devhub-wrap dfn, .devhub-wrap cite, .devhub-wrap em, .devhub-wrap i {
font-style: italic;
}
.devhub-wrap blockquote {
margin: 0 1.5em;
}
.devhub-wrap address {
margin: 0 0 1.5em;
}
.devhub-wrap pre {
background: #eee;
font-family: "Courier 10 Pitch", Courier, monospace;
font-size: 15px;
font-size: 1.5rem;
line-height: 1.6;
margin-bottom: 1.6em;
max-width: 100%;
overflow: auto;
padding: 1.6em;
}
.devhub-wrap code, .devhub-wrap kbd, .devhub-wrap tt, .devhub-wrap var {
font: 15px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}
.devhub-wrap abbr, .devhub-wrap acronym {
border-bottom: 1px dotted #666;
cursor: help;
}
.devhub-wrap mark, .devhub-wrap ins {
background: #fff9c0;
text-decoration: none;
}
.devhub-wrap sup,
.devhub-wrap sub {
font-size: 75%;
height: 0;
line-height: 0;
position: relative;
vertical-align: baseline;
}
.devhub-wrap sup {
bottom: 1ex;
}
.devhub-wrap sub {
top: .5ex;
}
.devhub-wrap small {
font-size: 75%;
}
.devhub-wrap big {
font-size: 125%;
}
.devhub-wrap figure {
margin: 0;
}
.devhub-wrap table {
margin: 0 0 1.5em;
width: 100%;
}
.devhub-wrap th {
font-weight: bold;
}
.devhub-wrap img {
height: auto;
/* Make sure images are scaled correctly. */
max-width: 100%;
/* Adhere to container width. */
}
.devhub-wrap button,
.devhub-wrap input,
.devhub-wrap select,
.devhub-wrap textarea {
font-size: 100%;
/* Corrects font size not being inherited in all browsers */
margin: 0;
/* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
vertical-align: baseline;
/* Improves appearance and consistency in all browsers */
*vertical-align: middle;
/* Improves appearance and consistency in all browsers */
}
.devhub-wrap a.button,
.devhub-wrap button,
.devhub-wrap input {
line-height: normal;
/* Addresses FF3/4 setting line-height using !important in the UA stylesheet */
}
.devhub-wrap a.button,
.devhub-wrap button,
.devhub-wrap input[type="button"],
.devhub-wrap input[type="reset"],
.devhub-wrap input[type="submit"] {
border: 1px solid #ccc;
border-color: #ccc #ccc #bbb #ccc;
border-radius: 3px;
background: #fff;
color: rgba(0, 0, 0, 0.8);
cursor: pointer;
/* Improves usability and consistency of cursor style between image-type 'input' and others */
font-size: 16px;
font-size: 1.6rem;
line-height: 1;
float: none;
height: auto;
padding: .6em 1.8em;
}
.devhub-wrap button,
.devhub-wrap input[type="button"],
.devhub-wrap input[type="reset"],
.devhub-wrap input[type="submit"] {
-webkit-appearance: button;
/* Corrects inability to style clickable 'input' types in iOS */
}
.devhub-wrap a.button:hover,
.devhub-wrap button:hover,
.devhub-wrap input[type="button"]:hover,
.devhub-wrap input[type="reset"]:hover,
.devhub-wrap input[type="submit"]:hover {
border-color: #ccc #bbb #aaa #bbb;
background: #f0f0f0;
}
.devhub-wrap a.button:focus,
.devhub-wrap button:focus,
.devhub-wrap input[type="button"]:focus,
.devhub-wrap input[type="reset"]:focus,
.devhub-wrap input[type="submit"]:focus,
.devhub-wrap button:active,
.devhub-wrap input[type="button"]:active,
.devhub-wrap input[type="reset"]:active,
.devhub-wrap input[type="submit"]:active {
border-color: #aaa #bbb #bbb #bbb;
background: #f0f0f0;
}
.devhub-wrap input[type="checkbox"],
.devhub-wrap input[type="radio"] {
padding: 0;
/* Addresses excess padding in IE8/9 */
}
.devhub-wrap input[type="search"] {
-webkit-appearance: textfield;
/* Addresses appearance set to searchfield in S5, Chrome */
-webkit-box-sizing: content-box;
/* Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof) */
-moz-box-sizing: content-box;
box-sizing: content-box;
}
.devhub-wrap input[type="search"]::-webkit-search-decoration {
/* Corrects inner padding displayed oddly in S5, Chrome on OSX */
-webkit-appearance: none;
}
.devhub-wrap button::-moz-focus-inner,
.devhub-wrap input::-moz-focus-inner {
/* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */
border: 0;
padding: 0;
}
.devhub-wrap input[type="text"],
.devhub-wrap input[type="email"],
.devhub-wrap input[type="url"],
.devhub-wrap input[type="password"],
.devhub-wrap input[type="search"],
.devhub-wrap textarea {
color: #666;
border: 1px solid #ccc;
border-radius: 3px;
}
.devhub-wrap input[type="text"]:focus,
.devhub-wrap input[type="email"]:focus,
.devhub-wrap input[type="url"]:focus,
.devhub-wrap input[type="password"]:focus,
.devhub-wrap input[type="search"]:focus,
.devhub-wrap textarea:focus {
color: #111;
}
.devhub-wrap input[type="text"],
.devhub-wrap input[type="email"],
.devhub-wrap input[type="url"],
.devhub-wrap input[type="password"],
.devhub-wrap input[type="search"] {
padding: 3px;
}
.devhub-wrap textarea {
overflow: auto;
/* Removes default vertical scrollbar in IE6/7/8/9 */
padding-left: 3px;
vertical-align: top;
/* Improves readability and alignment in all browsers */
width: 98%;
}
.devhub-wrap .alignleft {
display: inline;
float: left;
margin-right: 1.5em;
}
.devhub-wrap .alignright {
display: inline;
float: right;
margin-left: 1.5em;
}
.devhub-wrap .aligncenter {
clear: both;
display: block;
margin: 0 auto;
}
.devhub-wrap .screen-reader-text {
clip: rect(1px, 1px, 1px, 1px);
position: absolute !important;
}
.devhub-wrap .screen-reader-text:hover,
.devhub-wrap .screen-reader-text:active,
.devhub-wrap .screen-reader-text:focus {
background-color: #f1f1f1;
border-radius: 3px;
box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
clip: auto !important;
color: #21759b;
display: block;
font-size: 14px;
font-weight: bold;
height: auto;
left: 5px;
line-height: normal;
padding: 15px 23px 14px;
text-decoration: none;
top: 5px;
width: auto;
z-index: 100000;
/* Above WP toolbar */
}
.devhub-wrap .clear:before,
.devhub-wrap .clear:after,
.devhub-wrap .entry-content:before,
.devhub-wrap .entry-content:after,
.devhub-wrap .comment-content:before,
.devhub-wrap .comment-content:after,
.devhub-wrap .site-header:before,
.devhub-wrap .site-header:after,
.devhub-wrap .site-content:before,
.devhub-wrap .site-content:after,
.devhub-wrap .site-footer:before,
.devhub-wrap .site-footer:after {
content: '';
display: table;
}
.devhub-wrap .clear:after,
.devhub-wrap .entry-content:after,
.devhub-wrap .comment-content:after,
.devhub-wrap .site-header:after,
.devhub-wrap .site-content:after,
.devhub-wrap .site-footer:after {
clear: both;
}
.devhub-wrap .hentry {
margin: 0 0 1.5em;
}
.devhub-wrap .byline,
.devhub-wrap .updated {
display: none;
}
.devhub-wrap .single .byline,
.devhub-wrap .group-blog .byline {
display: inline;
}
.devhub-wrap .page-content,
.devhub-wrap .entry-content,
.devhub-wrap .entry-summary {
margin: 1.5em 0 0;
}
.devhub-wrap .page-links {
clear: both;
margin: 0 0 1.5em;
}
.devhub-wrap .page-content img.wp-smiley,
.devhub-wrap .entry-content img.wp-smiley,
.devhub-wrap .comment-content img.wp-smiley {
border: none;
margin-bottom: 0;
margin-top: 0;
padding: 0;
}
.devhub-wrap .wp-caption {
border: 1px solid #ccc;
margin-bottom: 1.5em;
max-width: 100%;
}
.devhub-wrap .wp-caption img[class*="wp-image-"] {
display: block;
margin: 1.2% auto 0;
max-width: 98%;
}
.devhub-wrap .wp-caption-text {
text-align: center;
}
.devhub-wrap .wp-caption .wp-caption-text {
margin: 0.8075em 0;
}
.devhub-wrap .site-main .gallery {
margin-bottom: 1.5em;
}
.devhub-wrap .site-main .gallery a img {
border: none;
height: auto;
max-width: 90%;
}
.devhub-wrap .site-main .gallery dd {
margin: 0;
}
.devhub-wrap embed,
.devhub-wrap iframe,
.devhub-wrap object {
max-width: 100%;
}
.devhub-wrap .comment-content a {
word-wrap: break-word;
}
.devhub-wrap .bypostauthor {
background: #eee;
}
.devhub-wrap .widget {
margin: 0 0 1.5em;
}
.devhub-wrap .widget select {
max-width: 100%;
}
.devhub-wrap .widget_search .search-submit {
display: none;
}
.devhub-wrap .infinite-scroll .paging-navigation,
.devhub-wrap .infinite-scroll.neverending .site-footer {
/* Theme Footer (when set to scrolling) */
display: none;
}
.devhub-wrap .infinity-end.neverending .site-footer {
display: block;
}
.devhub-wrap *,
.devhub-wrap *:before,
.devhub-wrap *:after {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.devhub-wrap .site-main,
.devhub-wrap .inner-wrap {
margin: 0 auto;
max-width: 60em;
}
.devhub-wrap a {
color: #21759b;
}
.devhub-wrap .site-main h2,
.devhub-wrap .site-main h3,
.devhub-wrap .site-main h4,
.devhub-wrap .site-main h5,
.devhub-wrap .site-main h6 {
color: #1e1e1e;
font-family: 'Open Sans', sans-serif;
}
.devhub-wrap h2.widget-title,
.devhub-wrap h3.widget-title {
font-family: 'Open Sans', sans-serif;
}
.devhub-wrap #headline h2 a {
color: #555;
font-weight: 300;
font-size: 28px;
line-height: 1em;
text-shadow: #fff 0px 1px 0px;
font-family: 'Open Sans', sans-serif;
}
.devhub-wrap h2 {
font-size: 28px;
font-size: 2.8rem;
line-height: 32px;
line-height: 3.2rem;
}
.devhub-wrap h3 {
font-size: 22px;
font-size: 2.2rem;
line-height: 26px;
line-height: 2.6rem;
}
.devhub-wrap h4 {
font-size: 18px;
font-size: 1.8rem;
line-height: 22px;
line-height: 2.2rem;
border-bottom: none;
}
.devhub-wrap h4 .dashicons {
font-size: 22px;
font-size: 2.2rem;
line-height: 22px;
line-height: 2.2rem;
height: 22px;
width: 22px;
height: 2.2rem;
width: 2.2rem;
}
.devhub-wrap button,
.devhub-wrap input,
.devhub-wrap select,
.devhub-wrap textarea {
font-size: 100%;
/* Corrects font size not being inherited in all browsers */
margin: 0;
/* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
vertical-align: baseline;
/* Improves appearance and consistency in all browsers */
*vertical-align: middle;
/* Improves appearance and consistency in all browsers */
font-weight: 300;
}
.devhub-wrap button,
.devhub-wrap input {
line-height: normal;
/* Addresses FF3/4 setting line-height using !important in the UA stylesheet */
}
.devhub-wrap button,
.devhub-wrap input[type="button"],
.devhub-wrap input[type="reset"],
.devhub-wrap input[type="submit"] {
text-decoration: none;
}
.devhub-wrap button.shiny-blue,
.devhub-wrap input[type="button"].shiny-blue,
.devhub-wrap input[type="reset"].shiny-blue,
.devhub-wrap input[type="submit"].shiny-blue {
background-color: #21759b;
background-image: -webkit-gradient(linear, left top, left bottom, from(#2a95c5), to(#21759b));
background-image: -webkit-linear-gradient(top, #2a95c5, #21759b);
background-image: -moz-linear-gradient(top, #2a95c5, #21759b);
background-image: -ms-linear-gradient(top, #2a95c5, #21759b);
background-image: -o-linear-gradient(top, #2a95c5, #21759b);
background-image: linear-gradient(to bottom, #2a95c5, #21759b);
border-color: #21759b;
border-bottom-color: #1e6a8d;
-webkit-box-shadow: inset 0 1px 0 rgba(120, 200, 230, 0.5);
box-shadow: inset 0 1px 0 rgba(120, 200, 230, 0.5);
color: #fff;
text-decoration: none;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
padding: 3px 8px;
}
.devhub-wrap button.shiny-blue:hover,
.devhub-wrap input[type="button"].shiny-blue:hover,
.devhub-wrap input[type="reset"].shiny-blue:hover,
.devhub-wrap input[type="submit"].shiny-blue:hover {
background-color: #278ab7;
background-image: -webkit-gradient(linear, left top, left bottom, from(#2e9fd2), to(#21759b));
background-image: -webkit-linear-gradient(top, #2e9fd2, #21759b);
background-image: -moz-linear-gradient(top, #2e9fd2, #21759b);
background-image: -ms-linear-gradient(top, #2e9fd2, #21759b);
background-image: -o-linear-gradient(top, #2e9fd2, #21759b);
background-image: linear-gradient(to bottom, #2e9fd2, #21759b);
border-color: #1b607f;
-webkit-box-shadow: inset 0 1px 0 rgba(120, 200, 230, 0.6);
box-shadow: inset 0 1px 0 rgba(120, 200, 230, 0.6);
color: #fff;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
}
.devhub-wrap button:focus,
.devhub-wrap input[type="button"]:focus,
.devhub-wrap input[type="reset"]:focus,
.devhub-wrap input[type="submit"]:focus,
.devhub-wrap button:active,
.devhub-wrap input[type="button"]:active,
.devhub-wrap input[type="reset"]:active,
.devhub-wrap input[type="submit"]:active {
border-color: #0e3950;
-webkit-box-shadow: inset 0 1px 0 rgba(120, 200, 230, 0.6), 1px 1px 2px rgba(0, 0, 0, 0.4);
box-shadow: inset 0 1px 0 rgba(120, 200, 230, 0.6), 1px 1px 2px rgba(0, 0, 0, 0.4);
}
.devhub-wrap input[type="checkbox"],
.devhub-wrap input[type="radio"] {
box-sizing: border-box;
/* Addresses box sizing set to content-box in IE8/9 */
padding: 0;
/* Addresses excess padding in IE8/9 */
}
.devhub-wrap input[type="search"] {
-webkit-appearance: textfield;
/* Addresses appearance set to searchfield in S5, Chrome */
-webkit-box-sizing: content-box;
/* Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof) */
-moz-box-sizing: content-box;
box-sizing: content-box;
}
.devhub-wrap input[type="search"]::-webkit-search-decoration {
/* Corrects inner padding displayed oddly in S5, Chrome on OSX */
-webkit-appearance: none;
}
.devhub-wrap button::-moz-focus-inner,
.devhub-wrap input::-moz-focus-inner {
/* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */
border: 0;
padding: 0;
}
.devhub-wrap input[type="text"],
.devhub-wrap input[type="email"],
.devhub-wrap input[type="url"],
.devhub-wrap input[type="password"],
.devhub-wrap input[type="search"],
.devhub-wrap textarea {
color: #666;
border: 1px solid #ccc;
border-radius: 3px;
}
.devhub-wrap input[type="text"]:focus,
.devhub-wrap input[type="email"]:focus,
.devhub-wrap input[type="url"]:focus,
.devhub-wrap input[type="password"]:focus,
.devhub-wrap input[type="search"]:focus,
.devhub-wrap textarea:focus {
color: #111;
}
.devhub-wrap input[type="text"],
.devhub-wrap input[type="email"],
.devhub-wrap input[type="url"],
.devhub-wrap input[type="password"],
.devhub-wrap input[type="search"] {
padding: 3px;
}
.devhub-wrap textarea {
overflow: auto;
/* Removes default vertical scrollbar in IE6/7/8/9 */
padding-left: 3px;
vertical-align: top;
/* Improves readability and alignment in all browsers */
width: 98%;
}
.devhub-wrap .site-header {
background: #f8f8f8;
}
.devhub-wrap .wp-logo {
border-top: 4px solid #d8d8d8;
background: #fff;
display: block;
text-align: center;
}
.devhub-wrap .wp-logo .dashicons-wordpress-alt {
position: relative;
color: #d8d8d8;
font-size: 60px;
font-size: 6rem;
line-height: 0;
width: 80px;
width: 6rem;
height: 60px;
height: 6rem;
background: #fff;
border-radius: 60px;
}
.devhub-wrap .wp-logo .dashicons-wordpress-alt:before {
background: #fff;
border-radius: 60px;
}
.devhub-wrap .site-branding {
width: 100%;
padding: 50px 0;
padding: 5rem 0;
}
.devhub-wrap .site-branding a {
text-decoration: none;
color: #606060;
}
.devhub-wrap .site-branding .breadcrumb {
font-size: 14px;
font-size: 1.4rem;
}
.devhub-wrap .site-branding .breadcrumb .active {
font-weight: 600;
}
.devhub-wrap .site-branding h1.home-site-title {
font-weight: 300;
font-size: 37px;
font-size: 3.7rem;
}
.devhub-wrap .site-branding h1.home-site-title a {
text-decoration: none;
color: #606060;
}
.devhub-wrap h1.entry-title,
.devhub-wrap h1.page-title {
font-weight: 300;
font-size: 37px;
font-size: 3.7rem;
color: #606060;
text-align: center;
padding: 0 0 30px;
padding: 0 0 3rem;
}
.devhub-wrap h1.entry-title a,
.devhub-wrap h1.page-title a {
text-decoration: none;
color: #606060;
}
.devhub-wrap h1.single-entry-title,
.devhub-wrap h2.entry-title {
text-align: left;
font-size: 30px;
font-size: 3rem;
padding: 0 0 24px;
padding: 0 0 2.4rem;
}
.devhub-wrap h1.single-entry-title a,
.devhub-wrap h2.entry-title a {
text-decoration: none;
color: #606060;
}
.devhub-wrap .home-landing .section {
padding: 75px 0%;
padding: 7.5rem 0%;
}
.devhub-wrap .color.section {
color: #fff;
}
.devhub-wrap .section.blue {
background: #0F3D57;
padding: 100px 0;
padding: 10rem 0;
}
.devhub-wrap .section.blue .box {
text-align: center;
}
.devhub-wrap .section.blue .box .widget-description {
padding: 1em 15%;
}
.devhub-wrap .section.blue .widget-title {
font-size: 62px;
font-size: 6.2rem;
line-height: 78px;
line-height: 7.8rem;
}
.devhub-wrap .section.blue .widget-title .dashicons {
font-size: 84px;
font-size: 8.4rem;
line-height: 84px;
line-height: 8.4rem;
height: 84px;
width: 84px;
height: 8.4rem;
width: 8.4rem;
margin-right: 16px;
margin-right: 1.6rem;
}
.devhub-wrap .section.gray {
background: #797878;
color: #fff;
}
.devhub-wrap .section.gray h2,
.devhub-wrap .section.gray h3,
.devhub-wrap .section.gray h4 {
color: #fff;
}
.devhub-wrap .section.gray .inner-wrap {
max-width: 700px;
max-width: 70rem;
margin: 0 auto;
}
.devhub-wrap .section.gray .inner-wrap .code-ref-left {
float: left;
width: 70%;
clear: none;
}
.devhub-wrap .section.gray .inner-wrap .code-ref-right {
float: left;
width: 30%;
clear: none;
}
.devhub-wrap .section.gray .inner-wrap .go {
float: right;
}
@media (max-width: 43em) {
.devhub-wrap .section.gray .inner-wrap .code-ref-left,
.devhub-wrap .section.gray .inner-wrap .code-ref-right {
float: none;
width: 100%;
padding: 1.5em 10%;
clear: both;
text-align: center;
}
.devhub-wrap .section.gray .inner-wrap .go {
float: none;
}
}
.devhub-wrap .section.gray .widget-title {
font-weight: 300;
font-size: 40px;
font-size: 5rem;
line-height: 50px;
line-height: 5rem;
}
.devhub-wrap .section.gray .widget-title .dashicons {
font-size: 50px;
font-size: 5rem;
line-height: 50px;
line-height: 5rem;
height: 50px;
width: 50px;
height: 5rem;
width: 5rem;
}
.devhub-wrap .section.gray .widget-description {
margin-left: 65px;
margin-left: 6.5rem;
}
.devhub-wrap .section .home-primary-content {
max-width: 600px;
max-width: 60rem;
margin: 0 auto;
}
.devhub-wrap .section.light-gray {
background: #f2f2f2;
color: #606060;
}
.devhub-wrap .section.light-gray .widget-title {
color: #606060;
font-weight: 600;
}
.devhub-wrap .section.light-gray .widget-title a {
color: #2D96C2;
}
.devhub-wrap .section.light-gray a {
color: #606060;
text-decoration: none;
}
.devhub-wrap .box {
padding: 30px;
padding: 3rem;
float: left;
clear: none;
}
.devhub-wrap .reference-landing .section {
max-width: 700px;
max-width: 70rem;
margin: 0 auto;
}
.devhub-wrap .reference-landing .section h2,
.devhub-wrap .reference-landing .section h3,
.devhub-wrap .reference-landing .section h4 {
margin-bottom: 1em;
color: #404040;
}
.devhub-wrap .reference-landing .section h2.widget-title,
.devhub-wrap .reference-landing .section h3.widget-title,
.devhub-wrap .reference-landing .section h4.widget-title {
margin-bottom: 0;
}
.devhub-wrap .reference-landing .box,
.devhub-wrap .sidebar .box {
padding: 0;
}
.devhub-wrap .reference-landing .box .widget-title,
.devhub-wrap .sidebar .box .widget-title {
padding: 10px 30px;
padding: 1rem 30px;
font-size: 16px;
font-size: 1.6rem;
}
.devhub-wrap .reference-landing .box .widget-content,
.devhub-wrap .sidebar .box .widget-content {
padding: 16px 30px;
padding: 1.6rem 3rem;
}
.devhub-wrap .three-columns .box {
width: 31%;
margin: 1.15%;
}
.devhub-wrap .two-columns .box {
width: 48%;
margin: 1%;
}
.devhub-wrap .reference-landing {
padding: 1em 0;
}
.devhub-wrap .reference-landing .section {
padding: 1.5em 0;
}
.devhub-wrap .no-bullets,
.devhub-wrap .sidebar .widget ul {
list-style-type: none;
margin: 0;
padding: 0;
}
.devhub-wrap .horizontal-list {
display: inline;
list-style-type: none;
margin: 0;
padding: 0;
}
.devhub-wrap .horizontal-list li {
display: inline;
}
.devhub-wrap .horizontal-list li a {
padding: 0px 40px;
padding: 0 4rem;
border-left: 1px solid #ccc;
}
.devhub-wrap .horizontal-list li:first-child a {
padding-left: 0;
border-left: none;
}
.devhub-wrap .reference-landing .searchform,
.devhub-wrap .reference-landing .searchform input {
height: 50px;
height: 5rem;
margin-bottom: 1em;
width: 100%;
}
.devhub-wrap .reference-landing .searchform label {
width: 560px;
width: 56rem;
max-width: 100%;
margin-right: 15px;
display: inline-block;
float: left;
}
.devhub-wrap .reference-landing .searchform label .search-field input[type="text"] {
width: 100%;