-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
1073 lines (1073 loc) · 28.3 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
#skin_wrapper {
font-size: 18px;
font-family: 'Ek Mukta', sans-serif;
font-weight: 300;
}
html {
height: 100%;
}
body {
overflow-x: visible !important;
-webkit-font-smoothing: subpixel-antialiased;
}
.evo_container__header {
margin-bottom: 30px;
}
.disp_login .evo_container__header,
.disp_lostpassword .evo_container__header,
.disp_register .evo_container__header,
.disp_access_denied .evo_container__header,
.disp_access_requires_login .evo_container__header,
.disp_activeinfo .evo_container__header,
.disp_login .evo_container__page_top,
.disp_lostpassword .evo_container__page_top,
.disp_register .evo_container__page_top,
.disp_access_denied .evo_container__page_top,
.disp_access_requires_login .evo_container__page_top,
.disp_activeinfo .evo_container__page_top {
margin-top: 80px;
}
.disp_login div.compact_search_form div.input-group,
.disp_lostpassword div.compact_search_form div.input-group,
.disp_register div.compact_search_form div.input-group,
.disp_access_denied div.compact_search_form div.input-group,
.disp_access_requires_login div.compact_search_form div.input-group,
.disp_activeinfo div.compact_search_form div.input-group {
width: 100%;
}
.evo_container__page_top .ufld_icon_links {
text-align: right;
}
.disp_front .evo_container__page_top {
margin-top: 80px;
}
.evo_widget.widget_core_coll_tagline {
letter-spacing: 0.2px;
font-style: italic;
font-size: 20px;
font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
}
.evo_comment_footer .action_btn_group,
.evo_comment_info .action_btn_group {
float: right;
}
.evo_comment .panel-heading {
line-height: 1.2em;
}
.evo_comment .panel-heading .evo_status {
margin-left: 5px;
}
@media screen and (max-width: 640px) {
.evo_comment .panel-heading .evo_status {
float: none !important;
margin-left: 0;
margin-top: 5px;
display: inline-block;
}
.evo_comment .panel-heading .evo_status:before {
display: block;
content: " ";
}
}
.evo_container__front_page_primary,
.evo_container__front_page_secondary,
.evo_container__standalone_page_area_6,
.evo_container__single_page_cover,
.evo_container__standalone_page_area_7,
.evo_container__standalone_page_area_oth,
.restricted_access_disps {
background-size: cover;
background-position: center center;
padding: 80px 0;
}
.evo_container__front_page_primary h1,
.evo_container__front_page_secondary h1,
.evo_container__standalone_page_area_6 h1,
.evo_container__single_page_cover h1,
.evo_container__standalone_page_area_7 h1,
.evo_container__standalone_page_area_oth h1,
.restricted_access_disps h1,
.evo_container__front_page_primary h2,
.evo_container__front_page_secondary h2,
.evo_container__standalone_page_area_6 h2,
.evo_container__single_page_cover h2,
.evo_container__standalone_page_area_7 h2,
.evo_container__standalone_page_area_oth h2,
.restricted_access_disps h2,
.evo_container__front_page_primary h3,
.evo_container__front_page_secondary h3,
.evo_container__standalone_page_area_6 h3,
.evo_container__single_page_cover h3,
.evo_container__standalone_page_area_7 h3,
.evo_container__standalone_page_area_oth h3,
.restricted_access_disps h3,
.evo_container__front_page_primary h4,
.evo_container__front_page_secondary h4,
.evo_container__standalone_page_area_6 h4,
.evo_container__single_page_cover h4,
.evo_container__standalone_page_area_7 h4,
.evo_container__standalone_page_area_oth h4,
.restricted_access_disps h4,
.evo_container__front_page_primary h5,
.evo_container__front_page_secondary h5,
.evo_container__standalone_page_area_6 h5,
.evo_container__single_page_cover h5,
.evo_container__standalone_page_area_7 h5,
.evo_container__standalone_page_area_oth h5,
.restricted_access_disps h5,
.evo_container__front_page_primary h6,
.evo_container__front_page_secondary h6,
.evo_container__standalone_page_area_6 h6,
.evo_container__single_page_cover h6,
.evo_container__standalone_page_area_7 h6,
.evo_container__standalone_page_area_oth h6,
.restricted_access_disps h6 {
font-family: 'Josefin Sans', sans-serif;
font-weight: 300;
}
.evo_container__front_page_primary h1,
.evo_container__front_page_secondary h1,
.evo_container__standalone_page_area_6 h1,
.evo_container__single_page_cover h1,
.evo_container__standalone_page_area_7 h1,
.evo_container__standalone_page_area_oth h1,
.restricted_access_disps h1 {
font-size: 50px;
margin-bottom: 30px;
}
.evo_container__front_page_primary .evo_widget .item_excerpt > a.btn.btn-default,
.evo_container__front_page_secondary .evo_widget .item_excerpt > a.btn.btn-default,
.evo_container__standalone_page_area_6 .evo_widget .item_excerpt > a.btn.btn-default,
.evo_container__single_page_cover .evo_widget .item_excerpt > a.btn.btn-default,
.evo_container__standalone_page_area_7 .evo_widget .item_excerpt > a.btn.btn-default,
.evo_container__standalone_page_area_oth .evo_widget .item_excerpt > a.btn.btn-default,
.restricted_access_disps .evo_widget .item_excerpt > a.btn.btn-default,
.evo_container__front_page_primary .evo_widget .item_content > a.btn.btn-default,
.evo_container__front_page_secondary .evo_widget .item_content > a.btn.btn-default,
.evo_container__standalone_page_area_6 .evo_widget .item_content > a.btn.btn-default,
.evo_container__single_page_cover .evo_widget .item_content > a.btn.btn-default,
.evo_container__standalone_page_area_7 .evo_widget .item_content > a.btn.btn-default,
.evo_container__standalone_page_area_oth .evo_widget .item_content > a.btn.btn-default,
.restricted_access_disps .evo_widget .item_content > a.btn.btn-default {
padding: 0 8px;
border: none;
}
.evo_container__front_page_primary .widget_core_coll_featured_intro .featurepost .evo_post_title h2,
.evo_container__front_page_secondary .widget_core_coll_featured_intro .featurepost .evo_post_title h2,
.evo_container__standalone_page_area_6 .widget_core_coll_featured_intro .featurepost .evo_post_title h2,
.evo_container__single_page_cover .widget_core_coll_featured_intro .featurepost .evo_post_title h2,
.evo_container__standalone_page_area_7 .widget_core_coll_featured_intro .featurepost .evo_post_title h2,
.evo_container__standalone_page_area_oth .widget_core_coll_featured_intro .featurepost .evo_post_title h2,
.restricted_access_disps .widget_core_coll_featured_intro .featurepost .evo_post_title h2,
.evo_container__front_page_primary .widget_core_coll_featured_intro .featurepost .evo_post_title .btn-group,
.evo_container__front_page_secondary .widget_core_coll_featured_intro .featurepost .evo_post_title .btn-group,
.evo_container__standalone_page_area_6 .widget_core_coll_featured_intro .featurepost .evo_post_title .btn-group,
.evo_container__single_page_cover .widget_core_coll_featured_intro .featurepost .evo_post_title .btn-group,
.evo_container__standalone_page_area_7 .widget_core_coll_featured_intro .featurepost .evo_post_title .btn-group,
.evo_container__standalone_page_area_oth .widget_core_coll_featured_intro .featurepost .evo_post_title .btn-group,
.restricted_access_disps .widget_core_coll_featured_intro .featurepost .evo_post_title .btn-group {
display: inline-block;
}
.evo_container__front_page_primary .widget_core_coll_featured_intro .featurepost .evo_post_title .btn-group,
.evo_container__front_page_secondary .widget_core_coll_featured_intro .featurepost .evo_post_title .btn-group,
.evo_container__standalone_page_area_6 .widget_core_coll_featured_intro .featurepost .evo_post_title .btn-group,
.evo_container__single_page_cover .widget_core_coll_featured_intro .featurepost .evo_post_title .btn-group,
.evo_container__standalone_page_area_7 .widget_core_coll_featured_intro .featurepost .evo_post_title .btn-group,
.evo_container__standalone_page_area_oth .widget_core_coll_featured_intro .featurepost .evo_post_title .btn-group,
.restricted_access_disps .widget_core_coll_featured_intro .featurepost .evo_post_title .btn-group {
padding-top: 5px;
padding-left: 20px;
}
.evo_container__front_page_primary .evo_post__full_text ul,
.evo_container__front_page_secondary .evo_post__full_text ul,
.evo_container__standalone_page_area_6 .evo_post__full_text ul,
.evo_container__single_page_cover .evo_post__full_text ul,
.evo_container__standalone_page_area_7 .evo_post__full_text ul,
.evo_container__standalone_page_area_oth .evo_post__full_text ul,
.restricted_access_disps .evo_post__full_text ul {
margin-left: 25px;
text-align: left !important;
}
.secondary_area {
position: relative;
z-index: 1;
width: 100%;
}
.navbar.main-header-navigation {
padding: 0 20px;
position: absolute;
width: 100%;
border-radius: 0;
border: 0;
margin: 0;
z-index: 999;
transition: 0.2s ease-in;
}
.navbar.main-header-navigation .navbar-header {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.navbar.main-header-navigation .navbar-brand {
padding: 0;
width: 100%;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.navbar.main-header-navigation .navbar-brand > h3 {
vertical-align: middle;
display: block;
margin: 0;
}
.navbar.main-header-navigation .navbar-brand > h3 a {
font-family: 'Josefin Sans', sans-serif;
font-weight: 300;
font-size: 18px;
letter-spacing: .15em;
line-height: 20px;
text-transform: uppercase;
padding-top: 17px;
padding-bottom: 17px;
position: relative;
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.navbar.main-header-navigation .navbar-collapse .nav {
margin: 0;
}
.navbar.main-header-navigation .navbar-collapse .nav li {
padding: 0;
}
.navbar.main-header-navigation .navbar-collapse .nav li a {
padding-top: 17px;
padding-bottom: 17px;
transition: .1s opacity linear;
}
.navbar.main-header-navigation .navbar-collapse .nav li.menu-button a {
border: 2px solid;
border-radius: 300px;
padding: 9px 26px;
text-transform: uppercase;
letter-spacing: 1px;
font-weight: 400;
margin-top: 5px;
transition: .1s opacity linear;
}
.navbar.main-header-navigation .navbar-collapse .nav:hover li a {
opacity: 0.8;
}
.navbar.main-header-navigation .navbar-collapse .nav:hover li a:hover {
opacity: 1;
}
.navbar.main-header-navigation .navbar-toggle:focus {
background: transparent;
}
.navbar.main-header-navigation.navbar-default .navbar-nav > .active > a,
.navbar.main-header-navigation.navbar-default .navbar-nav > .active > a:focus,
.navbar.main-header-navigation.navbar-default .navbar-nav > .active > a:hover,
.navbar.main-header-navigation.navbar-default .navbar-nav li > a {
background-color: transparent;
text-transform: uppercase;
font-weight: 400;
font-family: 'Josefin Sans', sans-serif;
font-size: 13px;
letter-spacing: .18em;
}
.navbar.main-header-navigation.affix {
position: fixed;
transition: 0.1s ease-out;
width: 100%;
}
body.loggedin .navbar.main-header-navigation.affix {
top: 27px;
}
body.anonymous .navbar.main-header-navigation.affix {
top: 0;
}
@media (max-width: 1024px) {
body.loggedin .navbar.main-header-navigation.affix,
body.anonymous .navbar.main-header-navigation.affix,
body.loggedin .navbar.main-header-navigation.affix-top,
body.anonymous .navbar.main-header-navigation.affix-top {
margin: 0;
position: relative;
top: 0;
}
}
@media only screen and (max-width: 767px) {
.navbar.main-header-navigation .navbar-brand {
width: calc(100% - 60px);
}
.navbar.main-header-navigation .navbar-brand > h3 a {
display: inline-block;
font-size: 15px;
width: 100%;
}
}
div.front_main_area {
padding: 0;
margin: 85px 0;
}
div.front_main_area .front_main_content {
border-radius: 6px;
padding: 0 15px;
}
div.front_main_area div.widget {
margin: 30px 0;
}
div.front_main_area .evo_container__front_page_primary .widget_core_coll_title h1 {
margin: 0;
}
div.front_main_area .evo_container__front_page_primary .widget_core_coll_title h1 a {
font-size: 80px;
line-height: 1.2em;
text-transform: uppercase;
letter-spacing: .02em;
font-weight: 100;
}
body.pictured #skin_wrapper {
width: 100%;
height: 100%;
overflow-x: hidden;
}
body.pictured #skin_wrapper.skin_wrapper_loggedin {
margin-top: 0;
padding-top: 27px;
}
body.pictured .container.main_page_wrapper {
display: table;
height: 100%;
min-height: 100%;
}
body.pictured .container.main_page_wrapper .panel {
color: #333;
}
body.pictured .container.main_page_wrapper .panel a:not([class]) {
color: #337ab7;
text-decoration: none;
}
body.pictured .container.main_page_wrapper .panel a:not([class]):hover {
color: #23527c;
text-decoration: underline;
}
body.pictured .container.main_page_wrapper .panel input {
-webkit-font-smoothing: subpixel-antialiased;
}
body.pictured div#debug_info.debug {
position: absolute;
top: 100%;
}
.evo_pictured_layout {
min-height: 100%;
background-size: cover;
background-position: center center;
}
.widget_core_user_login #login_form .form-group {
margin: 0;
}
.widget_core_user_login #login_form label {
text-align: left;
width: 160px;
padding-left: 0;
}
.widget_core_user_login #login_form .controls {
padding: 0;
width: 100%;
}
.widget_core_user_login #login_form .form_text_input.form-control {
width: 100%;
}
.widget_core_user_login .submit {
font-size: 12px;
}
.widget_core_user_login .field_login_btn .panel {
margin: 0;
border: none;
border-radius: 0;
box-shadow: none;
}
.widget_core_user_login .field_login_btn .panel .panel-body {
padding-left: 0;
padding-right: 0;
padding-bottom: 0;
}
.widget_core_user_login .field_login_btn .panel .panel-body #submit_login_form {
margin-right: 10px;
}
.widget_core_user_login .register_link {
display: block;
padding-top: 10px;
}
.widget_core_user_register #register_form .form-group {
margin: 0;
}
.widget_core_user_register #register_form label {
text-align: left;
width: 160px;
padding-left: 0;
}
.widget_core_user_register #register_form .controls {
padding: 0;
width: 100%;
}
.widget_core_user_register #register_form .form_text_input.form-control {
width: 100%;
}
.widget_core_user_register .submit {
font-size: 12px;
}
.widget_core_user_register .field_register_btn .panel {
margin: 0;
border: none;
border-radius: 0;
box-shadow: none;
}
.widget_core_user_register .field_register_btn .panel .panel-body {
padding-left: 0;
padding-right: 0;
padding-bottom: 0;
}
.widget_core_user_register .field_register_btn .panel .panel-body #submit_login_form {
margin-right: 10px;
}
ul.profile_tabs {
margin: 0 2ex 2ex;
position: relative;
top: 1px;
}
.profile_avatar {
float: right;
padding: 10px;
margin-left: 10px;
}
.form-horizontal .controls textarea.form-control {
width: 100%;
}
input.search_field {
margin-bottom: 0;
display: inline-block;
}
form.search .search_options {
width: 100%;
}
form.search .search_options .search_option input {
margin-right: 5px;
}
form.search .search_options .search_option label {
margin-bottom: 0;
margin-top: 5px;
}
div.compact_search_form input.search_field {
width: 100%;
margin: 0;
}
div.extended_search_form {
text-align: center;
margin: 0 auto 2em auto;
max-width: 530px;
}
div.extended_search_form .search_options {
text-align: center;
}
div.extended_search_form .search_options .search_option {
display: inline-block;
margin-right: 10px;
}
table.catselect input#new_category_name {
width: 98% !important;
}
label.control-label[for=post_title] {
width: auto;
}
textarea.message_text {
width: 95%;
}
.evo_post {
margin-bottom: 2em;
}
.evo_post .small.text-muted {
margin: 4px 0 10px;
}
.evo_post .small.text-muted a,
.evo_post .small.text-muted a .glyphicon {
color: inherit;
}
.evo_hasbgimg {
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}
div.bSideItem {
background: #F7F5FA;
border-radius: 5px;
padding: 10px;
margin-bottom: 10px;
text-shadow: 0 1px 0 #FFFFFF;
}
div.bSideItem h4 {
margin-top: 0;
}
.skin-form .panel-body .panel {
border: none;
box-shadow: none;
}
.skin-form .panel-body .panel-body {
padding: 0;
}
.skin-form .fieldset {
margin: 0;
}
.skin-form .fieldset div.input {
margin: 0;
}
.skin-form .control-buttons,
.skin-form div.input {
padding: 0;
width: 100%;
text-align: center;
}
.evo_panel__login,
.evo_panel__lostpass,
.evo_panel__register,
.evo_panel__activation {
min-width: 290px;
margin: 1.5em auto auto;
}
.evo_panel__login .panel,
.evo_panel__lostpass .panel,
.evo_panel__register .panel,
.evo_panel__activation .panel {
margin: 5px 0;
}
.evo_panel__login .panel-body,
.evo_panel__lostpass .panel-body,
.evo_panel__register .panel-body,
.evo_panel__activation .panel-body {
padding-top: 20px;
padding-bottom: 0;
}
.evo_panel__login {
max-width: 400px;
}
.evo_panel__lostpass {
max-width: 480px;
}
.evo_panel__lostpass #ffield_x label {
display: none;
}
.evo_panel__activation {
max-width: 530px;
}
.evo_panel__activation #activateinfo_form .control-buttons {
text-align: left;
}
.evo_panel__register {
max-width: 580px;
}
.evo_panel__register .control-buttons {
text-align: left;
}
.evo_panel__register.register-disabled {
width: 350px;
}
.evo_panel__register .form-control#country,
.evo_panel__register .form-control#u {
width: 100%;
}
.evo_form__login_links {
padding: 0 5px;
font-size: 92%;
}
.evo_form__login fieldset {
margin-bottom: 20px;
}
.evo_form__login .controls {
padding: 0;
margin: 0;
width: 100%;
}
.evo_form__login .control-buttons {
margin-left: 0;
}
.evo_form__login input.form-control[type=text],
.evo_form__login input.form-control[type=password] {
width: 100%;
}
.evo_form__login .btn {
margin-top: 5px;
}
#login_form .control-buttons {
text-align: left;
}
.standard_login_link {
text-align: center;
margin: 3em 0 1ex 0;
}
.form_footer_notes {
margin-top: 0;
}
.pagination {
margin: 0;
}
.filter_item div {
height: 22px;
}
div.action_messages,
div.log_container {
margin: 0;
}
.evo_post_title {
display: table;
width: 100%;
}
.evo_post_title h1,
.evo_post_title h2,
.evo_post_title h3,
.evo_post_title h4,
.evo_post_title h5,
.evo_post_title h6 {
font-family: 'Josefin Sans', sans-serif;
font-weight: 300;
}
.evo_post_title h2 {
display: table-cell;
margin: 0;
padding: 20px 0 10px;
}
.evo_post_title .btn-group {
display: table-cell;
padding: 20px 0 10px 30px;
vertical-align: middle;
}
.evo_post_title .btn-group > a {
color: #333 !important;
}
body.pictured .front_main_content .ufld_icon_links a {
width: 60px;
height: 60px;
margin: 5px;
}
body.pictured .front_main_content .ufld_icon_links a .fa {
font-size: 30px;
line-height: 60px;
}
.widget_core_org_members {
margin: 0;
color: inherit;
}
.widget_core_org_members div.widget_rwd_content {
margin-top: 0;
}
.widget_core_org_members img {
width: 200px;
height: 200px;
display: inline-block;
}
.widget_core_org_members h2.page-header {
margin-top: 0;
}
.widget_core_org_members p.user_field {
margin-bottom: 40px;
}
body.pictured .secondary_area .widget_core_org_members a.user_link {
color: #000;
}
body.pictured .secondary_area .widget_core_org_members a.user_link:hover {
color: #23527c;
}
@media (max-width: 640px) {
body.pictured .front_main_content .ufld_icon_links a {
width: 45px;
height: 45px;
margin: 5px;
}
body.pictured .front_main_content .ufld_icon_links a .fa {
font-size: 20px;
line-height: 45px;
}
.slide_button_wrap {
display: none !important;
}
}
.slide_button_wrap {
position: fixed;
bottom: 20px;
left: 50%;
line-height: 1em;
}
.slide_button_wrap #slide_button {
display: inline-block;
font-size: 55px;
color: #ffffff;
text-align: center;
opacity: 0.5;
transition: 0.1s all;
position: relative;
left: -50%;
}
.slide_button_wrap #slide_button:hover {
cursor: pointer;
opacity: 0.9;
}
.evo_widget {
padding: 20px 0;
}
.evo_widget > h2,
.evo_widget h3 {
margin-top: 0;
}
.evo_widget h2.page-header {
border: none;
margin-top: 0;
padding: 0 0 17px;
font-size: 38px;
}
.evo_widget h1,
.evo_widget h2,
.evo_widget h3,
.evo_widget h4,
.evo_widget h5,
.evo_widget h6 {
font-family: 'Josefin Sans', sans-serif;
font-weight: 300;
}
.evo_widget p,
.evo_widget ul {
margin-bottom: 0;
padding: 0 0 18px;
}
.evo_widget p:last-child,
.evo_widget ul:last-child {
padding: 0;
margin-bottom: 0;
}
.evo_widget div {
margin-top: 0;
margin-bottom: 0;
padding: 0;
}
.evo_widget div > p,
.evo_widget div > ul {
padding: 0 0 18px;
}
.evo_widget div > p:last-child,
.evo_widget div > ul:last-child {
padding: 0;
margin: 0;
}
.evo_widget div.widget_rwd_blocks > div {
padding: 0 15px 0;
}
.evo_widget div.widget_flow_blocks div {
margin: 3px;
}
.evo_widget ul {
display: inline-block;
}
.evo_widget > .btn.btn-default {
margin: 0;
border: none;
border-radius: 300px;
padding: 13px 26px;
font-size: 14px;
text-transform: uppercase;
letter-spacing: 1px;
font-weight: 100;
transition: .1s opacity linear;
}
.evo_widget > .btn.btn-default:hover {
opacity: 0.8;
}
.evo_widget.widget_core_coll_featured_posts.evo_layout_rwd.evo_withexcerpt .widget_rwd_blocks .widget_rwd_content .item_title,
.evo_widget.widget_core_coll_featured_posts.evo_layout_rwd.evo_withteaser .widget_rwd_blocks .widget_rwd_content .item_title,
.evo_widget.widget_core_coll_item_list.evo_layout_rwd.evo_withexcerpt .widget_rwd_blocks .widget_rwd_content .item_title,
.evo_widget.widget_core_coll_item_list.evo_layout_rwd.evo_withteaser .widget_rwd_blocks .widget_rwd_content .item_title,
.evo_widget.widget_core_coll_page_list.evo_layout_rwd.evo_withexcerpt .widget_rwd_blocks .widget_rwd_content .item_title,
.evo_widget.widget_core_coll_page_list.evo_layout_rwd.evo_withteaser .widget_rwd_blocks .widget_rwd_content .item_title,
.evo_widget.widget_core_coll_post_list.evo_layout_rwd.evo_withexcerpt .widget_rwd_blocks .widget_rwd_content .item_title,
.evo_widget.widget_core_coll_post_list.evo_layout_rwd.evo_withteaser .widget_rwd_blocks .widget_rwd_content .item_title,
.evo_widget.widget_core_coll_related_post_list.evo_layout_rwd.evo_withexcerpt .widget_rwd_blocks .widget_rwd_content .item_title,
.evo_widget.widget_core_coll_related_post_list.evo_layout_rwd.evo_withteaser .widget_rwd_blocks .widget_rwd_content .item_title {
font-size: 24px;
}
.evo_widget.widget_core_coll_featured_posts.evo_layout_rwd .widget_rwd_content,
.evo_widget.widget_core_coll_item_list.evo_layout_rwd .widget_rwd_content,
.evo_widget.widget_core_coll_page_list.evo_layout_rwd .widget_rwd_content,
.evo_widget.widget_core_coll_post_list.evo_layout_rwd .widget_rwd_content,
.evo_widget.widget_core_coll_related_post_list.evo_layout_rwd .widget_rwd_content {
background: transparent;
}
.widget_register_form .panel,
.widget_core_user_login .panel {
background: transparent;
}
.detail_msgform .main_page_wrapper,
.disp_help .main_page_wrapper,
.main_page_wrapper_other_disps {
padding-top: 80px;
padding-bottom: 80px;
}
.disp_access_denied main > p.center {
padding: 100px 0;
}
a[rel~=nofollow]:not([class~=btn]):hover {
background-color: transparent;
}
div[class*="_list"],
.evo_layout_list {
text-align: left;
}
.footer_wrapper {
padding: 48px 15px;
position: relative;
}
.footer_wrapper .evo_container__footer {
margin-bottom: 0;
padding: 0;
}
.footer_wrapper p {
margin: 0;
}
.footer_wrapper p.baseline {
padding: 20px 0;
}
.footer_wrapper .powered_by {
margin: 0;
padding: 20px 0;
}
.footer_wrapper .powered_by img {
background: #fff;
border-radius: 4px;
padding: 2px;
}
.footer_wrapper h1,
.footer_wrapper h2,
.footer_wrapper h3,
.footer_wrapper h4,
.footer_wrapper h5,
.footer_wrapper h6 {
font-family: 'Josefin Sans', sans-serif;
font-weight: 300;
}
.text-xl,
.text-xl div,
.text-xl a,
.text-xl h1,
.text-xl h2,
.text-xl h3,
.text-xl h4,
.text-xl h5,
.text-xl h6,
.text-xl ul {
font-size: 160% !important;
}
.text-lg,
.text-lg div,
.text-lg a,
.text-lg h1,
.text-lg h2,
.text-lg h3,
.text-lg h4,
.text-lg h5,
.text-lg h6,
.text-lg ul {
font-size: 130% !important;
}
.text-sm,
.text-sm div,
.text-sm a,
.text-sm h1,
.text-sm h2,
.text-sm h3,
.text-sm h4,
.text-sm h5,
.text-sm h6,
.text-sm ul {
font-size: 80% !important;
}
.text-xs,
.text-xs div,
.text-xs a,
.text-xs h1,
.text-xs h2,
.text-xs h3,
.text-xs h4,
.text-xs h5,
.text-xs h6,
.text-xs ul {
font-size: 60% !important;
}
@media (max-width: 1024px) {
.disp_front .evo_container__page_top,
.disp_login .evo_container__page_top,
.disp_lostpassword .evo_container__page_top,
.disp_register .evo_container__page_top,
.disp_access_denied .evo_container__page_top,
.disp_access_requires_login .evo_container__page_top,
.disp_activeinfo .evo_container__page_top {
margin: 0;
}
}
@media only screen and (max-width: 992px) {
div.front_main_area .evo_container__front_page_primary .widget_core_coll_title h1 a {
font-size: 50px;
}
.detail_msgform .main_page_wrapper,
.disp_help .main_page_wrapper,
.main_page_wrapper_other_disps {
padding-top: 40px;
padding-bottom: 40px;
}
}
@media (max-width: 768px) {
#skin_wrapper {
font-size: 15px;
}
div.front_main_area .evo_container__front_page_primary .widget_core_coll_title h1 a {
font-size: 34px;
}
.evo_widget h2.page-header {
font-size: 34px;
}
.evo_container__front_page_primary h1,
.evo_container__front_page_secondary h1,
.evo_container__standalone_page_area_6 h1,
.evo_container__single_page_cover h1,
.evo_container__standalone_page_area_7 h1,
.evo_container__standalone_page_area_oth h1,
.restricted_access_disps h1 {
font-size: 30px;
}
.evo_container__front_page_primary h2,
.evo_container__front_page_secondary h2,
.evo_container__standalone_page_area_6 h2,
.evo_container__single_page_cover h2,
.evo_container__standalone_page_area_7 h2,
.evo_container__standalone_page_area_oth h2,
.restricted_access_disps h2 {
font-size: 26px;
}
.evo_container__front_page_primary h3,
.evo_container__front_page_secondary h3,
.evo_container__standalone_page_area_6 h3,
.evo_container__single_page_cover h3,
.evo_container__standalone_page_area_7 h3,
.evo_container__standalone_page_area_oth h3,
.restricted_access_disps h3 {
font-size: 22px;
}
.evo_container__front_page_primary h4,
.evo_container__front_page_secondary h4,
.evo_container__standalone_page_area_6 h4,
.evo_container__single_page_cover h4,
.evo_container__standalone_page_area_7 h4,
.evo_container__standalone_page_area_oth h4,
.restricted_access_disps h4 {
font-size: 18px;
}
.evo_container__front_page_primary h5,
.evo_container__front_page_secondary h5,
.evo_container__standalone_page_area_6 h5,
.evo_container__single_page_cover h5,
.evo_container__standalone_page_area_7 h5,
.evo_container__standalone_page_area_oth h5,
.restricted_access_disps h5 {
font-size: 14px;
}
.evo_container__front_page_primary h6,
.evo_container__front_page_secondary h6,
.evo_container__standalone_page_area_6 h6,
.evo_container__single_page_cover h6,
.evo_container__standalone_page_area_7 h6,
.evo_container__standalone_page_area_oth h6,
.restricted_access_disps h6 {
font-size: 10px;
}
.detail_msgform .main_page_wrapper,
.disp_help .main_page_wrapper,
.main_page_wrapper_other_disps {
padding-top: 15px;
padding-bottom: 15px;
}
}
@media (max-width: 767px) {
.navbar-toggle {
margin-right: 0;
}
.navbar-collapse {