-
Notifications
You must be signed in to change notification settings - Fork 0
/
rtl.css
1887 lines (1729 loc) · 40.2 KB
/
rtl.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: Chosen
Theme URI: https://www.competethemes.com/chosen/
Author: Compete Themes
Author URI: https://www.competethemes.com/
Description: Chosen is a bold and minimalist theme for publishers who want to get their visitors' attention and keep it. Present your best content in a simple, uncluttered fashion on phones, tablets, and desktop computers with Chosen. Use Chosen to start a blog, magazine, or news site in any niche: fashion, business, gaming, food, travel. As a free theme, you can use Chosen for as many sites as you want. It can even be used for video, podcasts, and personal resumes. Now with WooCommerce support, you can also add an eCommerce store to your website. Chosen is also fully compatible with the new Gutenberg post editor. Preview Chosen now on desktop, tablets, and mobile devices with the interactive live demo: https://www.competethemes.com/demos/?theme=chosen
Version: 1.51
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: one-column, two-columns, accessibility-ready, custom-logo, custom-menu, featured-images, full-width-template, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready, blog, news, photography
Text Domain: chosen
Tested up to: 6.5
Requires PHP: 5.4
Chosen WordPress Theme, Copyright 2024 Compete Themes
Chosen is distributed under the terms of the GNU GPL
*/
/*===== Variables =====*/
/* Theme Colors */
/* Media Query widths */
/* Social Media Brand Colors */
/*===== Mixins =====*/
/***** Silent Classes *****/
.site-title {
font-size: 2.375em;
/* 38px / 16px */
line-height: 1.342;
/* 51px */
}
h1 {
font-size: 1.75em;
/* 28px / 16px */
line-height: 1.357;
/* 38px */
}
.comments-number,
.comment-reply-title, h2 {
font-size: 1.3125em;
/* 21px / 16px */
line-height: 1.143;
/* 24px */
}
.further-reading a, .post-content, .archive-header h1, input[type=text],
input[type=email],
input[type=password],
input[type=number],
input[type=search],
input[type=tel],
input[type=url],
textarea {
font-size: 1.0625em;
/* 17px / 16px */
line-height: 1.4118;
/* 24px */
}
.woocommerce-account .woocommerce-MyAccount-navigation li a, .singular-attachment .attachment-caption, .post-categories,
.post-tags, .menu-primary a, .comment-footer span,
.comment-footer a, .comment-respond label, .sticky-status span, input[type=submit] {
font-size: 0.75em;
/* 12px / 16px */
line-height: 1.5;
/* 18px */
}
.further-reading span, .post-byline, .tagline, .comments-link, .more-link {
font-size: 0.625em;
/* 10px / 16px */
line-height: 1.8;
/* 18px */
}
.woocommerce-account .woocommerce-MyAccount-navigation li a, .further-reading span, .post-categories span,
.post-tags span, .post-byline, .menu-primary a, .tagline, .comment-footer span,
.comment-footer a, .sticky-status span, .comments-link, .more-link {
text-transform: uppercase;
letter-spacing: 0.03em;
}
/*===== Basic Styles =====*/
/* apply a natural box layout model to all elements */
*, *:before, *:after {
box-sizing: border-box;
}
body {
height: 100%;
font-size: 100%;
margin: 0;
padding: 0;
font-family: "Raleway", sans-serif;
line-height: 1.5;
background: white;
color: #545454;
-webkit-font-smoothing: subpixel-antialiased;
word-wrap: break-word;
-ms-word-wrap: break-word;
}
.overflow-container {
position: relative;
overflow: hidden;
height: auto;
min-height: 100%;
padding: 0 4.167%;
}
.main {
margin: 0 auto;
}
.loop-container:after {
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0;
}
.page-template-landing-page .overflow-container,
.page-template-landing-page-header .overflow-container {
padding: 0;
}
.page-template-landing-page .max-width,
.page-template-landing-page-header .max-width {
max-width: none;
}
p {
margin: 1.5em 0;
}
a {
color: #2B2B2B;
text-decoration: none;
-webkit-transition: color 0.1s ease-in-out;
transition: color 0.1s ease-in-out;
}
a:link, a:visited {
color: #2B2B2B;
}
a:hover, a:active, a:focus {
color: #666666;
}
h1, h2, h3, h4, h5, h6 {
font-family: "Playfair Display", serif;
margin: 0;
padding: 0;
font-weight: 400;
color: #2B2B2B;
}
h3, h4, h5, h6 {
font-size: 1em;
line-height: 1.5;
}
ul,
ol {
font-size: 1em;
padding: 0;
margin: 1.5em;
}
ul ul, ul ol,
ol ul,
ol ol {
margin: 0 1.5em;
}
ul ul,
ol ol,
ul ol,
ol ul,
li li {
font-size: 1em;
}
/* Markup styles */
pre {
word-wrap: break-word;
white-space: pre-wrap;
background: #EDEDED;
border: solid 1px #DEDEDE;
padding: 0.75em;
}
code {
background: #EDEDED;
padding: 0 0.375em;
}
pre code {
padding: 0;
}
blockquote {
margin: 1.5em 0 1.5em 1.5em;
padding-right: 1.5em;
border-right: solid 3px #3a3a3a;
}
blockquote cite {
display: block;
text-align: left;
}
hr {
margin: 1.5em 0;
}
/* Table styles */
table {
border-spacing: 0;
border-collapse: collapse;
margin: 1.5em 0;
}
td,
th {
padding: 0.75em;
border: solid 1px #DEDEDE;
}
.wp-block-table {
margin: 0;
}
.wp-block-table thead,
.wp-block-table tfoot {
background: #f5f5f5;
}
.wp-block-table td,
.wp-block-table th {
border-color: #DEDEDE;
}
.wp-block-table figcaption {
font-size: 12px;
line-height: 1.5;
margin: -12px 0 0 0;
color: #3a3a3a;
text-align: center;
}
.wp-block-table.is-style-stripes thead {
background: none;
}
.wp-block-table.is-style-stripes td,
.wp-block-table.is-style-stripes th {
border-color: #DEDEDE;
}
/* Images */
.wp-block-image {
margin: 0;
}
.alignleft {
float: right;
margin: 0 0 1.5em 1.5em;
}
.alignright {
float: left;
margin: 0 1.5em 1.5em 0;
}
.aligncenter {
text-align: center;
margin: 1.5em auto;
display: block;
}
.alignnone {
margin: 1.5em 0;
}
img,
.alignright,
.alignleft,
.aligncenter,
.alignnone,
.size-auto,
.size-full,
.size-large,
.size-medium,
.size-thumbnail,
.wp-block-image {
max-width: 100%;
height: auto;
}
img figcaption,
.alignright figcaption,
.alignleft figcaption,
.aligncenter figcaption,
.alignnone figcaption,
.size-auto figcaption,
.size-full figcaption,
.size-large figcaption,
.size-medium figcaption,
.size-thumbnail figcaption,
.wp-block-image figcaption {
font-size: 12px;
line-height: 1.5;
margin: 3px 0 0 0;
color: #3a3a3a;
text-align: center;
}
.wp-caption-text,
.gallery-caption,
.wp-caption-dd {
font-size: 12px;
line-height: 1.5;
margin: 3px 0 0 0;
color: #3a3a3a;
text-align: center;
}
.wp-block-group.alignwide,
.wp-block-group .alignwide,
.wp-block-group.alignfull,
.wp-block-group .alignfull {
line-height: 1.5;
}
/* Form styles */
input[type=text],
input[type=email],
input[type=password],
input[type=number],
input[type=search],
input[type=tel],
input[type=url],
textarea {
width: 100%;
font-family: "Raleway", sans-serif;
padding: 10px 12px;
max-width: 22.5em;
background: #EDEDED;
color: #545454;
border: solid 1px #DEDEDE;
border-radius: 0;
-webkit-appearance: none;
-webkit-transition: all 0.1s ease-in-out;
transition: all 0.1s ease-in-out;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=number]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=url]:focus,
textarea:focus {
outline: none;
background: white;
}
textarea {
max-width: 41.625em;
overflow: auto;
/* to hide scrollbar in IE */
}
input[type=submit] {
font-family: "Raleway", sans-serif;
padding: 14px 16px;
min-width: 100px;
color: white;
background: #2B2B2B;
outline: none;
border: none;
border-radius: 0;
-webkit-appearance: none;
-webkit-transition: all 0.1s ease-in-out;
transition: all 0.1s ease-in-out;
}
input[type=submit]:hover {
cursor: pointer;
}
input[type=submit]:hover, input[type=submit]:active, input[type=submit]:focus {
background: #545454;
}
input[type=search] {
padding-left: 0.375em;
/* so safari 'x' doesn't get cut off */
}
::-webkit-input-placeholder {
color: #666666;
}
:-moz-placeholder {
color: #666666;
}
::-moz-placeholder {
color: #666666;
}
:-ms-input-placeholder {
color: #666666;
}
/* ie image border fix */
a img {
border: none;
}
#breadcrumbs {
text-align: center;
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: landscape) {
html {
-webkit-text-size-adjust: none;
/* none for no scaling */
}
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
html {
-webkit-text-size-adjust: none;
/* none for no scaling */
}
}
.screen-reader-text {
position: absolute;
clip: rect(1px 1px 1px 1px);
/* IE6, IE7 */
clip: rect(1px, 1px, 1px, 1px);
overflow: hidden;
height: 1px;
width: 1px;
}
.skip-content {
position: absolute;
top: -100%;
width: 100%;
right: 0;
display: block;
text-align: center;
color: white !important;
z-index: 99;
padding: 1.5em;
background: #3a3a3a;
-webkit-transition: top 0.2s ease-in-out;
transition: top 0.2s ease-in-out;
}
.skip-content:focus {
top: 0;
outline: none;
}
.admin-bar .skip-content:focus {
top: 32px;
}
.max-width {
max-width: 1400px;
margin: 0 auto;
}
.infinite-loader,
#infinite-handle {
clear: both;
}
.error404 .search-form-container,
.search .search-form-container {
margin: 3em auto 4.5em;
text-align: center;
}
.more-link {
display: inline-block;
padding: 9px 16px;
margin-left: 12px;
background: #2B2B2B;
color: white;
-webkit-transition: all 0.1s ease-in-out;
transition: all 0.1s ease-in-out;
}
.more-link:link, .more-link:visited {
color: white;
}
.more-link:hover, .more-link:active, .more-link:focus {
background: #545454;
color: white;
}
.comments-link {
color: #2B2B2B;
-webkit-transition: color 0.1s ease-in-out;
transition: color 0.1s ease-in-out;
}
.comments-link i {
margin-left: 3px;
}
.comments-link a {
color: #2B2B2B;
}
.comments-link a:link, .comments-link a:visited {
color: #2B2B2B;
}
.comments-link a:hover, .comments-link a:active, .comments-link a:focus {
text-decoration: underline;
color: #2B2B2B;
}
.post-content .more-link,
.post-content .comments-link a {
text-decoration: none;
}
.full-post .comments-link {
display: block;
margin: 3em 0;
}
.blog .post-content,
.archive .post-content,
.search .post-content {
text-align: center;
}
.blog .post-content p,
.archive .post-content p,
.search .post-content p {
text-align: right;
}
.more-link-wrapper {
display: inline-block;
margin: 0.75em 0 0;
text-align: center;
}
.entry.sticky {
position: relative;
}
.sticky-status span {
position: absolute;
top: 0;
right: 0;
padding: 9px 18px;
background: #2B2B2B;
color: white;
}
.search .sticky-status {
display: none;
}
.entry:not(.has-post-thumbnail) .sticky-status {
margin-bottom: 1.5em;
}
.entry:not(.has-post-thumbnail) .sticky-status span {
position: relative;
}
@media all and (min-width: 43.75em) {
.more-link,
.comments-link {
font-size: 0.75em;
/* 12px / 16px */
line-height: 1.5;
/* 18px */
}
}
@media all and (min-width: 56.25em) {
.blog .entry,
.archive .entry,
.search .entry {
width: 47.691315%;
float: right;
}
.blog .entry:nth-child(even),
.archive .entry:nth-child(even),
.search .entry:nth-child(even) {
margin-left: 4.54203%;
margin-right: 0;
}
.blog .post-header,
.blog .post-content,
.archive .post-header,
.archive .post-content,
.search .post-header,
.search .post-content {
text-align: right;
}
.blog:not(.posts-page-1) .entry:nth-child(odd),
.archive .entry:nth-child(odd),
.search .entry:nth-child(odd) {
margin-left: 4.54203%;
}
.blog:not(.posts-page-1) .entry:nth-child(even),
.archive .entry:nth-child(even),
.search .entry:nth-child(even) {
margin-left: 0;
}
.posts-page-1 .entry:first-of-type {
width: 100%;
float: none;
}
.posts-page-1 .entry:first-of-type .post-title {
font-size: 3.188em;
/* 51px / 16px */
line-height: 1.314;
/* 67px */
}
.posts-page-1 .entry:first-of-type .post-header,
.posts-page-1 .entry:first-of-type .post-content {
padding: 0 9.08406%;
text-align: center;
}
}
@media all and (min-width: 68.75em) {
.posts-page-1 .entry:first-of-type .post-content {
padding: 0 13.62609%;
}
}
@media all and (min-width: 75em) {
.posts-page-1 .entry:first-of-type .post-content {
padding: 0 18.16812%;
}
}
.archive-header {
margin-bottom: 1.5em;
}
.archive-header h1 {
font-family: "Raleway", sans-serif;
}
.archive-header span {
font-weight: 600;
}
.archive-header i {
margin-left: 2px;
}
.archive-header p {
font-style: italic;
}
@media all and (min-width: 56.25em) {
.archive-header {
margin-bottom: 3em;
}
}
.comment-respond label {
display: block;
margin-bottom: 0.5em;
}
.comment-respond .comment-form-cookies-consent input {
position: relative;
top: -2px;
}
.comment-respond .comment-form-cookies-consent label {
display: inline-block;
}
.comment .comment-respond {
margin-top: 1.5em;
}
.comment #cancel-comment-reply-link {
font-size: 16px;
line-height: 1.5;
margin-right: 6px;
}
.comments-number h2,
.comment-reply-title h2 {
font-size: 1em;
}
.comment-list {
margin: 3em 0;
list-style: none;
}
.comment-list li {
margin: 3em 0;
}
.comment-list ul {
list-style: none;
margin: 0;
padding-right: 1.5em;
border-right: solid 1px #D9D9D9;
}
.comment-content {
font-size: 1.0625em;
/* 17px / 16px */
line-height: 1.4118;
/* 24px */
}
.comment-content li {
margin: 0;
}
.comment-content ul {
list-style: disc;
margin: 1.5em 0;
padding-right: 0;
border: none;
}
.comment-content ul ul {
margin: 0 1.5em 0 0;
}
.comment-author {
margin-bottom: 1.5em;
}
.comment-author:after {
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0;
}
.comment-author img {
float: right;
margin: 0 0 0 0.75em;
height: 2.25em;
width: 2.25em;
}
.comment-author .author-name {
font-size: 1.0625em;
/* 17px / 16px */
line-height: 2.118;
/* 36px / 17px */
}
.comment-footer {
margin-top: 1.5em;
}
.comment-reply-link,
.comment-edit-link {
position: relative;
margin-right: 16px;
border-color: transparent;
}
.comment-reply-link:after,
.comment-edit-link:after {
position: absolute;
content: "";
top: 0;
right: -11px;
height: 100%;
width: 1px;
background: #D9D9D9;
}
.bypostauthor > article .author-name:after {
content: "(author)";
margin-right: 6px;
font-size: 12px;
display: inline-block;
}
@media all and (min-width: 43.75em) {
.comments-number,
.comment-reply-title {
font-size: 1.75em;
/* 28px / 16px */
line-height: 1.357;
/* 38px */
}
.comment-pagination {
margin: 3em 0;
}
.comment-pagination p {
display: inline-block;
vertical-align: top;
width: 50%;
margin-left: -4px;
}
.comment-pagination .next-comment {
text-align: left;
}
}
@media all and (min-width: 56.25em) {
.comments,
#disqus_thread {
padding: 0 9.08406%;
}
}
@media all and (min-width: 68.75em) {
.comments,
#disqus_thread {
padding: 0 13.62609%;
}
}
@media all and (min-width: 75em) {
.comments,
#disqus_thread {
padding: 0 18.16812%;
}
}
.site-footer {
position: relative;
right: -4.6%;
width: 109.2%;
padding: 1.5em 4.167%;
margin-top: 3em;
text-align: center;
background: #f5f5f5;
border-top: solid 1px #EDEDED;
}
.scroll-to-top {
position: fixed;
bottom: -45px;
left: 0;
z-index: 9;
background: #000;
border: none;
color: #fff;
padding: 12px 0;
width: 4.167%;
-webkit-transition: background 0.2s, -webkit-transform 0.3s;
transition: background 0.2s, transform 0.3s;
}
.scroll-to-top.visible {
-webkit-transform: translateY(-45px);
transform: translateY(-45px);
}
.scroll-to-top:hover {
cursor: pointer;
background: #3a3a3a;
}
.scroll-to-top:hover i {
-webkit-transform: translateY(-4px);
transform: translateY(-4px);
}
.scroll-to-top:focus {
outline: none;
}
.scroll-to-top i {
font-size: 21px;
-webkit-transition: -webkit-transform 0.2s;
transition: transform 0.2s;
}
.site-header {
text-align: center;
padding-top: 39px;
}
.toggle-navigation {
display: block;
background: none;
margin: 0 auto;
padding: 0;
border: none;
}
.toggle-navigation:hover {
cursor: pointer;
}
.title-container {
margin: 2.25em 0;
}
.site-title {
font-family: "Playfair Display", serif;
}
.tagline {
margin: 0;
}
.social-media-icons {
display: -webkit-box;
display: flex;
-webkit-box-align: center;
align-items: center;
-webkit-box-pack: center;
justify-content: center;
list-style: none;
margin: -6px auto 2.25em;
}
.social-media-icons li {
display: inline-block;
margin-left: 1.125em;
}
.social-media-icons li:last-child {
margin-left: 0;
}
.social-media-icons .custom-icon img {
display: inline-block;
vertical-align: sub;
line-height: 0;
margin: 0;
width: 20px;
height: auto;
}
@media all and (min-width: 43.75em) {
.site-title {
font-size: 3.188em;
/* 51px / 16px */
line-height: 1.314;
/* 67px */
}
.tagline {
font-size: 0.75em;
/* 12px / 16px */
line-height: 1.5;
/* 18px */
}
}
@media all and (min-width: 56.25em) {
.site-header {
padding-top: 1.5em;
}
.title-container {
margin: 3em 0 4.5em;
}
body:not(.mobile-menu-always) .toggle-navigation {
display: none;
}
body:not(.mobile-menu-always) .social-media-icons {
float: left;
margin: 0;
text-align: left;
-webkit-transition: all 0.1s ease-in-out;
transition: all 0.1s ease-in-out;
}
body:not(.mobile-menu-always) .social-media-icons.fade {
opacity: 0;
-webkit-transform: translateX(4px);
transform: translateX(4px);
}
}
@media all and (min-width: 68.75em) {
.title-container {
margin: 4.5em 0 6em;
}
.site-title {
font-size: 4.188em;
/* 67px / 16px */
line-height: 1.343;
/* 90px */
}
}
.pagination {
clear: both;
margin: 3em auto;
text-align: center;
}
.pagination a,
.pagination span {
display: inline-block;
margin: 0 18px;
}
.pagination a:focus {
text-decoration: underline;
}
.pagination .current {
border: solid 1px #3a3a3a;
padding: 5px 12px;
}
.infinite-scroll .pagination {
display: none;
}
.main:after {
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0;
}
.menu-primary-container {
position: relative;
max-height: 0;
overflow: hidden;
-webkit-transition: max-height 0.2s ease-in-out;
transition: max-height 0.2s ease-in-out;
}
.menu-primary {
margin-bottom: 2.25em;
}
.menu-primary ul {
list-style: none;
margin: 0;