-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
1065 lines (961 loc) · 21.9 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: podofski
Theme URI: http://underscores.me/
Author: flo
Description: private Theme for podofski.de
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: podofski
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.
podofski is based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.
Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
## Links
## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
## Posts and pages
## Comments
# Infinite scroll
# Media
## Captions
## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
/* line 1, sass/_normalize.scss */
html {
font-family: sans-serif;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
}
/* line 7, sass/_normalize.scss */
body {
margin: 0;
}
/* line 11, sass/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
display: block;
}
/* line 26, sass/_normalize.scss */
audio,
canvas,
progress,
video {
display: inline-block;
vertical-align: baseline;
}
/* line 34, sass/_normalize.scss */
audio:not([controls]) {
display: none;
height: 0;
}
/* line 39, sass/_normalize.scss */
[hidden],
template {
display: none;
}
/* line 44, sass/_normalize.scss */
a {
background-color: transparent;
}
/* line 48, sass/_normalize.scss */
a:active,
a:hover {
outline: 0;
}
/* line 53, sass/_normalize.scss */
abbr[title] {
border-bottom: 1px dotted;
}
/* line 57, sass/_normalize.scss */
b,
strong {
font-weight: bold;
}
/* line 62, sass/_normalize.scss */
dfn {
font-style: italic;
}
/* line 66, sass/_normalize.scss */
h1 {
font-size: 2em;
margin: 0.67em 0;
}
/* line 71, sass/_normalize.scss */
mark {
background: #ff0;
color: #000;
}
/* line 76, sass/_normalize.scss */
small {
font-size: 80%;
}
/* line 80, sass/_normalize.scss */
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
/* line 88, sass/_normalize.scss */
sup {
top: -0.5em;
}
/* line 92, sass/_normalize.scss */
sub {
bottom: -0.25em;
}
/* line 96, sass/_normalize.scss */
img {
border: 0;
}
/* line 100, sass/_normalize.scss */
svg:not(:root) {
overflow: hidden;
}
/* line 104, sass/_normalize.scss */
figure {
margin: 1em 40px;
}
/* line 108, sass/_normalize.scss */
hr {
box-sizing: content-box;
height: 0;
}
/* line 113, sass/_normalize.scss */
pre {
overflow: auto;
}
/* line 117, sass/_normalize.scss */
code,
kbd,
pre,
samp {
font-family: monospace, monospace;
font-size: 1em;
}
/* line 125, sass/_normalize.scss */
button,
input,
optgroup,
select,
textarea {
color: inherit;
font: inherit;
margin: 0;
}
/* line 135, sass/_normalize.scss */
button {
overflow: visible;
}
/* line 139, sass/_normalize.scss */
button,
select {
text-transform: none;
}
/* line 144, sass/_normalize.scss */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
-webkit-appearance: button;
cursor: pointer;
}
/* line 152, sass/_normalize.scss */
button[disabled],
html input[disabled] {
cursor: default;
}
/* line 157, sass/_normalize.scss */
button::-moz-focus-inner,
input::-moz-focus-inner {
border: 0;
padding: 0;
}
/* line 163, sass/_normalize.scss */
input {
line-height: normal;
}
/* line 167, sass/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
box-sizing: border-box;
padding: 0;
}
/* line 173, sass/_normalize.scss */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
height: auto;
}
/* line 178, sass/_normalize.scss */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
}
/* line 183, sass/_normalize.scss */
fieldset {
border: 1px solid #c0c0c0;
margin: 0 2px;
padding: 0.35em 0.625em 0.75em;
}
/* line 189, sass/_normalize.scss */
legend {
border: 0;
padding: 0;
}
/* line 194, sass/_normalize.scss */
textarea {
overflow: auto;
}
/* line 198, sass/_normalize.scss */
optgroup {
font-weight: bold;
}
/* line 202, sass/_normalize.scss */
table {
border-collapse: collapse;
border-spacing: 0;
}
/* line 207, sass/_normalize.scss */
td,
th {
padding: 0;
}
/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
/* line 1, sass/typography/_typography.scss */
body,
button,
input,
select,
optgroup,
textarea {
color: #fff;
font-family: Futura, sans-serif;
font-size: 16px;
font-size: 1rem;
line-height: 1.9;
}
/* line 1, sass/typography/_headings.scss */
h1, h2, h3, h4, h5, h6 {
clear: both;
}
/* line 1, sass/typography/_copy.scss */
p {
margin-bottom: 1.5em;
}
/* line 5, sass/typography/_copy.scss */
dfn, cite, em, i {
font-style: italic;
}
/* line 9, sass/typography/_copy.scss */
blockquote {
margin: 0 1.5em;
}
/* line 13, sass/typography/_copy.scss */
address {
margin: 0 0 1.5em;
}
/* line 17, sass/typography/_copy.scss */
pre {
background: #eee;
font-family: "Courier 10 Pitch", Courier, monospace;
font-size: 15px;
font-size: 0.9375rem;
line-height: 1.6;
margin-bottom: 1.6em;
max-width: 100%;
overflow: auto;
padding: 1.6em;
}
/* line 28, sass/typography/_copy.scss */
code, kbd, tt, var {
font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
font-size: 15px;
font-size: 0.9375rem;
}
/* line 33, sass/typography/_copy.scss */
abbr, acronym {
border-bottom: 1px dotted #666;
cursor: help;
}
/* line 38, sass/typography/_copy.scss */
mark, ins {
background: #fff9c0;
text-decoration: none;
}
/* line 43, sass/typography/_copy.scss */
big {
font-size: 125%;
}
/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
/* line 1, sass/elements/_elements.scss */
html {
box-sizing: border-box;
}
/* line 5, sass/elements/_elements.scss */
*,
*:before,
*:after {
/* 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;
}
/* line 11, sass/elements/_elements.scss */
body {
background: #8adaae;
/* Fallback for when there is no custom background color defined. */
}
/* line 15, sass/elements/_elements.scss */
blockquote, q {
quotes: "" "";
}
/* line 18, sass/elements/_elements.scss */
blockquote:before, blockquote:after, q:before, q:after {
content: "";
}
/* line 24, sass/elements/_elements.scss */
hr {
background-color: #ccc;
border: 0;
height: 1px;
margin-bottom: 1.5em;
}
/* line 1, sass/elements/_lists.scss */
ul, ol {
margin: 0 0 1.5em 3em;
}
/* line 5, sass/elements/_lists.scss */
ul {
list-style: disc;
}
/* line 9, sass/elements/_lists.scss */
ol {
list-style: decimal;
}
/* line 13, sass/elements/_lists.scss */
li > ul,
li > ol {
margin-bottom: 0;
margin-left: 1.5em;
}
/* line 19, sass/elements/_lists.scss */
dt {
font-weight: bold;
}
/* line 23, sass/elements/_lists.scss */
dd {
margin: 0 1.5em 1.5em;
}
/* line 33, sass/elements/_elements.scss */
img {
height: auto;
/* Make sure images are scaled correctly. */
max-width: 100%;
/* Adhere to container width. */
}
/* line 38, sass/elements/_elements.scss */
figure {
margin: 1em 0;
/* Extra wide images within figure tags don't overflow the content area. */
}
/* line 1, sass/elements/_tables.scss */
table {
margin: 0 0 1.5em;
width: 100%;
}
/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
/* line 1, sass/forms/_buttons.scss */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
border: 1px solid;
border-color: #ccc #ccc #bbb;
border-radius: 3px;
background: #e6e6e6;
color: rgba(0, 0, 0, 0.8);
font-size: 12px;
font-size: 0.75rem;
line-height: 1;
padding: .6em 1em .4em;
}
/* line 14, sass/forms/_buttons.scss */
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
border-color: #ccc #bbb #aaa;
}
/* line 18, sass/forms/_buttons.scss */
button:active, button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
border-color: #aaa #bbb #bbb;
}
/* line 1, sass/forms/_fields.scss */
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"],
textarea {
color: #666;
border: 1px solid #ccc;
border-radius: 3px;
padding: 3px;
}
/* line 22, sass/forms/_fields.scss */
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 {
color: #111;
}
/* line 27, sass/forms/_fields.scss */
select {
border: 1px solid #ccc;
}
/* line 31, sass/forms/_fields.scss */
textarea {
width: 100%;
}
/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
/* line 1, sass/navigation/_links.scss */
a {
color: #d661a1;
}
/* line 4, sass/navigation/_links.scss */
a:visited {
color: #d661a1;
}
/* line 7, sass/navigation/_links.scss */
a:hover, a:focus, a:active {
color: #ba307c;
}
/* line 12, sass/navigation/_links.scss */
a:focus {
outline: thin dotted;
}
/* line 15, sass/navigation/_links.scss */
a:hover, a:active {
outline: 0;
}
/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
/* line 1, sass/navigation/_menus.scss */
.main-navigation {
clear: both;
display: block;
float: left;
width: 100%;
}
/* line 7, sass/navigation/_menus.scss */
.main-navigation ul {
display: none;
list-style: none;
margin: 0;
padding-left: 0;
}
/* line 13, sass/navigation/_menus.scss */
.main-navigation ul ul {
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
float: left;
position: absolute;
top: 100%;
left: -999em;
z-index: 99999;
}
/* line 21, sass/navigation/_menus.scss */
.main-navigation ul ul ul {
left: -999em;
top: 0;
}
/* line 27, sass/navigation/_menus.scss */
.main-navigation ul ul li:hover > ul, .main-navigation ul ul li.focus > ul {
left: 100%;
}
/* line 33, sass/navigation/_menus.scss */
.main-navigation ul ul a {
width: 200px;
}
/* line 46, sass/navigation/_menus.scss */
.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
left: auto;
}
/* line 52, sass/navigation/_menus.scss */
.main-navigation li {
float: left;
position: relative;
}
/* line 61, sass/navigation/_menus.scss */
.main-navigation a {
display: block;
text-decoration: none;
}
/* Small menu. */
/* line 74, sass/navigation/_menus.scss */
.menu-toggle,
.main-navigation.toggled ul {
display: block;
}
@media screen and (min-width: 37.5em) {
/* line 80, sass/navigation/_menus.scss */
.menu-toggle {
display: none;
}
/* line 83, sass/navigation/_menus.scss */
.main-navigation ul {
display: block;
}
}
/* line 92, sass/navigation/_menus.scss */
.site-main .comment-navigation, .site-main
.posts-navigation, .site-main
.post-navigation {
margin: 0 0 1.5em;
overflow: hidden;
}
/* line 97, sass/navigation/_menus.scss */
.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
float: left;
width: 50%;
}
/* line 102, sass/navigation/_menus.scss */
.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
float: right;
text-align: right;
width: 50%;
}
/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
/* line 2, sass/modules/_accessibility.scss */
.screen-reader-text {
clip: rect(1px, 1px, 1px, 1px);
position: absolute !important;
height: 1px;
width: 1px;
overflow: hidden;
word-wrap: normal !important;
/* Many screen reader and browser combinations announce broken words as they would appear visually. */
}
/* line 10, sass/modules/_accessibility.scss */
.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-size: 0.875rem;
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. */
}
/* Do not show the outline on the skip link target. */
/* line 31, sass/modules/_accessibility.scss */
#content[tabindex="-1"]:focus {
outline: 0;
}
/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
/* line 1, sass/modules/_alignments.scss */
.alignleft {
display: inline;
float: left;
margin-right: 1.5em;
}
/* line 7, sass/modules/_alignments.scss */
.alignright {
display: inline;
float: right;
margin-left: 1.5em;
}
/* line 13, sass/modules/_alignments.scss */
.aligncenter {
clear: both;
display: block;
margin-left: auto;
margin-right: auto;
}
/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
/* line 1, sass/modules/_clearings.scss */
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
content: "";
display: table;
table-layout: fixed;
}
/* line 16, sass/modules/_clearings.scss */
.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
clear: both;
}
/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
/* line 1, sass/site/secondary/_widgets.scss */
.widget {
margin: 0 0 1.5em;
/* Make sure select elements fit in widgets. */
}
/* line 5, sass/site/secondary/_widgets.scss */
.widget select {
max-width: 100%;
}
/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
/* line 1, sass/site/primary/_posts-and-pages.scss */
.sticky {
display: block;
}
/* line 5, sass/site/primary/_posts-and-pages.scss */
.hentry {
margin: 0 0 1.5em;
}
/* line 9, sass/site/primary/_posts-and-pages.scss */
.updated:not(.published) {
display: none;
}
/* line 13, sass/site/primary/_posts-and-pages.scss */
.page-content,
.entry-content,
.entry-summary {
margin: 1.5em 0 0;
}
/* line 19, sass/site/primary/_posts-and-pages.scss */
.page-links {
clear: both;
margin: 0 0 1.5em;
}
/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
/* line 1, sass/site/primary/_comments.scss */
.comment-content a {
word-wrap: break-word;
}
/* line 4, sass/site/primary/_comments.scss */
.bypostauthor {
display: block;
}
/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
/* line 2, sass/modules/_infinite-scroll.scss */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
/* Theme Footer (when set to scrolling) */
display: none;
}
/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
/* line 8, sass/modules/_infinite-scroll.scss */
.infinity-end.neverending .site-footer {
display: block;
}
/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
/* line 1, sass/media/_media.scss */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
border: none;
margin-bottom: 0;
margin-top: 0;
padding: 0;
}
/* Make sure embeds and iframes fit their containers. */
/* line 11, sass/media/_media.scss */
embed,
iframe,
object {
max-width: 100%;
}
/* Make sure logo link wraps around logo image. */
/* line 18, sass/media/_media.scss */
.custom-logo-link {
display: inline-block;
}
/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
/* line 1, sass/media/_captions.scss */
.wp-caption {
margin-bottom: 1.5em;
max-width: 100%;
}
/* line 5, sass/media/_captions.scss */
.wp-caption img[class*="wp-image-"] {
display: block;
margin-left: auto;
margin-right: auto;
}
/* line 9, sass/media/_captions.scss */
.wp-caption .wp-caption-text {
margin: 0.8075em 0;
}
/* line 14, sass/media/_captions.scss */
.wp-caption-text {
text-align: center;
}
/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
/* line 1, sass/media/_galleries.scss */
.gallery {
margin-bottom: 1.5em;
}
/* line 5, sass/media/_galleries.scss */
.gallery-item {
display: inline-block;
text-align: center;
vertical-align: top;
width: 100%;
}
/* line 13, sass/media/_galleries.scss */
.gallery-columns-2 .gallery-item {
max-width: 50%;
}
/* line 13, sass/media/_galleries.scss */
.gallery-columns-3 .gallery-item {
max-width: 33.33333%;
}
/* line 13, sass/media/_galleries.scss */
.gallery-columns-4 .gallery-item {
max-width: 25%;
}
/* line 13, sass/media/_galleries.scss */
.gallery-columns-5 .gallery-item {
max-width: 20%;
}
/* line 13, sass/media/_galleries.scss */
.gallery-columns-6 .gallery-item {
max-width: 16.66667%;
}
/* line 13, sass/media/_galleries.scss */
.gallery-columns-7 .gallery-item {
max-width: 14.28571%;
}
/* line 13, sass/media/_galleries.scss */
.gallery-columns-8 .gallery-item {
max-width: 12.5%;
}
/* line 13, sass/media/_galleries.scss */
.gallery-columns-9 .gallery-item {
max-width: 11.11111%;
}
/* line 19, sass/media/_galleries.scss */
.gallery-caption {
display: block;
}
/*--------------------------------------------------------------
# custom
--------------------------------------------------------------*/
/* line 1, sass/custom/_page.scss */
body {
max-width: 800px;
margin: 15px auto;
padding-left: 15px;
}
/* line 8, sass/custom/_page.scss */
.site-title a {
font-size: 60px;
font-weight: lighter;
text-decoration: none;
letter-spacing: 4px;
position: relative;
color: #8adaae;
}
/* line 16, sass/custom/_page.scss */
.site-title a:after {
content: '';
display: block;
width: 350px;
height: 100px;
position: absolute;
top: -12px;
left: -29px;
background-image: url("img/podofski_logo.png");
background-repeat: no-repeat;
background-size: 325px;
}
/* line 30, sass/custom/_page.scss */
.site-title a:hover:after {
background-image: url("img/podofski_logo_hover.png");
}
/* line 37, sass/custom/_page.scss */
#site-navigation {
margin: -10px 0 30px -15px;
}
/* line 40, sass/custom/_page.scss */
#site-navigation li {
margin-right: 30px;
text-transform: uppercase;
}