forked from gatlinnewhouse/Naut-for-civcraft-subreddit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNaut 4 - Main CSS File.css
1021 lines (846 loc) · 88.9 KB
/
Naut 4 - Main CSS File.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
/*
Version 4.0
Stylesheet by Cryptonaut
Assisted by RenegadeAI & LackingAGoodName
Last modified: 6 April 2016
Details: This is a custom template made by /u/Cryptonaut
Find out more on /r/Naut
-------------------------------------------------------------------------- */
*,:before,:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}body{overflow-x:hidden;background-color:#eee;min-width:920px}a{color:#24a0ed;transition:color .15s ease}::-moz-selection{background-color:#0079d3;text-shadow:none;color:#fff}::selection{background-color:#0079d3;text-shadow:none;color:#fff}:focus{outline:none!important}body .content .text,body .content textarea,body .content input[type=text],body .content input[type=password],.side .spacer input,body .content input[type=url]{background-color:#fff;border:1px solid #c3cfd6;color:#738491;box-shadow:none;transition:border-color .15s ease,color .15s ease;padding:6px 12px}body .content .text:hover,body .content textarea:hover,body .content input[type=text]:hover,body .content input[type=password]:hover,.side .spacer input:hover,body .content input[type=url]:hover{border-color:#738491}body .content .text:focus,body .content textarea:focus,body .content input[type=text]:focus,body .content input[type=password]:focus,.side .spacer input:active,body .content input[type=url]:focus{border-color:#24a0ed;color:#292f34}body .btn,body button{margin:4px 16px 4px 0;padding:2px 18px;background-color:#0079d3;border:none;border-radius:2px;color:#fff;text-transform:uppercase;font-weight:700;cursor:default;height:32px;font-size:12px;box-shadow:0 2px 1.5px 0 rgba(0,0,0,.12),0 0 4px 0 rgba(0,0,0,.12);transition:box-shadow .2s cubic-bezier(.4,0,1,1),background-color .2s cubic-bezier(.4,0,.2,1),color .2s cubic-bezier(.4,0,.2,1)}.btn:hover,button:hover{color:#fff;background-color:#158be2;box-shadow:0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12),0 2px 4px -1px rgba(0,0,0,.2)}.btn:active,button:active{color:#fff;background-color:#0066b2;box-shadow:0 2px 1.5px 0 rgba(0,0,0,.12),0 0 4px 0 rgba(0,0,0,.12)}#header{margin:0;height:196px;border:none;background-color:#30333A;background-image:url(%%headerimg%%);background-repeat:no-repeat;background-position:50% 50%;background-size:cover;z-index:1;box-shadow:0 2px 1.5px 0 rgba(0,0,0,.12),0 0 4px 0 rgba(0,0,0,.12)}#sr-header-area{background-color:rgba(0,0,0,0.08);border:none;transition:all .15s ease;height:24px;line-height:23px}#sr-header-area .width-clip{right:300px}body:not(.loggedin) #sr-header-area .width-clip{right:340px}#sr-header-area .sr-list{margin-right:48px}#sr-header-area .sr-bar a,#sr-more-link,#sr-header-area .separator,#sr-header-area .dropdown.srdrop .selected{background-color:transparent;color:rgba(255,255,255,0.4);transition:all .15s ease}#sr-header-area:hover .sr-bar a,#sr-header-area:hover #sr-more-link,#sr-header-area:hover .seperator,#sr-header-area:hover .dropdown.srdrop .selected{color:rgba(255,255,255,0.8)}#sr-header-area .sr-bar a:hover,#sr-more-link:hover,#sr-header-area .dropdown.srdrop .selected:hover{background-color:transparent;border:none;transition:all .15s ease}a.random.choice{padding-top:2px;position:relative;display:inline-block;margin-top:-2px}#sr-header-area .dropdown.srdrop .selected{margin:0 12px 0 8px;padding:0;background-image:none}#sr-header-area .dropdown.srdrop .selected:hover{text-decoration:underline}#sr-header-area .dropdown.srdrop .selected:after{position:relative;content:"▼";margin-left:4px;font-size:10px}#sr-header-area .drop-choices.srdrop{background-color:#fff;border:none;box-shadow:0 2px 3px rgba(0,0,0,0.15)}#sr-header-area .drop-choices a.choice{border-bottom:1px solid #edeeee;color:#4D5763;padding:2px}#sr-header-area .drop-choices a.choice:hover{background-color:#f1f1f1}#header-bottom-right{position:absolute;top:0;right:0;width:auto;max-width:300px;height:24px;background-color:transparent;font-size:11px;padding:5px 8px 4px 2px}body:not(.loggedin) #header-bottom-right{max-width:340px}#header-bottom-right a{color:rgba(255,255,255,0.7)}#header-bottom-right a:hover{text-decoration:underline}.beta-hint a{margin-left:-16px;width:16px;height:16px;background-image:url(%%spritesheet%%);background-repeat:no-repeat;background-position:-48px -32px;background-size:inherit}.user .userkarma{font-weight:400;color:rgba(255,255,255,0.4);border:none;font-size:9px;transition:all .15s ease}.separator,.user{color:rgba(255,255,255,0.4)}#mail,#modmail{width:16px;height:14px;background-image:url(%%spritesheet%%)!important;background-repeat:no-repeat!important;background-color:transparent;transition:all .25s ease}#mail{top:-2px;overflow:visible}#mail.nohavemail{background-position:-0 -0}#mail.havemail{background-position:-0 -32px;opacity:1}.message-count{background-color:#f50;position:relative;top:-1px;color:#fff!important}#mail.havemail:before{position:fixed;padding:16px 24px;bottom:24px;z-index:100;background-color:#EA4848;border-radius:2px;box-shadow:0 1px 5px rgba(0,0,0,0.24);color:#fff;width:300px;height:48px;left:32px;content:"You have new messages!";text-indent:0;font-size:14px;font-family:arial,sans-serif;line-height:1;-webkit-transform:translateY(112px);transform:translateY(112px);transition:background-color .25s ease,box-shadow .25s ease;background-image:url(%%spritesheet%%);background-position:269px -120px;background-repeat:no-repeat}#mail.havemail:hover:before{background-color:#ec5b5b;box-shadow:0 3px 12px rgba(0,0,0,0.48)}#mail.havemail:active:before{background-color:#c73d3d;box-shadow:0 4px 14px rgba(0,0,0,0.76)}#modmail{top:-3px}#modmail.nohavemail{background-position:-16px -0}#modmail.havemail{background-position:-16px -32px;opacity:1}#header-bottom-right a.pref-lang,.loggedin .logout a{background-position:-32px -0;background-image:url(%%spritesheet%%);width:16px;height:14px;display:inline-block;text-indent:-9999px;margin:0;position:relative;top:-1px;transition:all .25s ease}.loggedin .logout a{background-position:-48px -0}#header-img.default-header,#header-img{z-index:99;width:0;padding-left:42px;height:42px;background-image:url(%%spritesheet%%);background-position:-80px -0;margin:0 8px 0 0;vertical-align:top;font-size:0}#header-img.default-header:hover,#header-img:hover{background-position:-122px 0}#header .pagename{font-size:0}#header .pagename a{display:inline-block;line-height:42px;color:#fff;font-size:42px;font-weight:700;font-family:Lato,arial,sans-serif;font-variant:normal;text-shadow:0 1px 12px rgba(0,0,0,0.2)}#header-bottom-left{position:absolute;top:100px;left:16px;right:384px}#header .tabmenu{margin:12px 0 0;display:block;height:42px;line-height:42px;border:none}#header .tabmenu:before{content:"";display:block;position:absolute;left:-16px;right:-384px;background-color:rgba(0,0,0,0.24);height:42px;z-index:-1}#header .tabmenu li a{margin:0 16px;padding:0;text-transform:uppercase;font-weight:400;font-size:14px;font-family:Lato,arial,sans-serif;color:rgba(255,255,255,0.7);display:inline-block;line-height:32px}#header .tabmenu li a:hover{color:#fff}#header .tabmenu li:first-of-type a{margin-left:0}#header .tabmenu li.selected a{padding-bottom:4px;color:#fff;border-bottom:2px solid}.listing-page .tabmenu li > a[href$="/controversial/"],.wiki-page .tabmenu li > a[href$="/controversial/"],.listing-page .tabmenu li > a[href$="/promoted/"],.wiki-page .tabmenu li > a[href$="/promoted/"]{display:none!important}body >.content{margin:16px 352px 64px 16px;padding:0;padding-top:8px!important}.link{margin:0;padding:16px 0;position:relative}body >.content .link .rank,.rank-spacer{display:none}.link .midcol{width:32px!important;margin:0 16px 0 0;overflow:visible;height:56px}.link .score{line-height:16px;font-size:12px;text-align:center;margin:1px -100%}.link .score.likes{color:#ff6422}.link .score.dislikes{color:#5c5bd7}.arrow{margin:0;background-image:url(%%spritesheet%%)!important;background-color:transparent;width:33px;border-radius:2px;transition:background-color .25s ease}.arrow:hover{background-color:rgba(0,0,0,0.05)}.arrow.up{height:20px;background-position:-0 -80px;transition:background-color .25s ease}.arrow.upmod{height:20px;background-position:-32px -80px;position:relative}.arrow.upmod:focus:after{position:absolute;left:2px;bottom:-3px;width:28px;height:28px;opacity:1;z-index:100;content:" ";background-color:#f50;border-radius:28px;animation:upvote .35s ease-out forwards;-webkit-animation:upvote .35s ease-out forwards}.arrow.down{height:20px;background-position:-64px -80px;transition:background-color .25s ease}.arrow.downmod{height:20px;background-position:-0 -100px}.arrow.down:after{display:block;visibility:hidden;position:absolute;z-index:1000;margin-top:-6px;margin-left:32px;padding:12px;background-color:rgba(79,77,192,0.0);border:none;border-radius:2px;color:rgba(255,255,255,0);content:"For content that does not contribute to any discussion.";text-align:center;letter-spacing:1px;font-weight:400;font-size:13px;transition:all .25s ease;pointer-events:none}.arrow.down:hover:after{visibility:visible;background-color:rgba(79,77,192,0.9);color:#FFF;margin-left:48px}.thumbnail{width:80px;height:56px;margin:0 16px 0 0}.thumbnail img{min-height:56px;min-width:80px;max-width:none;position:relative;transform:translateY(-50%);top:50%}.stickied .thumbnail,.thumbnail.default,.thumbnail.self,.over18.link .thumbnail{width:80px;height:56px}.thumbnail.default{background:url(%%spritesheet%%) -176px -48px}.thumbnail.self{background:url(%%spritesheet%%) -96px -104px}.stickied .thumbnail{background:url(%%spritesheet%%) -96px -48px}.over18.link .thumbnail{background:url(%%spritesheet%%) -176px -104px!important}.over18.link .thumbnail img{display:none}a.thumbnail[href*="reddit.com"]{background:url(%%spritesheet%%) -176px -160px}a.thumbnail[href*="reddit.com"] img{display:none}.link .entry{padding:0;margin:0;max-width:960px}.link .title{margin:0;font-size:13.5pt;font-family:Arial,sans-serif;transition:all .15s ease;overflow:visible}body .content .sitetable .link .title a:hover{color:#24a0ed}.thing .title.loggedin.click,.thing .title.click,.thing .title.loggedin,.thing .title{color:#24a0ed}.content .thing .title:visited,.content .thing.visited .title{color:#738491}.thing .title.loggedin.click:visited,.thing .title.click:visited{color:#24a0ed}.link .domain{visibility:hidden}.link .domain a{visibility:visible;position:relative;top:-1px;color:#98abba;transition:all .15s ease}.link .domain a:hover{color:#24a0ed;text-decoration:none}.approval-checkmark{cursor:default}.expando-button,.expando-button.image,.expando-button.video-muted{position:relative;top:-1px;margin:2px 6px 2px 0 !important;width:16px!important;height:16px!important;border-radius:2px;background-color:transparent;background-image:url(%%spritesheet%%)!important;border:1px solid #e9e9e9;cursor:pointer}.expando-button:hover{background-color:#0079d3;border-color:#0079d3}.expando-button.selftext.collapsed{background-position:-0 -48px!important}.expando-button.selftext.collapsed:hover{background-position:-16px -48px!important}.expando-button.selftext.expanded{background-position:-32px -48px!important}.expando-button.selftext.expanded:hover{background-position:-48px -48px!important}.expando-button.video.collapsed{background-position:-64px -48px!important}.expando-button.video.collapsed:hover{background-position:-80px -48px!important}.expando-button.video.expanded{background-position:-32px -48px!important}.expando-button.video.expanded:hover{background-position:-48px -48px!important}.expando-button.image.collapsedExpando{background-position:-32px -64px!important}.expando-button.image.collapsedExpando:hover{background-position:-48px -64px!important}.expando-button.image.expanded{background-position:-32px -48px!important}.expando-button.image.expanded:hover{background-position:-48px -48px!important}.expando-button.image.gallery.collapsedExpando{background-position:-0 -64px!important}.expando-button.image.gallery.collapsedExpando:hover{background-position:-16px -64px!important}.expando-button.image.gallery.expanded{background-position:-32px -48px!important}.expando-button.image.gallery.expanded:hover{background-position:-48px -48px!important}.expando-button.video-muted.collapsed{background-position:-64px -64px!important}.expando-button.video-muted.collapsed:hover{background-position:-80px -64px!important}.expando-button.video-muted.expanded{background-position:-32px -48px!important}.expando-button.video-muted.expanded:hover{background-position:-48px -48px!important}.link .usertext .md{margin-top:12px;margin-bottom:-12px;padding-top:12px;padding-left:0;background-color:transparent;border:0 solid;border-top:1px solid #edf1f3;border-radius:0;color:#292f34}.entry .tagline{margin-top:3px;color:#98abba;font-size:12px;font-family:arial,sans-serif}.link .entry .tagline a{color:#292f34}.link .entry .tagline:first-letter{text-transform:capitalize}.link .entry .tagline time{cursor:help}.link .entry .tagline a:hover{color:#24a0ed;text-decoration:none}.link .entry .tagline a.author{margin-right:inherit}.link .entry .tagline .userattrs{visibility:hidden}.link .entry .tagline .userattrs a{visibility:visible;cursor:help;display:inline-block;background-color:red;color:#fff!important;line-height:14px;padding:0 3px;border-radius:2px;font-size:11px}.link .entry .tagline .userattrs a.moderator{background-color:#27b062}.RESUserTagImage::after{display:none}.RESUserTagImage{vertical-align:top;height:10px;width:16px;background-image:url(%%spritesheet%%);background-position:-32px -101px;opacity:.25;margin-left:2px;transition:opacity .15s ease;margin-top:2px}.RESUserTagImage:hover{opacity:1}.link .flat-list{padding:0;margin-top:3px}.entry .buttons li{line-height:normal}.entry .buttons li a{padding:0 1px;color:#98abba;font-weight:400;font-size:13px;font-family:Arial,sans-serif;transition:all .15s ease}.link .entry .buttons li a:hover{color:#24a0ed;text-decoration:none}.entry .buttons li.nsfw-stamp{padding:0;border-radius:0;border:none!important}.nsfw-stamp{padding:0;border-radius:0;border:0}.nsfw-stamp acronym{position:relative;top:-1px;padding:2px 3px;background-color:#ea4876;border-color:#ea4876;border-radius:0;color:#fff;cursor:help}.link .entry .buttons li a.comments{color:#24a0ed;font-weight:700!important;transition:all .25s ease-in-out!important}.link .entry li .comments:hover{text-decoration:none}.action-form{position:fixed;top:35%;left:40%;margin:0;padding:24px;background-color:#fff;z-index:100;box-shadow:0 0 16px rgba(0,0,0,0.12);border:none;border-radius:2px}.action-form .reason-prompt{font-size:16px;color:#4D5763;padding-bottom:8px;display:block}.action-form .reason-prompt:first-letter{text-transform:capitalize}.action-form .reason-prompt li{padding:4px 4px 4px 0;display:block}.action-form li label{padding:4px 4px 4px 0;cursor:pointer;display:block;color:#4D5763;text-transform:capitalize}.action-form li label:hover{background-color:rgba(0,0,0,0.05)}.action-form input[name="other_reason"]{padding:8px}.link .entry .buttons li a.flairselectbtn{color:#24a0ed}.link .entry .buttons li .redditSingleClick{padding:0 1px;color:#98abba;font-weight:400;font-size:13px;font-family:Calibri,Candara,Segoe,"Segoe UI",Optima,Arial,sans-serif;transition:all .15s ease}.linkflairlabel{padding:1px 6px;height:18px;border-radius:1px;border:0 solid;color:#fff;font-weight:700;font-style:normal;font-variant:normal;font-size:13px;font-family:Arial,sans-serif;cursor:default;vertical-align:middle;position:relative;top:-2px;background-color:#738491}.linkflair-mod .linkflairlabel{background-color:#27b062;color:#fff}.linkflair-mod a{color:#27b062!important}.linkflair-mod .thumbnail.default,.linkflair-mod .thumbnail.self{background:url(%%spritesheet%%) -96px -48px!important}body .content .thing.spam{background-color:#FFE9E6}.entry .buttons li.reported-stamp{background-color:transparent;border:1px solid #EDEEEE!important;border-radius:2px;color:#292f34;line-height:17px}a.pretty-button.negative,a.pretty-button.neutral,a.pretty-button.positive{background-image:none;border-radius:2px;box-shadow:inset 0 0 0 rgba(0,0,0,0.25);color:#fff;line-height:15px;transition:all .1s ease}a.pretty-button.negative{background-color:#fb797e;border-color:#fb797e}a.pretty-button.negative:hover{background-color:#fc535a;border-color:#fc535a}a.pretty-button.neutral{background-color:#ddd;border-color:#ddd;color:#4A4F57}a.pretty-button.neutral:hover{background-color:#ececec;border-color:#ececec}a.pretty-button.positive{background-color:#1ecd97;border-color:#1ecd97}a.pretty-button.positive:hover{background-color:#22e1a6;border-color:#22e1a6}a.pretty-button.positive.pressed,a.pretty-button.neutral.pressed,a.pretty-button.negative.pressed{background-image:none;box-shadow:inset 0 3px 1px rgba(0,0,0,0.15)}ul.report-reasons{border-radius:2px;background-color:transparent;border:1px solid #edf1f3;padding:8px;font-size:12px;margin-top:4px}.link.last-clicked{left:-16px;margin-right:-32px;padding-left:16px;background-color:rgba(0,0,0,0.04);border:none}.thing.link.stickied a.title,.thing.link.stickied a,.thing.link.stickied .entry li .comments{color:#27b062!important}.thing.link.stickied .expando-button:hover{background-color:#27b062!important;border-color:#27b062!important}.tagline .stickied-tagline{color:#b3b3b3;cursor:help}.stickied.comment>.entry a,.stickied.comment .tagline .stickied-tagline{color:#27b062!important}.content .spacer{margin:0}.link.promotedlink.promoted{background-color:#EFF7FF;padding:16px 0}.link.promotedlink.promoted .thumbnail{height:auto}.link.promotedlink.promoted .thumbnail img{max-height:none;max-width:none;min-width:0;min-height:0}.organic-listing{background-color:#fff!important;padding:0;position:relative;margin-bottom:0;border:none;border-radius:2px 2px 0 0}.organic-listing .link,.organic-listing .link.compressed,.organic-listing .link.promotedlink{padding:16px;background-color:transparent;border:1px solid #edf1f3;border-radius:3px}.organic-listing .help{margin-bottom:20px;margin-right:16px;color:#98abba}.organic-listing .sponsored-tagline{margin-bottom:20px;margin-right:16px;color:#98abba}.link.compressed{margin-bottom:0;padding-top:0;padding-bottom:0}.link.compressed .score{margin:0 3px 0 0}.link.compressed .entry{padding:9px 32px 9px 0}.link.compressed .title{margin:0}body>.content .link.compressed .midcol{height:auto;margin:8px 4px 0 0}.flairselector{position:fixed;top:20%!important;left:50%!important;margin-left:-125px;padding:16px!important;width:250px!important;border:none;border-radius:2px;box-shadow:0 0 16px rgba(0,0,0,0.12)}.flairselector.drop-choices.active{border:none}.flairselector h2{margin-bottom:4px;background-color:transparent;color:#24a0ed;text-align:left;text-transform:capitalize;font-weight:400;font-size:18px}.flairoptionpane{max-height:250px;text-align:left}.flairselector .flairoptionpane ul li{padding:0!important}.flairoptionpane ul li .linkflair{text-align:left;padding:0}.flairoptionpane ul li .linkflair:hover,.flairselector li:hover{background-color:#F5F8F9;border:0 solid}.flairoptionpane ul li .linkflair span.linkflairlabel{margin:8px 0;line-height:1.35;margin-right:6px}.flairoptionpane ul li .linkflair a.title{font-size:18px!important;opacity:100!important;color:#24a0ed!important}.flairselector form{padding-top:12px;border-top:1px solid #F7F7F7}.flairselector form .flairselection{text-align:left}.flairselector form .flairselection:before{display:block;content:"Selected Flair:";color:#738491}.flairselector form .flairselection .linkflair a.title{font-size:18px!important;opacity:100!important;color:#24a0ed!important;cursor:default}.flairselector form .flairselection .flairremove{padding:4px 0;margin-bottom:8px;visibility:hidden;display:block!important}.flairselector form .flairselection .flairremove a{visibility:visible;opacity:100!important;color:#24a0ed!important;margin-left:-4px;text-transform:capitalize}.flairselector form .flairselection .flairremove a:first-letter{text-transform:capitalize}.flairselector form .flairselection .flairremove a:hover{text-decoration:underline!important}.flairselector .customizer{display:block;margin:8px 0;width:100%}.flairselector .customizer input[type='text']{width:100%}.flairselector form button{display:block;float:right;margin:0}.flairselector .error{text-align:left}.flairselector .error:first-letter{text-transform:capitalize}.flairselector .error:after{display:block;color:#b3b3b3;content:"Go to /r/.../about/flair"}.flairselector img{position:relative;left:50%;margin-left:-9px;opacity:.5}.flairselector .flairoptionpane ul li{margin:4px 0}.flairselector li.selected{border:none;background-color:transparent}.flairselector .flairoptionpane ul li.flairsample-right{padding:5px 0!important;border:none}.flairselector li a,.flairselector form .flairselection a.author{color:#738491!important;font-size:11px}.unvotable-message{border:0 solid;color:#738491}.unvotable-message:first-letter{text-transform:capitalize}.res .RES-keyNav-activeElement{outline:0 dashed #EEE!important;transition:all .15s ease}.res .entry{transition:all .1s ease}div.RES-keyNav-activeElement,div.commentarea div.RES-keyNav-activeElement.entry div.noncollapsed{background-color:transparent!important;padding-left:8px!important;border-left:3px solid #C2C2C2}div.commentarea div.RES-keyNav-activeElement .md{background-color:transparent!important}.res .commentarea .thing{padding:14px 16px 8px 8px !important}.res .commentarea .thing.collapsed{padding-bottom:16px!important}.res .commentarea .entry .flat-list{margin-bottom:0;padding-bottom:0}.res .comment .entry{margin-bottom:16px}.userTagLink.hasTag,#userTaggerPreview{font-size:11px!important;border-radius:0!important;border:0 solid!important;margin-top:0!important;margin-left:4px!important}.RESDialogSmall{border:none;box-shadow:0 2px 3px rgba(0,0,0,0.12);margin-top:8px}.RESDialogSmall > h3{color:#4F8EF7;background-color:#FFF;border-bottom:1px solid #EDEDED;height:36px;padding:8px;margin:0}.livePreview .md{padding:8px 12px}.RESCloseButton{line-height:19px;height:22px;width:22px;transition:all .15s ease}.RESCloseButton:hover{border:1px solid #D7D9DC}#userTaggerToolTip input[type=text],#userTaggerToolTip select{line-height:22px;padding-left:4px;border:1px solid #E5E5E5!important}.toggleButton{line-height:.8}.toggleButton .toggleOn{border-radius:0;border:1px solid #4F8EF7;background-color:#4F8EF7;color:#fff;text-transform:capitalize}.toggleButton .toggleOff{border-radius:0;border:1px solid #D7D9DC;background-color:transparent;text-transform:capitalize}#userTaggerToolTip input[type=submit]{bottom:10px!important}.top-page .menuarea{margin:16px 0 24px;padding:0;border:none;color:#738491;overflow:visible}.dropdown.lightdrop .selected{color:#292f34;text-decoration:none;cursor:pointer;padding:8px 12px;border:1px solid #edf1f3;border-radius:2px;background-image:none}.dropdown.lightdrop .selected:hover{background-color:rgba(0,0,0,0.05)}.dropdown.lightdrop .selected:after{content:" ▼"}.drop-choices.lightdrop{margin-top:8px}.guider{border:none;box-shadow:0 2px 3px #DDD}.guider_content h1{color:#4F8EF7}.guider_button{font-size:11px;border:none;background-image:none;background-color:#4F8EF7;transition:all .15s ease}.guider_button:hover{background-color:rgba(79,142,247,0.75)}.x_button{transition:all .25s ease;box-shadow:0 1px 4px rgba(0,0,0,0.00)}.x_button:hover{box-shadow:0 1px 4px rgba(0,0,0,0.15)}.content .infobar{margin:0 0 16px;padding:8px 16px;line-height:26px;border:none;background-color:#0079d3;color:#fff;border-radius:2px}.infobar .md{color:#fff}.content .infobar:first-letter{text-transform:capitalize}.content .infobar.welcome{line-height:inherit;height:86px}.content .infobar.welcome h1{color:#4d5763}.commentarea .infobar{line-height:18px;margin:8px 0 16px}.commentarea .infobar a{color:rgba(0,0,0,0.64);font-weight:700}.reddit-infobar.with-icon{border:none;background:#fff;box-shadow:0 2px 1.5px 0 rgba(0,0,0,.12),0 0 4px 0 rgba(0,0,0,.12);margin:0 0 16px}.reddit-infobar.with-icon .md{color:#000;font-size:14px}.reddit-infobar.with-icon.locked-infobar{background-color:#27B062}.reddit-infobar.with-icon.locked-infobar .md{color:#fff}.reddit-infobar.with-icon.locked-infobar p:after{content:" Sort comments by new to find out more."}.reddit-infobar.with-icon.locked-infobar:before{background-color:#27B062;border-right:1px solid rgba(0,0,0,0.08)}#eu-cookie-policy .reddit-infobar{padding-right:118px}#eu-cookie-policy .c-btn-primary{margin:-2px 16px 0 0}#noresults{margin:0;width:100%;height:416px;background:transparent url(%%noresults%%) no-repeat 50% 50%;text-indent:-9999px;font-size:0;display:block}.nav-buttons{padding:16px 16px 16px 0;color:#738491}.nav-buttons .nextprev{color:#738491;font-size:14px}.nav-buttons .nextprev a{border:0;padding:8px 16px;background-color:transparent;border:1px solid #edf1f3;transition:background-color .15s ease}.nav-buttons .nextprev a:hover{text-decoration:none;background-color:rgba(0,0,0,0.05)}.side{margin:282px 16px 108px 0;padding:0;background-color:transparent;width:320px}.side .spacer{margin:0 0 16px}.side:before{height:192px;background-image:url(%%sidebarimg%%);background-color:#DBDBDB;content:"";display:block;position:absolute;top:100px;width:320px;z-index:1;border-radius:2px;box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12)}.side .titlebox h1.redditname:before{content:" ";position:absolute;display:block;width:320px;z-index:-1;height:76px;margin-top:-16px;margin-left:-16px;background-color:#fff;border-radius:0 0 2px 2px;box-shadow:0 1px 4px 0 rgba(0,0,0,0.14)}.side .titlebox h1.redditname{margin-bottom:6px;position:absolute;top:308px;z-index:100;font-family:Lato,arial,verdana,helvetica,sans-serif}.side .titlebox h1.redditname a{color:#333}.titlebox span.subscribers{position:absolute;z-index:100;color:#333;font-size:12px;top:336px}div.titlebox span.word{display:none}.titlebox .users-online{display:inline}.titlebox .users-online:before{display:none}div.titlebox span.number:after{content:" readers"}.titlebox .users-online .number{font-style:italic}.titlebox .users-online .number:before{content:"";width:16px;height:9px;display:inline-block;margin-right:8px;background-image:url(%%spritesheet%%);background-position:-64px -36px}.titlebox .users-online .number:after{content:" currently online"}.titlelebox .word{display:none}.titlebox .users-online,.titlebox .number{cursor:text}.titlebox .fancy-toggle-button{margin:0;position:absolute;margin-left:208px;top:314px;z-index:100}.titlebox .fancy-toggle-button .active{display:block;border:none;height:32px;border-radius:2px;line-height:30px;background-image:none!important;padding:0 12px;text-transform:capitalize;box-shadow:0 2px 1.5px 0 rgba(0,0,0,.12),0 0 4px 0 rgba(0,0,0,.12);transition:box-shadow .2s cubic-bezier(.4,0,1,1),background-color .2s cubic-bezier(.4,0,.2,1),color .2s cubic-bezier(.4,0,.2,1),padding .2s ease,margin .2s ease}.titlebox .fancy-toggle-button .active:hover{box-shadow:0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12),0 2px 4px -1px rgba(0,0,0,.2)}.titlebox .fancy-toggle-button .active:active{box-shadow:0 0 0 rgba(0,0,0,0.0)}.titlebox .fancy-toggle-button .active.add{background-color:#27b062;color:#fff}.titlebox .fancy-toggle-button .active.add:hover{background-color:#36bb6f}.titlebox .fancy-toggle-button .active.add:active{background-color:#189b51;padding-left:24px;margin-left:-13px;text-align:center}.titlebox .fancy-toggle-button .active.remove{background-color:rgba(0,0,0,0.24);color:#fff;margin-left:-14px;box-shadow:none}.titlebox .fancy-toggle-button .active.remove:hover{background-color:rgba(0,0,0,0.32)}.titlebox .fancy-toggle-button .active.remove:active{background-color:rgba(0,0,0,0.4)}.hover-bubble.multi-selector{right:346px!important;margin-top:-56px;border:none}.hover-bubble.anchor-right:before{right:-19px;border-left-color:#CCC}#search{position:absolute;top:384px;z-index:1;width:320px}#search input[type=text]{padding:0 42px 0 16px;border:0 solid;border-radius:2px;width:320px;height:42px;line-height:41px;background-color:#fff;box-shadow:0 1px 4px 0 rgba(0,0,0,0.14);transition:box-shadow .2s cubic-bezier(.4,0,1,1),background-color .2s cubic-bezier(.4,0,.2,1),color .2s cubic-bezier(.4,0,.2,1)}#search input[type=text]:hover{box-shadow:0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12),0 2px 4px -1px rgba(0,0,0,.2)}#search input[type=text]:focus{border-radius:2px 2px 0 0}#search input[type=text]:focus:hover{box-shadow:0 1px 5px rgba(0,0,0,0.24)!important}#search input[type="text"]:-moz-placeholder{font-size:0}#search input[type="text"]::-webkit-input-placeholder{font-size:0}#search input[type="text"]:-ms-input-placeholder{font-size:0}#search input[type="text"]:-moz-placeholder::after{font-size:14px;content:"Search reddit";position:relative;top:1px}#search input[type="text"]::-webkit-input-placeholder::after{font-size:14px;content:"Search reddit";position:relative;top:1px}#search input[type="text"]:-ms-input-placeholder::after{font-size:14px;content:"Search reddit";position:relative;top:1px}#search input[type=text]::-webkit-input-placeholder{color:#B3B3B3}#search input[type=text]:-moz-placeholder{color:#B3B3B3}#search input[type=text]::-moz-placeholder{color:#B3B3B3}#search input[type=text]:-ms-input-placeholder{color:#B3B3B3}#search input[type=submit]{height:32px;width:32px;margin-left:-38px;background-image:url(%%spritesheet%%);background-position:-64px -96px;background-repeat:no-repeat;border:none!important;border-radius:16px;background-color:rgba(0,0,0,0.00);transition:background-color .2s cubic-bezier(.4,0,.2,1)}#search input[type=submit]:hover{background-image:url(%%spritesheet%%);background-position:-64px -96px;background-repeat:no-repeat;background-color:rgba(158,158,158,.2)}#search #searchexpando{background-color:#edf1f3;border:none;border-radius:0 0 2px 2px;margin:0;padding:4px;height:54px;line-height:50px;box-shadow:0 1px 4px 0 rgba(0,0,0,0.14)}#search #searchexpando label{padding:21px 8px 17px;cursor:pointer;transition:all .1s ease}#search #searchexpando label:active{background-color:rgba(0,0,0,0.06)}#search #searchexpando p{display:none!important}.morelink{position:absolute;top:442px;background-color:#0079d3;background-image:none!important;width:152px;height:36px;border-radius:2px;line-height:36px;border:none;text-align:center;padding:0;box-shadow:0 2px 1.5px 0 rgba(0,0,0,.12),0 0 4px 0 rgba(0,0,0,.12);transition:box-shadow .2s cubic-bezier(.4,0,1,1),background-color .2s cubic-bezier(.4,0,.2,1),color .2s cubic-bezier(.4,0,.2,1)}.morelink:hover{background-color:#158be2;box-shadow:0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12),0 2px 4px -1px rgba(0,0,0,.2)}.morelink:active{background-color:#0066b2;box-shadow:0 2px 1.5px 0 rgba(0,0,0,.12),0 0 4px 0 rgba(0,0,0,.12)}.sidebox.submit.submit-text .morelink{margin-left:168px}.morelink a{color:#fff;font-weight:400;font-size:0;letter-spacing:0}.sidebox.submit.submit-text .morelink a:after{font-size:14px;content:"Submit Text"}.sidebox.submit.submit-link .morelink a:after{font-size:14px;content:"Submit Link"}.side .sidebox.submit-text .morelink:before,.side .sidebox.submit-link .morelink:after{content:"N/A";position:absolute;left:-168px;top:0;width:152px;color:rgba(0,0,0,0.32);border-radius:2px;background-color:rgba(0,0,0,0.08);font-weight:400;z-index:-1}.side .sidebox.submit-link .morelink:after{left:168px}.disabled .morelink{box-shadow:none!important;background-color:rgba(0,0,0,0.08);width:320px}.disabled .morelink a{color:rgba(0,0,0,0.32);font-size:14px}.morelink .nub{display:none}.login-form-side{border:none;border-bottom:1px solid #edf1f3;padding-bottom:8px}.login-form-side input[type=text],.login-form-side input[type=password]{width:136px;margin:0}.login-form-side input[type=text]{margin-left:0;margin-right:16px}.login-form-side button.btn{margin-right:-3px}.titlebox:before{content:"Subreddit Info";display:block;font-size:18px;line-height:24px;color:#292f34;font-family:verdana,arial,helvetica,sans-serif;margin:8px 0}.titlebox .tagline{font-size:12px;margin:0}.titlebox .tagline:after{content:"";height:2px;background-color:#f2f2f2;display:block;margin-top:16px}.titlebox .tagline a.flairselectbtn{color:#24a0ed}.leavemoderator,.titlebox .tagline a.author,.titlebox form.toggle.leavecontributor-button{display:none}.titlebox form.flairtoggle{line-height:2}.titlebox form.toggle.sr_style_toggle{padding-bottom:0;display:block;background-color:transparent}.titlebox form.toggle.sr_style_toggle label{position:relative;top:-3px}.side .md .-blocks,.side .md .-lists,.side .md pre,.side .md blockquote,.side .md table,.side .md p,.side .md ul,.side .md ol{font-family:Lato,arial,sans-serif;color:#292f34;line-height:1.45;font-size:13px}.side .titlebox .md h1{line-height:18px;margin:.5em 0 0!important}.side .titlebox .md h2{margin:16px 0 2px}.side .titlebox .md h3 a{padding:0 16px;width:100%;border-radius:2px;background-color:#0079d3;font-family:verdana,arial,sans-serif;color:#fff;display:block;margin:1.5em 0;font-size:12px;line-height:42px;text-align:center;box-shadow:0 2px 1.5px 0 rgba(0,0,0,.12),0 0 4px 0 rgba(0,0,0,.12);transition:box-shadow .2s cubic-bezier(.4,0,1,1),background-color .2s cubic-bezier(.4,0,.2,1),color .2s cubic-bezier(.4,0,.2,1)}.side .titlebox .md h3 a:hover{background-color:#158be2;box-shadow:0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12),0 2px 4px -1px rgba(0,0,0,.2)}.side .titlebox .md h3 a:active{background-color:#0066b2;box-shadow:0 2px 1.5px 0 rgba(0,0,0,.12),0 0 4px 0 rgba(0,0,0,.12)}.side .titlebox .md h4 a,.wiki-page .wiki-page-content .md.wiki h4{padding:0 16px;background-color:#FFF;border:none;border-radius:2px;color:#24a0ed;font-weight:700;display:block;margin:1.5em 0;font-size:12px;line-height:42px;text-align:center;box-shadow:0 2px 1.5px 0 rgba(0,0,0,.12),0 0 4px 0 rgba(0,0,0,.12);transition:box-shadow .2s cubic-bezier(.4,0,1,1),background-color .2s cubic-bezier(.4,0,.2,1),color .2s cubic-bezier(.4,0,.2,1)}.side .titlebox h4 a:hover,.wiki-page .wiki-page-content .md.wiki h4:hover{box-shadow:0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12),0 2px 4px -1px rgba(0,0,0,.2)}.side .titlebox h4 a:active,.wiki-page .wiki-page-content .md.wiki h4:active{background-color:#f4f6f7;box-shadow:0 2px 1.5px 0 rgba(0,0,0,.12),0 0 4px 0 rgba(0,0,0,.12)}.md hr{border:solid 1px #e5e5e5}.titlebox .bottom{display:none}.side #moderation_tools .title h1{text-transform:capitalize;color:#4D5763}.side #moderation_tools .title .collapse-button{color:#4D5763;vertical-align:middle;border-radius:1px;border:1px solid #d8d8d8}.side .sidecontentbox .content{border:none;padding:8px 0}.icon-menu a{background-color:transparent}#ad-frame,#ad_main{width:320px;height:290px;padding:10px 0 0 10px !important}.sponsorshipbox{max-width:320px;padding:0!important}#ad_sponsorship{margin:10px 0 8px 10px;height:120px}.sidebox.create .morelink{position:relative;top:0;width:100%;background-color:#fff}.sidebox.create .morelink a{font-size:14px;color:#24a0ed}.sidebox .spacer{display:none}.gadget .midcol{width:38px}.side:after{display:block;margin:0;padding:10px 0;color:#24A0ED;content:"This subreddit uses the /r/Naut theme.";text-transform:none;font-size:16px;font-family:Lato,arial,sans-serif;position:absolute;width:320px;border:1px solid rgba(0,0,0,0.06);text-align:center}body.comments-page > .content{margin-top:8px}.comments-page .link .usertext .md{margin-bottom:0}.commentarea .panestack-title{margin:10px 0 0;border-bottom:0;padding-left:16px}.commentarea .panestack-title .title{color:#4D5763}.commentarea .menuarea{margin:0;padding-left:16px}.commentarea .menuarea span.dropdown-title.lightdrop{color:#98abba}.commentarea .menuarea span.dropdown-title.lightdrop:first-letter{text-transform:capitalize}.commentarea .menuarea .dropdown.lightdrop .selected{cursor:pointer;text-decoration:none;background-image:none;padding-right:0;font-weight:400;color:#98abba;border:none;padding-left:0}.commentarea .menuarea .dropdown.lightdrop .selected:hover{color:#4F8EF7}.commentarea .menuarea .dropdown.lightdrop .selected:after{content:"▼"}.drop-choices.lightdrop{border:none;z-index:1001;box-shadow:0 1px 4px 0 rgba(0,0,0,0.14)}.drop-choices a.choice{padding:12px 24px 12px 12px;transition:all .1s ease;border-bottom:1px solid #edf1f3}.drop-choices form:last-of-type a.choice{border-bottom:none}.drop-choices a.choice:hover{background-color:#0079d3;color:#fff}.commentarea .menuarea .toggle a,.help-hoverable{color:#98abba;font-weight:400}.commentarea .menuarea .toggle a:hover,.help-hoverable:hover{color:#24a0ed}.help-hoverable{font-size:x-small}.commentarea>.usertext{background-color:#FAFAFA!important;margin:-58px 0 16px;padding:64px 16px 16px!important;overflow:visible}.usertext button{margin:4px 16px 8px 0}.commentarea .usertext-edit{width:100%;max-width:504px}.commentarea .usertext-edit textarea{position:relative;z-index:999;width:100%}.commentarea>.usertext textarea:not(:focus){background:url(%%commentboxbg%%) no-repeat 50% 50%}.usertext .bottom-area{width:504px}.usertext .bottom-area a.reddiquette{color:#24a0ed}.gold-accent.comment-visits-box{margin:0 0 12px;border-radius:2px;background-color:#edf1f3;border:1px solid #d8e0e5;color:#292f34}.gilded-icon:before{background:url(%%gilded%%);height:16px;width:16px}.commentarea .sitetable{margin:0;box-shadow:none}.commentarea .thing{margin:0 0 8px;padding:8px 16px 8px 0}.commentarea .child .thing{box-shadow:none;padding:4px;margin:12px 0 0}.commentarea .comment .midcol{margin-top:2px;width:32px;margin-right:6px;overflow:visible}.comment .child,.comment .showreplies{border-left:1px solid #edf1f3;margin-top:0}.comment .midcol{width:24px;margin-right:0}.comment .midcol .arrow{margin-left:0;margin-bottom:4px}.comment .entry .tagline{color:#98abba;font-size:12px;font-family:Arial,sans-serif}.comment .expand{background-color:transparent;transition:all .15s ease;color:#98abba}.comment .expand:hover{color:#98abba;text-decoration:none;background-color:#edf1f3}.comment.collapsed a.expand:after{content:"ah ";position:absolute;display:block;width:calc(100% - 368px);background-color:rgba(0,0,0,0.00);left:16px;margin-top:-34px;height:50px;border-radius:2px;color:transparent;transition:background-color .2s cubic-bezier(.4,0,.2,1)}.comment.collapsed a.expand:hover:after{background-color:rgba(0,0,0,0.04)}.comment .author{color:#292f34;margin-right:0;font-weight:700}.comment .author:hover{color:#24a0ed;text-decoration:none}.tagline .moderator,.green{color:#27b062!important;font-weight:700}.tagline .submitter{font-weight:700;color:#24a0ed}.res .thing .tagline .author.submitter{padding:1px 4px;border-radius:1px;background-color:#4F8EF7!important;box-shadow:0 0 0 rgba(0,0,0,0);transition:all .15s ease}.res .thing .tagline .author.submitter:hover{box-shadow:0 2px 4px rgba(0,0,0,0.2);background-color:#4F8EF7!important}.comment .score{font-size:inherit;font-weight:700;color:#738491}.comment .score:before{content:"• ";margin:0 2px;vertical-align:middle;line-height:14px}.comment .usertext .md{color:#292f34}.md a{color:#24a0ed}.md a:visited{color:#7D5D8A}.md pre{padding:8px}.md blockquote{border-left:2px solid #edf1f3;color:#738491}.md h1,.md h2{margin:.5em 0 .25em;border:none;color:#292f34}.md h3{color:#292f34;margin:16px 0 0}.usertext.grayed .usertext-body{margin:4px 0;background-color:transparent;text-transform:italic;padding:0}.comment.spam > .child{padding-left:0;margin-left:16px}.comment .flat-list li a{color:#98abba;font-weight:400;font-size:10px}.comment .flat-list li a:hover{color:#24a0ed;text-decoration:none}.comment .flat-list li a[onclick*="reply"]{color:#24a0ed;font-weight:700;font-size:11px}.deepthread a{color:#24a0ed}.morecomments a{color:#738491}.comments-page .side{margin-top:400px}.comments-page .side .linkinfo{position:absolute;top:494px;padding:16px;width:320px;background-color:#fff;border-radius:2px;box-shadow:0 1px 5px rgba(0,0,0,0.16);border:none}.comments-page .side .linkinfo .date{color:#98abba}.comments-page .side .linkinfo .date:first-letter{text-transform:capitalize}.comments-page .side .linkinfo .score{color:#292f34}.res.comments-page .side{margin-top:414px}.read-next{width:320px;height:128px;border:1px solid #edf1f3;border-radius:2px 2px 0 0}.read-next .read-next-header{border-bottom:1px solid #edf1f3;color:#738491;padding:8px 16px;background-color:#f2f7fa}.read-next .read-next-nav{top:8px}.read-next .read-next-button{background-color:#0079d3;color:#fff;font-family:monospace;line-height:16px;font-size:10px;height:16px;width:16px}.read-next .read-next-link{height:inherit}.read-next .read-next-header-title{top:0;line-height:inherit}.read-next .read-next-list{padding:8px 16px}.read-next .read-next-meta{color:#738491;line-height:2}.submit-page #header{height:144px}.submit-page #header-bottom-left{top:86px;left:50%;margin-left:-262px}.submit-page .content{margin:32px auto 0}.submit-page .side,.submit-page .content h1,#suggested-reddits{display:none}.submit-page #newlink.submit.content{width:524px;margin:0 auto}.submit-page #newlink.submit.content form .spacer+.spacer{margin:0}.submit-page #newlink.submit.content ul.tabmenu.formtab{position:relative;padding:0;border:none;background-color:#0079D3;border-radius:2px;box-shadow:0 1px 4px 0 rgba(0,0,0,0.14)}.submit-page #newlink.submit.content .tabmenu.formtab a{padding:16px;width:262px;display:inline-block;text-align:center;color:rgba(255,255,255,0.7);text-transform:uppercase;font-weight:700;transition:all .15s ease;font-size:16px;border:none;border-bottom:4px solid transparent}.submit-page #newlink.submit.content .tabmenu.formtab .selected a{font-size:16px;background-color:transparent;color:#fff;border-bottom:4px solid}.submit-page #newlink.submit.content .tabmenu.formtab a:hover{color:#fff}.submit-page .formtabs-content{border-top:0;padding-top:0}.submit-page .roundfield{padding:16px;width:524px;background-color:#fff;border:none}.submit-page .roundfield .title{color:#292f34;text-transform:capitalize}.submit-page #url-field button{background-color:#c3cfd6}.submit_text.enabled.roundfield{background-color:#0079D3}.submit_text.enabled.roundfield .md{color:#fff}.submit_text ol,.submit_text ul{margin-left:-1em}.submit-page .infobar{display:none!important}.content.submit .info-notice{background-color:#edf1f3;padding:16px;border:none;margin-bottom:0}.submit-page #newlink.submit.content .btn{width:100%;height:auto;margin-top:16px;cursor:pointer;text-transform:capitalize;font-family:Lato,arial,sans-serif;font-size:17px;padding:16px;text-align:left;margin-bottom:48px}.submit-page #newlink.submit.content .btn:after{content:" your post to Reddit.";text-transform:none}.submit-page #newlink.submit.content .btn:hover{box-shadow:0 2px 12px rgba(0,0,0,0.48)}.submit-page .footer-parent{display:none}.search-page #header .pagename a{display:none}.search-page #header{height:156px}.search-page #header-bottom-left{top:56px}.search-page .searchpane{margin:0;padding:0;position:relative}.raisedbox h4{display:none}.search-page #search{position:absolute;top:-128px;left:36px;padding:0}.search-page #search input[type=text]{min-width:320px;width:320px}.combined-search-page .search-submit-button{position:relative;left:-42px;width:32px;height:32px;margin:0;padding:0;background-color:transparent;background-image:url(%%spritesheet%%);background-position:-64px -96px;box-shadow:none;border:none;border-radius:50%;transition:background-color .2s cubic-bezier(.4,0,.2,1)}.combined-search-page .search-submit-button:hover{background-color:rgba(158,158,158,.2)}.combined-search-page .search-submit-button .search-icon{display:none}.search-page #previoussearch label{position:absolute;margin:0;width:100%;padding:12px;background:#f9f9f9;z-index:-1;border-radius:0 0 2px 2px;box-shadow:0 2px 1.5px 0 rgba(0,0,0,.12),0 0 4px 0 rgba(0,0,0,.12);cursor:pointer;margin-top:-2px}.search-page #previoussearch p a#search_showmore{position:absolute;left:324px;top:8px;width:22px;height:24px;background-image:url(%%spritesheet%%);background-repeat:no-repeat;background-position:-49px -168px;overflow:hidden;font-size:0}#previoussearch #moresearchinfo{margin:0;max-width:none;border:none}.combined-search-page .search-result-group{max-width:none;min-width:0;padding:0}.combined-search-page .search-result-group .search-result-group-header{height:36px;line-height:38px;margin:0;border:none}.combined-search-page .search-result-group .search-header-label{text-transform:capitalize;color:#738491;font-family:Lato,Arial,sans-serif;font-size:18px;padding-bottom:2px}.combined-search-page .search-result-group .search-menu{margin-right:16px}.combined-search-page .search-result-group .search-menu .dropdown.lightdrop .selected{color:#738491;text-decoration:none;cursor:pointer;display:inline-block}.combined-search-page .search-result-listing .search-result-subreddit{display:inline-block;width:calc(33% - 8px);max-width:360px;height:184px;margin:0 16px 0 0;padding:16px;border-radius:2px;vertical-align:top;border:1px solid #edf1f3;overflow:hidden}.combined-search-page .search-result-listing .search-result-subreddit:last-of-type{margin-right:-20px}.combined-search-page .search-result-subreddit .search-result-body{padding:0}.combined-search-page .search-result-subreddit .search-result-meta{padding:4px 0}.search-result-subreddit .search-result-meta span.search-time{display:none}.combined-search-page .search-result{margin:16px 0 20px}.combined-search-page .search-result .search-result-header .search-title{color:#24a0ed}.combined-search-page .search-result .search-result-meta{color:#738491}.combined-search-page .search-result a,.combined-search-page .search-result a>mark{color:#24a0ed}.combined-search-page .search-result-subreddit .search-subscribe-button{border-radius:2px}.combined-search-page .search-result-subreddit .search-subscribe-button .add,.combined-search-page .search-result-subreddit .search-subscribe-button .add:active{background-color:#0079d3;border:none;border-radius:2px}.combined-search-page .search-result-subreddit .search-subscribe-button .remove,.combined-search-page .search-result-subreddit .search-subscribe-button .remove:active{background-color:transparent;border:1px solid #98abba;color:#738491}.combined-search-page .search-result .search-comments{color:#24a0ed}.combined-search-page .search-result.has-thumbnail>.thumbnail{margin-left:0;margin-right:16px}.combined-search-page .search-result-group footer .nav-buttons{margin:0 0 16px}.nextprev,.next-suggestions{color:#738491}.search-page .searchfacets{border:1px solid #edf1f3;border-radius:2px;padding:16px;margin:0;background-color:#fff;border-radius:0 0 2px 2px;max-width:none}.searchfacets .title{margin:0}.searchfacets h4.title{color:#738491;margin:0 0 8px}.searchfacets h4.title:first-letter{text-transform:capitalize}.searchfacets .list{margin:0}.searchfacets .facet.count{color:#98abba;font-weight:400}.searchfacets .facet.count:hover{text-decoration:none}.search-page .morelink{top:384px}.search-page .side{margin-top:264px}.wiki-page .wikititle{background-color:#fff;padding:9px 16px 10px;border-radius:2px;box-shadow:0 1px 5px rgba(0,0,0,0.16);font-size:16px;font-family:arial,sans-serif;text-transform:capitalize;margin:0}.wiki-page .pageactions{background-color:#fff;margin-left:16px;border-radius:2px;padding:0 16px;border:none;box-shadow:0 1px 5px rgba(0,0,0,0.16)}.wiki-page .pageactions .wikiaction{margin:0;background-color:transparent;border-radius:0;padding:10px 16px 11px;color:#98abba}.wiki-page .pageactions .wikiaction-current{padding:10px 16px 9px;border-bottom:2px solid #24a0ed;color:#24a0ed}.wiki-page .pageactions .wikiaction:hover,.wiki-page .pageactions .wikiaction-current:hover{background-color:rgba(0,0,0,0.05)}.wiki-page .wiki-page-content{margin:16px 0;background-color:#fff;padding:8px 0}.wiki-page .wiki-page-content .wiki>.toc>ul{border:none}.wiki-page .wiki-page-content .wiki.md{color:#292f34}.wiki-page .wiki-page-content .wiki.md h2{color:#292f34}.wiki-page .wiki-page-content hr{border-style:solid;border-color:#edf1f3}.wiki-page .wiki-page-content em{color:#98abba}.linefield,.linefield.mobile{background-color:#fff;color:#98abba;margin:0 0 16px;width:528px;padding:8px 0}.linefield .title{color:#24a0ed;text-transform:capitalize;padding:0}.linefield .linefield-content{padding:0}.linefield .title:first-letter,.linefield label:first-letter{text-transform:capitalize}.usertext .bottom-area a{color:#98abba}.usertext .bottom-area a:hover{color:#24a0ed}.pretty-form{padding-top:24px}.fancy-settings h1,.create-promotion h1{color:rgba(255,255,255,.8)}.fancy-settings h1 strong{color:rgba(255,255,255,1)}.tabmenu{border-bottom:1px solid #edf1f3;margin-bottom:12px}.tabmenu li{margin:0!important}.tabmenu li a{background-color:transparent;color:#292f34;border:none;font-size:14px}.tabmenu li.selected a{color:#24a0ed;background-color:transparent;border:none}.tabpane-content{border:none}.tabpane-content .flairrow a.author{color:#98abba}.tabpane-content .tagline a{color:#292f34}.tabpane-content .thing .title{overflow:visible}.fancy-settings .pretty-form{padding-top:0}.stylesheet-customize-container .pretty-form{padding:8px 0;margin-bottom:16px}.stylesheet-customize-container .pretty-form .sheets{margin-right:0}.stylesheet-customize-container h2{display:none}.sheets .btn.right{background-color:transparent;border:none;box-shadow:none;padding:0}#images{padding:8px 0;background-color:#fff;position:relative;overflow:auto;height:inherit}#images #image-upload{margin:0 0 4em}#images:before{position:fixed;width:100%;padding:16px;color:#fff;left:0;bottom:0;background-color:#2E2F31;content:"Hey! There's a FAQ if you just scroll down a little.";font-size:18px;z-index:100}#images:after{content:"";position:absolute;width:100%;height:800px;left:0;bottom:-1200px;z-index:100;background-color:#fff;background-image:url(%%faq%%);background-repeat:no-repeat;background-position:50% 50%}.flair{border:none;border-radius:0;font-size:12px;font-family:arial,sans-serif;font-weight:400;background-color:transparent;color:#98abba;padding-left:0;margin-right:inherit}.link .flair{font-size:12px}.flair:before{margin-right:3px;height:auto;content:"- ";margin-left:4px}.side .flair:before{margin-left:0}.listing-page .comment{background-color:#fff;margin-left:0;padding:12px 0}.listing-page .comment .midcol{width:36px;margin-right:2px;margin-top:4px;overflow:visible}.listing-page .comment .parent{margin-bottom:4px}.listing-page .comment .title{font-size:14px;margin-left:8px}.footer-parent{height:800px;margin-top:192px;padding:528px 0 64px;background-image:url(%%footer%%);background-repeat:no-repeat;background-position:50% 0;background-size:cover}.footer{border:0 solid;border-radius:2px;background-color:rgba(43,51,58,0.64);padding:16px;max-width:640px}.footer .col{padding:0 24px;border:none}.flat-vert.title,.bottommenu a{color:rgba(255,255,255,0.7)}.bottommenu{color:rgba(255,255,255,0.42)}.debuginfo,#hsts_pixel{display:none}.res .link .tagline a.voteWeight{background-color:transparent!important}.res .thing .tagline .author.moderator{background-color:#27b062!important;padding:1px 4px;border-radius:1px}#header-bottom-right #userbarToggle + *{margin-left:0!important}.res .srSep{color:rgba(255,255,255,0.45)}.res #RESShortcutsViewport{margin-right:381px}.res #RESShortcutsEditContainer{margin-right:312px}.res #RESShortcutsEditContainer,#RESShortcutsSort,#RESShortcutsRight,#RESShortcutsLeft,#RESShortcutsAdd,#RESShortcutsTrash{background-color:transparent!important;color:rgba(255,255,255,0.45)!important;top:1px!important}.res #RESShortcuts{color:#E0E0E0}.pinHeader-sub #sr-header-area,.pinHeader-subanduser #sr-header-area{background-image:url(%%headerimg%%);background-position:50% 0}.pinHeader-sub #header-bottom-left,.pinHeader-subanduser #header-bottom-left{margin-top:0}.pinHeader-header:before{display:none!important}.pinHeader-header .content{margin-top:12px!important}.pinHeader-header .side{margin-top:164px}.pinHeader-header.res.comments-page .side{margin-top:290px}.pinHeader-header #header{top:0;background-image:url(%%headerimg%%);height:84px;box-shadow:0 1px 5px rgba(0,0,0,0.24)}.res.search-page #header .tabmenu{display:none!important}.res #header-bottom-right{top:1px;border-radius:0;height:18px;padding:0 8px 0 0}.res #userbarToggle{background-color:transparent;color:rgba(255,255,255,0.45);border-radius:0;border:none;left:-32px}.res a.beta-link{top:4px}.res #header-bottom-right .user .userkarma{display:none}.res #header-bottom-right .user{font-size:0}.res #header-bottom-right .user a{font-size:11px}.res #sr-header-area a.RESShortcutsCurrentSub,.res #RESSubredditGroupDropdown .RESShortcutsCurrentSub a{color:#fff!important;border-bottom:2px solid #fff}#RESAccountSwitcherIcon{position:relative;top:-4px}.res #REScommentNavToggle{max-width:98px;overflow:hidden;max-height:15px;background-color:#FAFAFA;transition:all .35s ease}.res #REScommentNavToggle:hover{max-width:100%}.res .commentarea>.usertext{margin-top:-76px;padding-top:80px!important}.res .content .RESBigEditorPop{background-color:rgba(0,0,0,0);line-height:inherit;font-size:11px;font-family:verdana,arial,sans-serif;box-shadow:none;font-weight:400;color:#4D5763;border:none;padding:0;height:inherit;margin-left:4px;margin-top:5px}html.res-commentBoxes .comment{margin-left:0!important;margin-right:0!important}.res .commentarea .thing{border:none!important;border-radius:2px!important}.res .titlebox .tagline{margin-top:6px}.res .RESshortcutside,.res .RESDashboardToggle{background-image:none!important;border:none;color:#4D5763;text-transform:uppercase;text-decoration:none;border-radius:0;padding:4px 6px 4px 0;margin:2px 6px 2px -4px;text-align:left;width:auto}.res .RESshortcutside:hover,.res .RESDashboardToggle:hover{background-color:transparent;color:#24a0ed}.res #progressIndicator{width:inherit;border-radius:0;border:none;padding:16px;margin:16px 0;color:#b3b3b3;background-color:#fff;height:inherit}.res #progressIndicator h2{color:#4D5763}.res .NERPageMarker{border-radius:0;border:none;background-color:#fff;padding:16px 0;margin:0}.res .sitetable .sitetable{margin-right:0}.res #search #searchexpando{box-shadow:0 2px 6px rgba(0,0,0,0.2);height:auto}.res #search #searchexpando label{padding-top:13px;padding-bottom:13px}.res #searchexpando .searchexpando-submit{display:none}.res h1.hover.redditname{overflow:visible!important}.res .commentarea .panestack-title{margin-top:0;padding-top:12px}.res .comment.collapsed a.expand:after{display:none}.gearIcon{background:url(%%spritesheet%%) -64px 0!important;position:relative;top:2px;transition:all .25s ease}#RESMainGearOverlay{background-color:#516ae8;top:0!important;height:26px!important;border-radius:0!important}.RESDropdownList{border-color:#4258ca;box-shadow:0 1px 5px rgba(0,0,0,0.24);margin-top:4px;margin-right:8px}.RESDropdownList li{background-color:#516ae8;color:#fff;border-color:#4258ca;transition:all .15s ease}.RESDropdownList li:first-letter{text-transform:capitalize}.RESDropdownList a,.RESDropdownList a:visited{color:#fff}.RESDropdownList li:hover,.RESDropdownList li a:hover{color:#fff;background-color:#667df0}#RESSearchMenuItem{border:1px solid #4258ca;border-radius:1px;background-color:#667df0}#RESSearchMenuItem:hover{background-color:#667df0}.toggleButton .toggleOn,.toggleButton .toggleOff{text-transform:lowercase}.moduleToggle:not(.enabled) .toggleOn,.toggleButton:not(.enabled) .toggleOn,.moduleToggle.enabled .toggleOff,.toggleButton.enabled .toggleOff{background-color:transparent;color:rgba(255,255,255,0.6);border:1px solid #4258ca;transition:all .15s ease;border-radius:2px}.moduleToggle.enabled .toggleOn,.toggleButton.enabled .toggleOn,.moduleToggle:not(.enabled) .toggleOff,.toggleButton:not(.enabled) .toggleOff{background-color:#fff;color:#516AE8;font-weight:bolder;border:1px solid #fff;transition:all .15s ease;border-radius:2px}.markdownEditor .edit-btn:not(.btn-macro){border:0 solid!important;border-radius:1px;box-shadow:0 1px 2px rgba(0,0,0,0.12)}body.listing-page>.content,body.other-discussions-page>.content,.comments-page .link,.commentarea>.sitetable>.comment,#images,.combined-search-page>.content,.sponsorshipbox,.commentarea>.usertext,.stylesheet-customize-container .pretty-form,.side .sidecontentbox,.account-activity-box,.side .titlebox,#previoussearch #moresearchinfo,#ad-frame,#ad_main,.wiki-page .wiki-page-content,.linefield,.submit-page .roundfield,.login-form-side{background-color:#fff;padding:16px;border-radius:2px;box-shadow:0 1px 4px 0 rgba(0,0,0,0.14)}#mail.havemail:before{animation-name:toast;animation-duration:8s;animation-iteration-count:1;animation-timing-function:ease;-webkit-animation-name:toast;-webkit-animation-duration:8s;-webkit-animation-iteration-count:1;-webkit-animation-timing-function:ease}#mail.havemail:hover:before{-webkit-animation-play-state:paused;-moz-animation-play-state:paused;-o-animation-play-state:paused;animation-play-state:paused}@-webkit-keyframes toast{0%{transform:translateY(76px);-webkit-transform:translateY(76px);opacity:0}20%{transform:translateY(76px);-webkit-transform:translateY(76px);opacity:0}25%{transform:translateY(-8px);-webkit-transform:translateY(-8px);opacity:1}27%{transform:translateY(00px);-webkit-transform:translateY(00px);opacity:1}92%{transform:translateY(00px);-webkit-transform:translateY(00px);opacity:1}97%{transform:translateY(16px);-webkit-transform:translateY(16px);opacity:1}100%{transform:translateY(76px);-webkit-transform:translateY(76px);opacity:0}}@-o-keyframes toast{0%{transform:translateY(76px);-webkit-transform:translateY(76px);opacity:0}20%{transform:translateY(76px);-webkit-transform:translateY(76px);opacity:0}25%{transform:translateY(-8px);-webkit-transform:translateY(-8px);opacity:1}27%{transform:translateY(00px);-webkit-transform:translateY(00px);opacity:1}92%{transform:translateY(00px);-webkit-transform:translateY(00px);opacity:1}97%{transform:translateY(16px);-webkit-transform:translateY(16px);opacity:1}100%{transform:translateY(76px);-webkit-transform:translateY(76px);opacity:0}}@-moz-keyframes toast{0%{transform:translateY(76px);-webkit-transform:translateY(76px);opacity:0}20%{transform:translateY(76px);-webkit-transform:translateY(76px);opacity:0}25%{transform:translateY(-8px);-webkit-transform:translateY(-8px);opacity:1}27%{transform:translateY(00px);-webkit-transform:translateY(00px);opacity:1}92%{transform:translateY(00px);-webkit-transform:translateY(00px);opacity:1}97%{transform:translateY(16px);-webkit-transform:translateY(16px);opacity:1}100%{transform:translateY(76px);-webkit-transform:translateY(76px);opacity:0}}@keyframes toast{0%{transform:translateY(76px);-webkit-transform:translateY(76px);opacity:0}20%{transform:translateY(76px);-webkit-transform:translateY(76px);opacity:0}25%{transform:translateY(-8px);-webkit-transform:translateY(-8px);opacity:1}27%{transform:translateY(00px);-webkit-transform:translateY(00px);opacity:1}92%{transform:translateY(00px);-webkit-transform:translateY(00px);opacity:1}97%{transform:translateY(16px);-webkit-transform:translateY(16px);opacity:1}100%{transform:translateY(76px);-webkit-transform:translateY(76px);opacity:0}}@-webkit-keyframes upvote{0%{transform:scale(0,0);-webkit-transform:scale(0,0);opacity:1}45%{opacity:1}98%{opacity:0}100%{transform:scale(1.5,1.5);-webkit-transform:scale(1.5,1.5);opacity:0}}@-moz-keyframes upvote{0%{transform:scale(0,0);-webkit-transform:scale(0,0);opacity:1}45%{opacity:1}98%{opacity:0}100%{transform:scale(1.5,1.5);-webkit-transform:scale(1.5,1.5);opacity:0}}@-o-keyframes upvote{0%{transform:scale(0,0);-webkit-transform:scale(0,0);opacity:1}45%{opacity:1}98%{opacity:0}100%{transform:scale(1.5,1.5);-webkit-transform:scale(1.5,1.5);opacity:0}}@keyframes upvote{0%{transform:scale(0,0);-webkit-transform:scale(0,0);opacity:1}45%{opacity:1}98%{opacity:0}100%{transform:scale(1.5,1.5);-webkit-transform:scale(1.5,1.5);opacity:0}}
/* ==============================================================================================================================
/////
End of basic Naut. Add your customizations or any addons below here!
/////
==================================================================================================================================*/
/* --- Reddit Enhancement Suite Fixes --- */
/* Nightmode */
/*Arrows*/
.res-nightmode .arrow{
background-image:url(%%spritesheet-dark%%)!important;
}
.res-nightmode .arrow.up {
background-position: 0px -80px!important;
}
.res-nightmode .arrow.upmod {
background-position: -32px -80px!important;
}
.res-nightmode .arrow.down{
background-position:-64px -80px!important;
}
.res-nightmode .arrow.downmod{
background-position:-0 -100px!important;
}
/*LinkFlair Icons*/
/* Defaults */
.res-nightmode .thumbnail.default{
background:url(%%spritesheet-dark%%) -175px -48px;
}
.res-nightmode .thumbnail.self{
background:url(%%spritesheet-dark%%) -95px -104px;
}
.res-nightmode .stickied .thumbnail{
background:url(%%spritesheet-dark%%) -95px -48px;
}
.res-nightmode .over18.link .thumbnail{
background:url(%%spritesheet-dark%%) -175px -104px!important;
}
.res-nightmode a.thumbnail[href*="reddit.com"]{
background:url(%%spritesheet-dark%%) -175px -160px;
}
.res-nightmode .linkflair-mod .thumbnail.self{
background:url(%%spritesheet-dark%%) -95px -48px!important;
}
/* Custom Nightmode Colors */
/* Background Color */
.res-nightmode body{
background-color:#25282c!important;
}
/* Transparent */
.res-nightmode .side, .res-nightmode .tabmenu li a, .res-nightmode .side .usertext-body .md ol, .res-nightmode .side .usertext-body .md ol ol,
.res-nightmode .side .usertext-body .md ol ol li, .res-nightmode .side .md ul, .res-nightmode #header-bottom-right, .res-nightmode .flair,
.res-nightmode .linkflairlabel, .res-nightmode .side .sidecontentbox .content, .res-nightmode .icon-menu a, .res-nightmode #userbarToggle,
.res-nightmode #progressIndicator, .res-nightmode body .content {
background-color: transparent!important;
}
/* Black (Various Transparencies) */
.res-nightmode #header .tabmenu:before{
background-color:rgba(0,0,0,0.24)!important;
}
.res-nightmode #sr-header-area{
background-color:rgba(0,0,0,0.08)!important;
}
.res-nightmode body.listing-page > .content, .res-nightmode body.other-discussions-page > .content, .res-nightmode .comments-page .link,
.res-nightmode .commentarea > .sitetable > .comment, .res-nightmode #images, .res-nightmode .combined-search-page > .content, .res-nightmode .sponsorshipbox,
.res-nightmode .commentarea > .usertext, .res-nightmode .stylesheet-customize-container .pretty-form, .res-nightmode .side .sidecontentbox,
.res-nightmode .account-activity-box, .res-nightmode .side .titlebox, .res-nightmode #previoussearch #moresearchinfo, .res-nightmode #ad-frame,
.res-nightmode #ad_main, .res-nightmode .wiki-page .wiki-page-content, .res-nightmode .linefield, .res-nightmode .submit-page .roundfield, .res-nightmode .login-form-side,
.res-nightmode .comments-page .side .linkinfo {
background-color: rgba(0,0,0,1)!important;
box-shadow: 0 1px 4px 0 rgba(0,0,0,0.4)!important;
}
/* Dark Gray */
.res-nightmode .flairselector, .res-nightmode .hover-bubble, .res-nightmode .combined-search-page .searchfacets, .res-nightmode .linkinfo .shortlink input {
background-color: #212223!important;
}
/* Medium Gray */
.res-nightmode .side .md .-blocks, .res-nightmode .side .md .-lists, .res-nightmode .side .md pre, .res-nightmode .side .md blockquote, .res-nightmode .side .md table,
.res-nightmode .side .md p, .res-nightmode .side .md ul, .res-nightmode .side .md ol, .res-nightmode .hover-bubble.multi-selector strong, .res-nightmode .content .thing .title:visited,
.res-nightmode .content .thing.visited .title, .res-nightmode .titlebox, .res-nightmode .md, .res-nightmode .titlebox:before, .res-nightmode dd{
color: #929292 !important;
}
.res-nightmode .flairoptionpane ul li .linkflair:hover, .res-nightmode .flairselector li:hover {
background-color: #929292 !important;
}
/* Off White (uses Original Naut Blackground Colour - #eaeaea) */
.res-nightmode .link .entry .tagline a, .res-nightmode .hover-bubble, .res-nightmode body .content textarea:focus, .res-nightmode .md strong, .res-nightmode .search-result-body,
.res-nightmode .linkflairlabel, .res-nightmode .search-page #search input, .res-nightmode #previoussearch p, .res-nightmode dt, .res-nightmode .search-page #previoussearch label,
.res-nightmode #search #searchexpando label, .res-nightmode .pretty-form, .res-nightmode .comments-page .side .linkinfo .score, .res-nightmode .titlebox:before,
.res-nightmode .submit-page .roundfield .title, .res-nightmode .RESDropdownList li, .res-nightmode .RESDropdownList li a {
color: #eaeaea!important;
}
/* Pure White (aka #ffffff) */
.res-nightmode .hover-bubble {
border: 1px solid #fff !important;
}
.res-nightmode .submit-page #newlink.submit.content .tabmenu.formtab .selected a, .res-nightmode .submit_text.enabled.roundfield .md, .res-nightmode .sidebox.create .morelink a,
.res-nightmode body .content input[type="text"]:hover, .res-nightmode .submit-page #url-field button, .res-nightmode .side *, .res-nightmode .submit-page #url-field button,
.res-nightmode .submit-page #newlink.submit.content .btn {
color: #fff!important;
}
/* submit page button */
.res-nightmode .submit-page #url-field button, .res-nightmode .submit-page #newlink.submit.content .btn, .res-nightmode .sidebox.create .morelink {
background-color: #ef9c49!important;
}
.res-nightmode .submit-page #url-field button:hover, .res-nightmode .submit-page #newlink.submit.content .btn:hover, .res-nightmode .sidebox.create .morelink {
background-color: #f0a55b!important;
}
/* Text Forms & Boxes */
.res-nightmode body .content .text, .res-nightmode body .content textarea, .res-nightmode body .content input[type="text"], .res-nightmode body .content input[type="password"],
.res-nightmode body .content input[type="url"] {
background-color: #000!important;
border: 1px solid #c3cfd6!important;
color: #eaeaea!important;
}
.res-nightmode .side .spacer input {
background-color: #000!important;
color: #eaeaea!important;
}
.res-nightmode #search input[type="text"] {
padding: 0 55px 0 16px;
border-radius: 2px; width: 100%;
height: 40px;
line-height: 30px;
background-color: rgba(0,0,0,0.7);
}
.res-nightmode #search #searchexpando {
height: 40px;
line-height: 30px;
border: 0px 1px 1px 1px solid #000;
}
.res-nightmode #search #searchexpando label {
padding: 10px 8px 10px 8px;
}
.res-nightmode #previoussearch #moresearchinfo, .res-nightmode .search-page #previoussearch label, .res-nightmode #search #searchexpando label, .res-nightmode #search #searchexpando {
background-color: #212223!important;
}
/* Moderator & Various Fixes */
.res .thing .tagline .author {
border-radius:2px!important;
}
.res-nightmode .titlebox form.toggle, .res-nightmode .leavemoderator {
color: gray!important;
background: none!important;
}
.res-nightmode .footer-parent {
background-image:url(%%footer-dark%%);
}
.res-nightmode body.mod-toolbox .tb-general-button, .res-nightmode body.mod-toolbox li a.tb-general-button, .res-nightmode body.mod-toolbox .tb-bracket-button {
background-color: transparent;
color: gray;
font-size: 9px !important;
border-width: 1px 1px 1px 2px;
border-color: #gray;
padding: 1px 4px !important;
border-radius: 0px 2px 2px 0px;
}
.res-nightmode .RESUserTagImage {
background-image: url(%%spritesheet-dark%%);
background-position: -32px -101px;
}
.res #userbarToggle {
color: rgba(255,255,255,0.45)!important;
}
.res-nightmode .submit-page button {
border: 0px none #000!important
}
.res-nightmode div.RES-keyNav-activeElement, div.commentarea div.RES-keyNav-activeElement.entry div.noncollapsed {
background-color: transparent!important;
}
.res-nightmode .content .thing .title:visited, .content .thing.visited .title {
color: #738491!important;
}
.res-nightmode .thing.link.stickied a.title, .thing.link.stickied a, .thing.link.stickied .entry li .comments {
color: #27b062!important;
}
.res-nightmode .res .NERPageMarker {
background-color: transparent;
}
.res-nightmode .md a strong, .res-nightmode .md a {
color: #24a0ed!important;
}
.res-nightmode .flairselector h2 {
background-color: transparent!important;
}
/* Buttons */
.res-nightmode .morelink, .side .titlebox .md h3 a, .drop-choices a.choice:hover, .submit-page #newlink.submit.content ul.tabmenu.formtab,
.submit_text.enabled.roundfield, body .btn, body button, .content .infobar {background-color: #ef9c49;}
.res-nightmode .morelink:hover, .side .titlebox .md h3 a:hover, .btn:hover, body button:hover {background-color: #f0a55b;}
.res-nightmode .morelink:active , .side .titlebox .md h3 a:active , .btn:active , body button:active {background-color: #ef9c49;}
/* --- Reddit Enhancement Suite Fixes --- */
/* --- Addon: Content Overlap Header --- */
#header {
background-image: none;
box-shadow: none;
background-color: transparent;
}
#header .tabmenu:before{
display: none;
}
body {
background: #eee url(%%headerimg%%) no-repeat 50% 0%;
}
#header .tabmenu li a, #header .tabmenu li.selected a {
text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}
/* --- End Addon --- */
/* --- Smaller Footer and some other fixes --- */
.footer-parent {
height: auto;
margin-top: 192px;
padding: 64px 0;
background-image: fixed; /* REMOVE THIS IF YOU STILL WANT THE IMAGE! */
background-size: 0px; /* REMOVE THIS IF YOU STILL WANT THE IMAGE */
}
.flat-vert.title, .bottommenu a {
color: rgb(115, 132, 145);
}
.res-nightmode .flat-vert.title, .bottommenu a {
color: rgba(255,255,255,0.7);
}
.footer {
background-color: transparent;
}
/* --- End Addon --- */
/* --- Fixing the search page --- */
.search-page .searchfacets {
margin-top: 80px;
margin-bottom: -60px;
border-radius: 2px!important;
box-shadow: 0 1px 4px 0 rgba(0,0,0,0.14);
}
body:not(.submit-page).search-page #header .pagename a {
margin-top: 280px;
}
.search-page #header {
height: 230px;
}
.search-page #search input[type=text] {
margin-top:109px;
margin-left: 30px;
width: 790px;
}
.search-page #search input[type=submit] {
margin-top:109px;
}
.search-page .menuarea {
padding: 16px;
margin-top:77px;
background-color: #fff;
margin-left: -1px;
margin-right: 1px;
border-radius: 2px;
box-shadow: 0 1px 4px 0 rgba(0,0,0,0.14);
}
.searchpane-toggle-hide {
display: none;
}
.raisedbox {
border: none!important;
}
.search-page #previoussearch p a#search_showmore {
top: 118px;
left: 825px;
}
.search-page #previoussearch label {
width: 247%;
margin-left:30px;
}
body:not(.submit-page).search-page #header-img {
margin-top: 195px;
}
.search-page .link {
background-color: #fff;
padding: 16px;
border-radius: 2px;
box-shadow: 0 1px 4px 0 rgba(0,0,0,0.14);
}
body:not(.submit-page).search-page #header-bottom-left {
height:10px;
}
.combined-search-page .search-result-group {
background-color: #fff;
padding: 16px;
}
.combined-search-page>.content {
margin-top: 102px;
}
.combined-search-page #search input[type=text] {
margin-top: 21px !important;
}
.combined-search-page .search-submit-button {
margin-top: 20px !important;
}
.combined-search-page #previoussearch p a#search_showmore {
margin-top: -85px !important;
margin-left: -30px !important;
}
.combined-search-page #previoussearch label {
width: 234.5% !important;
}
/* --- End Addon --- */
/* --- Fix the link info box --- */
.comments-page .side .linkinfo {
position: inherit;
margin-bottom: 80px;
margin-top: -140px;
}
/* --- End Addon --- */
/* --- SIDEBAR (remove sidebar image) --- */
.side:before { display: none }
.side .titlebox h1.redditname { top: calc(308px - 20px) }
.titlebox .fancy-toggle-button { top: calc(314px - 20px) }
.titlebox span.subscribers { top: calc(336px - 20px) }
#search { top: calc(384px - 20px) }
.morelink { top: calc(442px - 20px) }
.side { margin-top: calc(282px - 20px) }
.comments-page .side .linkinfo { top: calc(494px - 20px) }
.comments-page .side { margin-top: calc(400px - 20px) }
.res.comments-page .side{margin-top:340px}
.search-page .side .titlebox h1.redditname { top: calc(264px - 12px) }
.search-page .titlebox .fancy-toggle-button { top: calc(270px - 12px) }
.search-page .titlebox span.subscribers { top: calc(294px - 12px) }
.search-page .morelink { top: calc(344px - 12px) }
.search-page .side { margin-top: calc(228px - 12px) }
.side .titlebox h1.redditname:before {
border-radius: 2px;
}
div.titlebox {
margin: -60px 0 16px;
}
/* --- End Addon --- */
/* --- HIDE SUBMIT TEXT BUTTON --- */
.morelink:before {
display: none;
}
.morelink {
width: 320px;
}
.morelink:after, .sidebox.submit.submit-text .morelink {
display:none
}
.sidebox.submit.submit-link .morelink a:after {
content: "Submit";
}
/* --- End Addon --- */
/* --- Fix rules page --- */
.subreddit-rules-page {
background: #fff;
border-radius: 2px;
box-shadow: 0 1px 4px 0 rgba(0,0,0,0.14);
}
/* --- End Addon --- */
/* --- Fix the promoted link --- */
.link.promotedlink.promoted .thumbnail img {
transform: translateY(0%);
}
.link.promotedlink.promoted {
padding: 16px 0px !important;
border-bottom: 1px solid #D9D9D9;
border-top: 0px none;
border-right: 0px none;
border-left: 0px none;
}
/* --- End Addon --- */
/* --- Fix infobar welcome message --- */
.content .infobar.welcome {
margin-right: 35px;
}
/* --- End Addon --- */
/* --- REMOVE THE FAQ --- */
#images:before {
padding: 0px;
content: "";
}
#images:after {
width: 0%;
height: 0px;
}
/* --- End Addon --- */
/* --- Add back content dividers --- */
.link {
border-bottom: 1px solid #d9d9d9;
}
.res .NERPageMarker {
border-bottom: 1px solid #d9d9d9;
}
.link.last-clicked {
background-color:rgba(0,0,0,0)!important;
border-bottom: 1px solid #d9d9d9!important;
}
/* --- End Addon --- */
/* --- Addon: Replacing dots (•) with a space --- */
.comment .score:before
{
content: " ";
line-height: 14px;
margin: 0 2px;
vertical-align: middle;
}
/* --- End Addon --- *
/* --- Civcraft wordmark logo header --- */
#header {
height: 260px;
background-color: transparent!important
}
/* -- End Addon -- */
/* --- Addon: Content Header Announcement Message --- */
body.listing-page>.content {
margin-top: 40px;
}
body.listing-page > .content:before {
content: "We highly encourage new users to look at wiki.civcraft.co";
font-size:medium;
position: absolute;
right: 352px;
left: 16px;
z-index: 10;
height: auto;
top: 272px;
padding: 11px 11px 11px 16px;
border-radius: 2px;
background-color: #FFF;
color: #4D5763;
font-weight: normal;
border-bottom: 1px solid #d9d9d9;
border-radius: 2px 2px 0 0;
margin: 0;
line-height: 1;
}
.res-nightmode body.listing-page > .content:before {
background-color: rgb(0,0,0);
color: #FFF;
}
/* --- End Addon --- */
/* --- Addon: Text Strings --- */
.arrow.down:after {
content: "Show mercy god";
}
div.titlebox span.number:after {
content: " drama lovers";
}
.titlebox .users-online .number:after {
content: " civcraftians online";
}
div.roundfield.info-notice::after {
white-space:pre-wrap;
content: " In order for your post to not be removed and follow our rules it must: be reasonably related to Civcraft, contain no links to civchan, not be spam, contain no harrassment (this is bannable), and not be posted by a throwaway account or subreddit alt. You can mark your post [Serious] with a flair if you want the thread to stay on topic.";
font-size: 13pt;
}
.content.submit .info-notice {
background-color: #FFFFFF;
font-size: 13pt;
}
.content.submit .info-notice::first-letter {
text-transform: capitalize;
}
/* --- End Addon --- */
/* --- Fix Login Form in sidebar --- */
.login-form-side {
position: relative;
top: -60px;
}
/* --- End Addon --- */
/* --- Improve the flair box --- */
.flairselector {
width: inherit!important;
left: 50%!important;
margin-left: 0px!important;
margin-right:-50%;
transform: translate(-50%, 0%);
}
.flairoptionpane {
max-height: 1000px!important;
}
/* --- End Addon --- */
/* --- Addon: Colorize the Subreddit Info Box --- */
.side .titlebox h1.redditname:before {
background-color: #1B5E20;
}
.side .titlebox h1.redditname a, .titlebox span.subscribers {
color: #fff;
}
.titlebox .fancy-toggle-button .active.add {
background-color: #ef9c49;
color: #fff;
}
.titlebox .fancy-toggle-button .active.add:hover {
background-color: #f7aa5c;
color: #fff;
}
/* --- End Addon --- */
/* --- Addon: Change Subreddit's colors --- */
/* Buttons */
.morelink, .side .titlebox .md h3 a, .drop-choices a.choice:hover, .submit-page #newlink.submit.content ul.tabmenu.formtab,
.submit_text.enabled.roundfield, body .btn, body button, .content .infobar {background-color: #ef9c49;}
.morelink:hover, .side .titlebox .md h3 a:hover, .btn:hover, body button:hover {background-color: #f0a55b;}
.morelink:active , .side .titlebox .md h3 a:active , .btn:active , body button:active {background-color: #ef9c49;}
.c-btn-primary {
background-color: #ef9c49;
border-bottom: 2px solid transparent;
}
.c-btn-primary:hover {
background-color: #f0a55b;
border-bottom: 2px solid transparent;
}
.c-btn {
border-radius: 2px;
}
.res-nightmode .sidebox.create .morelink {
background-color: #070809!important;
}
/* Links */
.thing .title.loggedin.click, .thing .title.click, .thing .title.loggedin, .thing .title, .link .entry .buttons li a.comments,
.link .entry .buttons li a.flairselectbtn, .link .entry .buttons li a:hover, .titlebox .tagline a.flairselectbtn, .md a,
.side .titlebox .md h4 a, .wiki-page .wiki-page-content .md.wiki h4, .sidebox.create .morelink a, a, .side:after, .usertext .bottom-area a.reddiquette,
.wiki-page .pageactions .wikiaction-current, .tagline .submitter, .combined-search-page .search-result .search-result-header .search-title,
.combined-search-page .search-result a, .combined-search-page .search-result a>mark, .combined-search-page .search-result .search-comments,
.flairselector h2, .linefield .title, body .content .sitetable .link .title a:hover, .link .entry .tagline a:hover, .comment .author:hover {color: #24a0ed;}
/* --- End Addon --- */
/* --- Move Snoo down and move the tabs closer to the body --- */
#header .tabmenu {
margin: -40px 61px 0;
}
body:not(.submit-page) #header-img {
margin-top: 120px;
margin-left: 5px;
}
/* --- End Addon --- */
/* --- Credit for the headerimg --- */
.side:after{
content:"This subreddit uses the /r/Naut theme, and header image courtesy of /u/DiRtY_ZeBrA";
}
/* --- End Addon --- */
/* --- Get rid of switch to mobile app banner --- */
.mobile-web-redirect-bar, .mobile-web-redirect { display: none; }
/* --- End Addon --- */
/* --- Addon: Subreddit Name to Image --- */
/* Addon: Custom Header Logo */
body:not(.submit-page) #header .pagename a {padding:0;position:absolute;text-indent:-9999px;margin:0;top:-278px;background:url(%%wordmark-logo%%);background-position:0 0;background-repeat:no-repeat;}
body:not(.submit-page) #header .pagename a:hover {background-color:transparent;}
/* CENTER */
body:not(.submit-page) #header-bottom-left {width:calc(100% - 32px)}
body:not(.submit-page) #header .pagename {width:100%;display:block;position:absolute;top:-278px;z-index: -1;}
body:not(.submit-page) .submit-page #header .pagename {top: -36px;}
body:not(.submit-page) #header .pagename a {position:relative;display:block;top:0;margin-left: auto;margin-right: auto;}
/* END CENTER */
body:not(.submit-page) .submit-page .content {
margin-top: 342px; /* How far the submit box is from the top. Is best if same as body>.content */
}
body:not(.submit-page) #header .pagename a {
margin-top: 225px; /* Space from top */
left: 0; /* Space from left */
width: 407px; /* Width of image */
height: 140px; /* Half the height of your image */
}
/* End Addon */
/* --- Make sponsorship box --- */
.sponsorshipbox {
background-color: #fff;
padding: 16px;
border-radius: 2px;
box-shadow: 0 1px 4px 0 rgba(0,0,0,0.14);
max-width: 320px;
padding: 0!important;
position: relative;
bottom: 60px;
}
/* --- End Addon --- */
/* -- Civcraft CSS from ye olden days (probably like between 1.0 and 2.0 or something idk) -- */
/* This supplies a cone of shame to people who are too stupid to use mod mail - Bob */
/* Cone of shame gag only works on the test post, to temporarily disable it */
a[href*="Banned"].title:before {
background-image:url(%%CONE-OF-SHAME%%);
height:16px;
width:16px;
position:relative;
content:"";
display:inline-block;
margin-right:5px;
margin-top:2px;
}
a[href*="Banned"].title:after {
color:orange;
font-size: large !important;
content: " CONE OF SHAME: USE MODMAIL NEXT TIME";
}
a[href*="operator"].title:before {
background-image:url(%%CONE-OF-SHAME%%);
height:16px;
width:16px;
position:relative;
content:"";
display:inline-block;
margin-right:5px;
margin-top:2px;
}
a[href*="operator"].title:after {
color:orange;
font-size: large !important;
content: " CONE OF SHAME: USE MODMAIL NEXT TIME";
}
a[href*="banned"].title:before {
background-image:url(%%CONE-OF-SHAME%%);
height:16px;
width:16px;
position:relative;
content:"";
display:inline-block;
margin-right:5px;
margin-top:2px;
}
a[href*="banned"].title:after {
color:orange;
font-size: large !important;
content: " CONE OF SHAME: USE MODMAIL NEXT TIME";
}
/* Removes the cone of shame if the post is praising us (currently works by seeing if ttk2 posted it - Bob */
a.author[href$="ttk2"].title:after {
display:none;
}
a.author[href$="ttk2"].title:before {
display:none;
}
/* spoiler tags */
a[href="/s"] {
color: #B6B6B6;
text-shadow: none;
cursor: text;
-moz-border-radius: 3px;
border-radius: 3px;
padding: 0 2px
}
a[href="/s"]:hover {
color: #292f34;
text-shadow: none;
transition: 0.7s all;
}
a[href="/s"]::after {
content: attr(title);
padding: 0px 0px;
background-color: transparent;
color: transparent;
text-shadow: 0 0 15px #C7C7C7, 0 0 15px #A5A5A5, 0 0 15px #C9C9C9; /*More copies of 0 0 15px #FF0000" you add the fuzzier it gets.*/
margin: 0 2px;
transition: .6s all; /*Transition length back*/
cursor: default;
}
a[href="/s"]:hover::after, a[href="/s"]:active::after {
color: #292f34;
text-shadow: none;
transition: 0.7s all;
}
.res-nightmode a[href="/s"]:hover::after, a[href="/s"]:active::after {
color: #929292!important;
text-shadow: none;
transition: 0.7s all;
}
.res-nightmode a[href="/s"]:hover {
color: #929292!important;
text-shadow: none;
transition: 0.7s all;
}
/* Civcraft Dev Flair CSS - Bob */
.flair-CivcraftDev, .flair-default, .flair-CONEOFSHAME, .flair-MODERATOR-or-ADMIN, .flair-PEARL, .flair-TEST {
width: 20px;
height: 16px;
display: inline-block;
background-repeat: no-repeat;
background-image: url(%%customflair%%);
background-position: -20px -0px;
vertical-align: middle;
margin-right: 3px;
text-indent: 17px;
}
.flair-CivcraftDev{
width: 20px;
height: 16px;
display: inline-block;
background-repeat: no-repeat;
background-image: url(%%customflair%%);
background-position: -20px -0px;
vertical-align: middle;
margin-right: 3px;
background-position: 0 -66px;
width: auto;
text-indent: 17px;
height: 14px;
}
.flair-CONEOFSHAME{
width: 20px;
height: 16px;
display: inline-block;
background-repeat: no-repeat;
background-image: url(%%customflair%%);
background-position: -20px -0px;
vertical-align: middle;
margin-right: 3px;
background-position: 0 0;
width: auto;
text-indent: 17px;
height: 16px;
}
.flair-MODERATOR-or-ADMIN{
width: 20px;
height: 16px;
display: inline-block;
background-repeat: no-repeat;
background-image: url(%%customflair%%);
background-position: -20px -0px;
vertical-align: middle; margin-right: 3px;
background-position: 0 -129px;
width: auto;
text-indent: 17px;
height: 16px;
}
.flair-PEARL{
width: 20px;
height: 16px;
display: inline-block;
background-repeat: no-repeat;
background-image: url(%%iconsprite%%);
background-position: -0px -0px;
vertical-align: middle;
margin-right: 3px;
width: auto;
text-indent: 17px;
height: 16px;
}
.flair-NICE-PEARL{width: 16px; height: 16px; display: inline-block; background-repeat: no-repeat; background-image: url(%%pearl%%); background-position: -0px -0px; vertical-align: middle; margin-right: 3px; width: auto; text-indent: 17px;}
.flair-TEST {
width: 20px;
height: 16px;
display: inline-block;
background-repeat: no-repeat;
background-image: url(%%customflair%%);
vertical-align: middle;
margin-right: 3px;
background-position: 0 -326px;
width: auto;
text-indent: 17px;
height: 16px;
}
/* Pearl tags base all courtesy of your friendly neighbourhood Tactful. */
a[href*="pearl"].title:before {
background-image:url(%%pearl%%);
height:16px;
width:16px;
position:relative;
content:"";
display:inline-block;
margin-right:5px;
margin-top:2px;
}
a[href*="pearled"].title:before {
background-image:url(%%pearl%%);
height:16px;
width:16px;
position:relative;
content:"";
display:inline-block;
margin-right:5px;
margin-top:2px;
}
/* Wrap moderator text - Bob got help from /r/csshelp's gavin19 */
.sidecontentbox .flair {
height: auto;
min-height: 15px;
}
/* OCD STUFF */
div.leavemoderator:first-letter {
text-transform: capitalize
}
.submit-page .roundfield .title {
text-transform: none;
}
/* Autowikibot hover to display by /u/Dropping_fruits */
/* Code updates and discussion: http://redd.it/1vr0r2 */
.comment .md h5+h6+h4+p,.comment .md h5+h6+h4+p+hr,.comment .md h5+h6+h4+p+hr+blockquote,.comment .md h5+h6+h4+p+hr+blockquote+hr,.comment .md h5+h6+h4+p+hr+blockquote+hr+p,.comment .md h5+h6+h4+p+hr+blockquote+hr+p+p {
display: none;
}
.comment .md:hover h5+h6+h4+p,.comment .md:hover h5+h6+h4+p+hr,.comment .md:hover h5+h6+h4+p+hr+blockquote,.comment .md:hover h5+h6+h4+p+hr+blockquote+hr,.comment .md:hover h5+h6+h4+p+hr+blockquote+hr+p,
.comment .md:hover h5+h6+h4+p+hr+blockquote+hr+p+p {
display: block;
}
.comment .md h5+h6+h4:after {
content: "Autowikibot post. Hover to view";
}
.comment .md:hover h5+h6+h4:after {
content: "";
}
/* [TAGS] code here, courtesy of the greatest moderator ever. Not Exultant, the other one. AKA Tactful. */
a[href*="civtest"].title:link {
color: orange;
}
a[href*="civtest"].title:visited {
color: darkorange !important;
}
a[href*="civtest"].title:before {
content: "";
}
/* Greentext like on chans - Bob */
a[href$="#greentext"], a[href$="#g"] {
border: 0;
margin: 0;
color: #789922;
display: block;
}
/* Sticky Posts - Bob */
/* No Score on sticky posts shown - Bob */
.stickied .score {
display: none !important;
}
.stickied .score.likes {
display: none !important;
}
.stickied .score.dislikes {
display: none !important;
}