-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
4723 lines (4489 loc) · 113 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: Tiny Framework
Theme URI: http://mtomas.com/1/
Author: Tomas Mackevicius
Author URI: http://mtomas.com/
Description: Tiny Framework theme was created with the future in mind and encompasses all the best features of the default WordPress themes in one place, adds full accessibility and Structured Data Markup with Schema.org microdata format support. Fast start is ensured with very extensive documentation! Tiny Framework features elegant responsive mobile-first design, HTML5 ready structure of Underscores, custom per-post headers, custom logo, three footer widgets, FontAwesome icon webfont and Google Fonts support. Web developers will enjoy integrated Theme Hook Alliance custom action hooks. It's all there, you have everything in one neat package. Along with the main theme you will find an example of a child theme - an easy way to start developing with child themes! Tiny Framework can be used as a learning tool or your own little web development "framework". With its unique "Coding Tips System" Tiny Framework helps to understand how to extend parent themes and build your own child themes, hacking them the way you want. You get the best coding examples from default WordPress themes and the best hacks from the child theme. Please read readme.txt for a quick start guide, tips and tricks. For more information please see: http://mtomas.com/1/
Version: 2.3.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: one-column, two-columns, right-sidebar, custom-background, custom-header, custom-logo, custom-menu, editor-style, featured-image-header, featured-images, flexible-header, footer-widgets, full-width-template, microformats, post-formats, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready, accessibility-ready, blog, e-commerce, education
Text Domain: tiny-framework
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.
*/
/* Notes
--------------------------------------------------------------
This stylesheet uses rem values with a pixel fallback. The rem
values (and line heights) are calculated using two variables:
$rembase: 16;
$line-height: 24;
We use rem for: font-size, margin, padding, width, max-width when using in px.
For easy calculation you may use this tool, set "Choose your <HTML> font-size (px)" to 16:
@link https://offroadcode.com/prototypes/rem-calculator/
---------- Examples
padding: 5px 0;
padding: 0.3125rem 0; (5 / $rembase)
* Set a font-size and then set a line-height based on the font-size:
font-size: 16px
font-size: 1rem; (16 / $rembase)
line-height: 1.5; ($line-height / 16)
---------- Vertical spacing
Vertical spacing between most elements should use 24px or 48px to maintain vertical rhythm:
.my-new-div {
margin: 24px 0;
margin: 1.5rem 0; ( 24 / $rembase )
}
---------- Further reading
http://snook.ca/archives/html_and_css/font-size-with-rem
http://blog.typekit.com/2011/11/09/type-study-sizing-the-legible-letter/
To calculate golden ratio for font size and line height you will need these tools:
http://www.pearsonified.com/typography/
Sizes in rem units for quick reference:
1px: 0.0625rem
2px: 0.125rem
3px: 0.1875rem
4px: 0.25rem
5px: 0.3125rem
6px: 0.375rem
7px: 0.4375rem
8px: 0.5rem
9px: 0.5625rem
10px: 0.625rem
11px: 0.6875rem
12px: 0.75rem
13px: 0.8125rem
14px: 0.875rem
15px: 0.9375rem
16px: 1rem
17px: 1.0625rem
18px: 1.125rem
19px: 1.1875rem
20px: 1.25rem
21px: 1.3125rem
22px: 1.375rem
23px: 1.4375rem
24px: 1.5rem
25px: 1.5625rem
26px: 1.625rem
27px: 1.6875rem
28px: 1.75rem
29px: 1.8125rem
30px: 1.875rem
31px: 1.9375rem
32px: 2rem
33px: 2.0625rem
34px: 2.125rem
35px: 2.1875rem
36px: 2.25rem
37px: 2.3125rem
38px: 2.375rem
39px: 2.4375rem
40px: 2.5rem
41px: 2.5625rem
42px: 2.625rem
43px: 2.6875rem
44px: 2.75rem
45px: 2.8125rem
46px: 2.875rem
47px: 2.9375rem
48px: 3rem
*/
/* Accessibility: Colors
* All major background and text colors are recorded here.
* Border and shadow colors are defined using rgba values.
* Color contrast must meet a minimum of 4.5:1 luminosity ratio, or 3:1 for text rendered larger than 18pt/14pt bold
*
* For links:
* A 4.5:1 contrast between the link text color and the background.
* A 3:1 contrast between the link text color and the surrounding non-link text color.
* More info at: http://webaim.org/blog/wcag-2-0-and-link-colors/
*/
/* Site colors
Green for icon-font: #6ba420
Green for blockquote: #6ba420
Orange for widget titles and hover link state: #ff6111
Body text color: #222
Content links:
Link: #0066df
Visited: #800080
Hover, active: #dd3811
Headings: #333
Entry title:
In mobile view: #333
Link, visited: #000
Hover, active: #ff6111
Meta, comment links:
Link, visited: #555
Hover, active: #dd3811
Sidebar and footer links:
Link, visited: #555
Hover, active: #dd3811
Current and parent categories: #dd3811
*/
/* Table of Contents:
*
* 1.0 - Normalize
* 2.0 - Typography
* 3.0 - Elements
* 3.1 - FontAwesome webfont
* 4.0 - Forms
* 4.1 - General styles first
* 4.2 - Buttons
* 4.3 - Twitter Bootstrap style button
* 5.0 - Navigation
* 5.1 - Links
* 5.2 - Menus
* 5.3 - Post, archive navigation
* 6.0 - Accessibility
* 7.0 - Alignments
* 8.0 - Clearings
* 9.0 - Widgets
* 9.1 - General widget styles
* 9.2 - Specific widget styles
* 9.3 - Footer widget styles
* 10.0 - Header
* 10.1 - Site Header
* 11.0 - Content
* 11.1 - Posts and pages
* 11.2 - Post Formats
* 11.3 - Comments
* 11.4 - Page templates
* 12.0 - Footer
* 13.0 - Media
* 13.1 - Images
* 13.2 - Captions
* 13.3 - Galleries
* 14.0 - Other styles
* 14.1 - Twitter Bootstrap style alerts
* 14.2 - Misc. styles
* 15.0 - Media queries
* 15.0a - Maximum width of 800 pixels
* 15.0b - Maximum width of 782 pixels - it only affects the mobile view
* 15.0c - Maximum width of 320 pixels - it only affects the mobile view
* 15.1 - Minimum width of 783 pixels (small screens - mobile phones, small tablets in portrait view mode)
* 15.2 - Minimum width of 1100 pixels (average size screens - monitors, small tablets in landscape view mode, larger tablets)
* 15.3 - Minimum width of 1240 pixels (big screens - widescreen monitors, high resolution tablets)
* 15.4 - Retina-specific styles. This style cannot be processed by LESS
* 16.0 - Print
* 16.1 - Comments
*
* ----------------------------------------------------------------------------
*/
/* 1.0 Normalize
-------------------------------------------------------------- */
html {
line-height: 1.15;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
}
body {
margin: 0;
}
article,
aside,
footer,
header,
nav,
section {
display: block;
}
h1 {
font-size: 2em;
margin: 0.67em 0;
}
figcaption,
figure,
main {
display: block;
}
figure {
margin: 1em 40px;
}
hr {
box-sizing: content-box;
height: 0;
overflow: visible;
}
pre {
font-family: monospace, monospace;
font-size: 1em;
}
a {
background-color: transparent;
-webkit-text-decoration-skip: objects;
}
abbr[title] {
border-bottom: none;
text-decoration: underline;
text-decoration: underline dotted;
}
b,
strong {
font-weight: inherit;
}
b,
strong {
font-weight: bolder;
}
code,
kbd,
samp {
font-family: monospace, monospace;
font-size: 1em;
}
dfn {
font-style: italic;
}
mark {
background-color: #ff0;
color: #000;
}
small {
font-size: 80%;
}
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
sub {
bottom: -0.25em;
}
sup {
top: -0.5em;
}
audio,
video {
display: inline-block;
}
audio:not([controls]) {
display: none;
height: 0;
}
img {
border-style: none;
}
svg:not(:root) {
overflow: hidden;
}
button,
input,
optgroup,
select,
textarea {
font-family: sans-serif;
font-size: 100%;
line-height: 1.15;
margin: 0;
}
button,
input {
overflow: visible;
}
button,
select {
text-transform: none;
}
button,
html [type="button"],
[type="reset"],
[type="submit"] {
-webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
border-style: none;
padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
outline: 1px dotted ButtonText;
}
fieldset {
min-width: inherit; /* added */
padding: 0.35em 0.625em 0.75em;
}
legend {
box-sizing: border-box;
color: inherit;
display: table;
max-width: 100%;
padding: 0;
white-space: normal;
}
progress {
display: inline-block;
vertical-align: baseline;
}
textarea {
overflow: auto;
}
[type="checkbox"],
[type="radio"] {
box-sizing: border-box;
padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
height: auto;
}
[type="search"] {
-webkit-appearance: textfield;
outline-offset: -2px;
}
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
}
::-webkit-file-upload-button {
-webkit-appearance: button;
font: inherit;
}
details,
menu {
display: block;
}
summary {
display: list-item;
}
canvas {
display: inline-block;
}
template {
display: none;
}
[hidden] {
display: none;
}
/* 2.0 Typography
-------------------------------------------------------------- */
/* Tip22 - Improve font rendering and fallback in Linux - http://www.onedesigns.com/tutorials/font-families-for-cross-compatible-typography */
body,
button,
input,
select,
textarea {
color: #222;
/* Improving font rendering in Linux, in case default Open Sans font is disabled */
font-family: Verdana, Geneva, "DejaVu Sans", sans-serif;
font-size: 16px;
font-size: 1rem;
line-height: 1.8; /* original: 1.714285714 */
text-rendering: optimizeLegibility;
}
body.custom-font-enabled {
/* Improving font fallback in Linux */
font-family: "Open Sans", Verdana, Geneva, "DejaVu Sans", sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
clear: both;
font-weight: bold;
margin: 0;
text-align: left;
}
cite,
dfn,
em,
i {
font-style: italic;
}
/* Also check rtl.css in case you need to adjust blockquote styles for rtl language */
blockquote {
color: #6ba420;
font-size: 20px;
font-size: 1.25rem;
line-height: 1.6;
margin: 12px 0 24px 48px;
margin: 0.75rem 0 1.5rem 3rem;
padding: 0;
}
/* Tip21 - Icon webfont support implementation and examples */
blockquote p:first-child:before {
color: #6ba420;
content: "\f10d"; /* fa-quote-left */
font: normal 36px/1 "FontAwesome";
margin-left: -48px;
margin-left: -3rem;
padding-right: 12px;
padding-right: 0.75rem;
vertical-align: bottom;
}
.comment-content blockquote {
color: #555;
font-size: 16px;
font-size: 1rem;
line-height: 1.667;
margin: 12px 0 12px 34px;
margin: 0.75rem 0 0.75rem 2.125rem;
}
.comment-content blockquote p:first-child:before {
color: #8f8f8f;
font: normal 24px/1 "FontAwesome";
margin-left: -34px;
margin-left: -2.125rem;
}
blockquote p {
margin-bottom: 12px;
margin-bottom: 0.75rem;
}
blockquote > p:last-child {
margin-bottom: 0;
}
blockquote cite,
blockquote small {
font-size: 75%;
line-height: 1.6;
}
blockquote cite,
blockquote em,
blockquote i {
font-style: italic;
}
blockquote cite {
display: block;
margin-top: 2px;
margin-top: 0.125rem;
text-align: right;
}
/* Tip37 - automatically style author's name in a blockquote. Author's name should be enclosed in <cite>.
*
* The symbol list for content: @link http://www.w3schools.com/charsets/ref_utf_punctuation.asp
*/
/*
blockquote cite:before {
content: "\2012\00a0";
}
*/
blockquote b,
blockquote strong {
font-weight: bold;
}
address {
font-style: italic;
margin: 0 0 24px;
margin: 0 0 1.5rem;
}
code,
kbd,
pre,
samp,
tt,
var {
font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
-webkit-hyphens: none;
-moz-hyphens: none;
-ms-hyphens: none;
hyphens: none;
}
code {
background-color: #f7f7f9;
border: 1px solid #e1e1e8;
border-radius: 4px;
color: #dd1144;
font-size: 13px;
font-size: 0.8125rem;
padding: 2px 4px;
padding: 0.125rem 0.25rem;
white-space: pre;
white-space: pre-wrap;
}
pre {
background-color: transparent;
line-height: 1.2;
margin: 24px 0;
margin: 1.5rem 0;
max-width: 100%;
overflow: auto;
white-space: pre;
white-space: pre-wrap;
word-break: break-all;
}
pre code {
background-color: #f7f7f9;
border: 1px solid #e1e1e8;
color: inherit;
display: block;
line-height: 2;
padding: 24px;
padding: 1.5rem;
word-break: normal;
}
abbr[title],
acronym,
dfn {
border-bottom: 1px dotted #777;
cursor: help;
}
ins,
mark {
background-color: #fff9c0;
text-decoration: none;
}
small {
font-size: 75%;
}
big {
font-size: 125%;
}
/* 3.0 Elements
-------------------------------------------------------------- */
html {
box-sizing: border-box;
}
*,
*:after,
*:before { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
box-sizing: inherit;
}
body {
background: #fff; /* Fallback for when there is no custom background color defined. */
}
blockquote:after,
blockquote:before,
q:after,
q:before {
content: "";
}
blockquote,
q {
quotes: "" "";
}
hr {
background-color: #ccc;
border: 0;
height: 1px;
margin-bottom: 24px;
margin-bottom: 1.5rem;
}
ol,
ul {
margin: 0 0 1.5rem 1.375rem;
padding: 0;
}
ol {
list-style: decimal;
}
ul {
list-style: disc;
}
li > ol,
li > ul {
margin-bottom: 0;
}
dl {
margin-bottom: 24px;
margin-bottom: 1.5rem;
}
dt {
font-weight: bold;
}
dd {
margin-bottom: 24px;
margin-bottom: 1.5rem;
}
table,
td,
th {
border: 1px solid #ccc;
}
table {
border-collapse: separate;
border-spacing: 0;
border-width: 1px 0 0 1px; /* border-bottom: 1px solid #ededed; */
margin: 0 0 24px;
margin: 0 0 1.5rem;
table-layout: fixed; /* Prevents HTML tables from becoming too wide */
width: 100%;
}
caption,
td,
th {
font-weight: normal;
text-align: left;
}
th {
border-width: 0 1px 1px 0;
}
td {
border-width: 0 1px 1px 0;
}
td,
th {
padding: 0.4375rem;
}
thead tr {
background-color: #eff7ff;
}
tbody tr:nth-child(even) {
background-color: #f7f7f7;
}
tbody tr:nth-child(odd) {
background-color: #fff;
}
img {
-ms-interpolation-mode: bicubic;
border: 0;
height: auto;
max-width: 100%;
vertical-align: middle;
}
del {
opacity: 0.8;
}
/* 3.1 FontAwesome webfont */
/* Tip21 - Icon webfont support implementation and examples
*
* All icon webfont related styles (except for Tip21 and Tip05) are in this section so it would be easy to change them
* in case of migration to another icon webfont.
*/
.author-link:after,
.byline:before,
.cat-links:before,
.comments-link:before,
.content-area a[href$=doc]:before,
.content-area a[href$=docx]:before,
.content-area a[href$=gz]:before,
.content-area a[href$=pdf]:before,
.content-area a[href$=ppt]:before,
.content-area a[href$=pptx]:before,
.content-area a[href$=rar]:before,
.content-area a[href$=xls]:before,
.content-area a[href$=xlsx]:before,
.content-area a[href$=zip]:before,
.content-area .icon-archive-file:before,
.content-area .icon-excel:before,
.content-area .icon-pdf:before,
.content-area .icon-powerpoint:before,
.content-area .icon-word:before,
.edit-link:before,
.entry-content a[target=_blank]:link:after,
.entry-content .more-link:after,
.entry-format:before,
.entry-header .title-comment-meta a:before,
.entry-summary .more-link:after,
.format-aside .entry-format:before,
.format-image .entry-format:before,
.format-link .entry-format:before,
.format-quote .entry-format:before,
.format-status .entry-format:before,
.full-size-link:before,
.icon-webfont,
.posted-on:before,
.tags-links:before,
.author .page-title:before,
.category .page-title:before,
.date .page-title:before,
.error-404 .page-title:before,
.search-no-results .page-title:before,
.search-results .page-title:before,
.sticky .page-title:before,
.tag .page-title:before,
.nav-menu .menu-item-has-children > a:after,
.nav-menu .page_item_has_children > a:after,
.sub-menu .menu-item-has-children > a:after,
.sub-menu .page_item_has_children > a:after,
.nav-next a:after,
.nav-previous a:before,
.pagination .next:after,
.pagination .prev:before,
.post-password-required .entry-title:before,
.status-private .entry-title:before,
.social-navigation a,
.social-navigation a:before,
ul.list-icon-ok li:before,
ul.list-icon-file li:before,
ul.list-icon-hand-right li:before {
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
display: inline-block;
font-family: FontAwesome;
font-size: 16px;
font-size: 1rem;
font-style: normal;
font-variant: normal;
font-weight: normal;
line-height: 1;
speak: none;
text-align: center;
text-decoration: inherit;
text-rendering: auto;
text-transform: none;
}
a.icon-webfont,
a .icon-webfont,
a:hover.icon-webfont,
a:hover .icon-webfont,
a:active.icon-webfont,
a:active .icon-webfont,
.entry-content a[target=_blank]:link:after {
text-decoration: none!important;
}
.author .page-title:before,
.category .page-title:before,
.date .page-title:before,
.error-404 .page-title:before,
.search-results .page-title:before,
.search-no-results .page-title:before,
.sticky .page-title:before,
.tag .page-title:before,
.post-password-required .entry-title:before,
.status-private .entry-title:before {
font-size: 28px;
font-size: 1.75rem;
padding-right: 10px;
padding-right: 0.625rem;
vertical-align: middle;
}
.author .page-title:before {
content: "\f007";
}
.category .page-title:before {
content: "\f07c";
}
.date .page-title:before {
content: "\f073";
vertical-align: baseline;
}
.error-404 .page-title:before,
.search-no-results .page-title:before {
content: "\f071";
}
.search-results .page-title:before {
content: "\f002";
}
.sticky .page-title:before{
content: "\f0eb";
vertical-align: baseline;
}
.tag .page-title:before {
content: "\f02c";
}
.post-password-required .entry-title:before {
color: #ff0000;
content: "\f023";
padding-right: 5px;
padding-right: 0.3125rem;
vertical-align: baseline;
}
.status-private .entry-title:before {
color: #ff0000;
content: "\f007";
padding-right: 5px;
padding-right: 0.3125rem;
vertical-align: baseline;
}
/* Tip23 - Mark links to documents with corresponding icons for PDF, Word, Excel, PowerPoint and archive documents.
*
* You can always invoke document icons with classes: icon-pdf, icon-word, icon-excel, icon-powerpoint, icon-archive-file
*
* To activate automatic icon placement on links to the documents, uncomment next block of CSS rules.
*
* 7z extension was non added because it produces error, most likelly because of lack of MIME type support on some servers:
* https://stackoverflow.com/questions/18562580/possible-to-add-mime-type-to-web-config-without-possibly-breaking-the-site
*/
/*
.content-area a[href$=doc]:before,
.content-area a[href$=docx]:before,
.content-area a[href$=gz]:before,
.content-area a[href$=pdf]:before,
.content-area a[href$=ppt]:before,
.content-area a[href$=pptx]:before,
.content-area a[href$=rar]:before,
.content-area a[href$=xls]:before,
.content-area a[href$=xlsx]:before,
.content-area a[href$=zip]:before {
font-size: 18px;
font-size: 1.125rem;
padding-right: 5px;
padding-right: 0.3125rem;
vertical-align: baseline;
}
.content-area a[href$=doc]:before,
.content-area a[href$=docx]:before {
color: #2a5699;
content: "\f1c2";
}
.content-area a[href$=pdf]:before {
color: #bb0706;
content: "\f1c1";
}
.content-area a[href$=ppt]:before,
.content-area a[href$=pptx]:before {
color: #d24625;
content: "\f1c4";
}
.content-area a[href$=xls]:before,
.content-area a[href$=xlsx]:before {
color: #207245;
content: "\f1c3";
}
.content-area a[href$=gz]:before,
.content-area a[href$=rar]:before,
.content-area a[href$=zip]:before {
color: #428f27;
content: "\f1c6";
}
*/
/* Do not add file type icon to buttons */
/*
.content-area a.btn[href$=doc]:before,
.content-area a.btn[href$=docx]:before,
.content-area a.btn[href$=gz]:before,
.content-area a.btn[href$=pdf]:before,
.content-area a.btn[href$=ppt]:before,
.content-area a.btn[href$=pptx]:before,
.content-area a.btn[href$=rar]:before,
.content-area a.btn[href$=xls]:before,
.content-area a.btn[href$=xlsx]:before,
.content-area a.btn[href$=zip]:before {
content: none;
}
*/
.content-area .icon-archive-file:before,
.content-area .icon-excel:before,
.content-area .icon-pdf:before,
.content-area .icon-powerpoint:before,
.content-area .icon-word:before {
font-size: 18px;
font-size: 1.125rem;
padding-right: 5px;
padding-right: 0.3125rem;
vertical-align: baseline;
}
.content-area .icon-archive-file:before {
color: #428f27;
content: "\f1c6";
}
.content-area .icon-excel:before {
color: #207245;
content: "\f1c3";
}
.content-area .icon-pdf:before {
color: #bb0706;
content: "\f1c1";
}
.content-area .icon-powerpoint:before {
color: #d24625;
content: "\f1c4";
}
.content-area .icon-word:before {
color: #2a5699;
content: "\f1c2";
}
/* Remaining css for webfont icons is plugged-in via functions.php */
/* 4.0 Forms
-------------------------------------------------------------- */
/* 4.1 General styles first */
button,
input,
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
select,
textarea {
border: 1px solid #ccc;
border-radius: 3px;
font-family: inherit;
-webkit-hyphens: none;
-moz-hyphens: none;
-ms-hyphens: none;
hyphens: none;
line-height: normal;
padding: 6px;
padding: 0.375rem;
}
textarea {
font-size: 100%;
overflow: auto;
vertical-align: top;
width: 100%;
}
/* Tip83 - Make focused input fields glow - from Twitter Bootstrap */
input:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
border-color: rgba(82, 168, 236, 0.8);
outline: 0;
outline: thin dotted \9; /* IE6-9 hack */
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);