-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcarbooone.css
3041 lines (2499 loc) · 75 KB
/
carbooone.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
/*
DarkMonoAlt - Modifié par HBO pour HDF
Puis modifié par EVOTk pour HDF ^^
-----------------------------------------------------
Original DarkMono v2 by htrd ([email protected])
Modified by beats for Redacted
Original terms of use / license information:
Everything is copyright 2012 htrd.
Distributed under the Creative Commons BY-NC-ND 3.0 License:
* You may copy, distribute and transmit this stylesheet and it's associated elements, unaltered and in their entirety, so long as you
give proper credit for the creation and design of these elements to htrd and include this written notice of such credit.
* You may not use any aspect of this stylesheet or it's design elements for any commercial or public purposes.
* You may not alter, transform, or build upon this stylesheet for public use.
* By using this stylesheet and it's associated elements, you agree to these Terms of Use and also that these Terms of Use may change at any time, with or without notice.
Made exclusively for use on What.CD in 2012.
*/
@import url("https://fonts.googleapis.com/css?family=Roboto:400,700");
* {
margin: 0;
padding: 0;
}
body {
margin: 0;
padding: 0;
background: #222;
color: #9A9A9A;
text-shadow: 0.1em 0.1em rgba(0, 0, 0, 0.3);
font: 13px 'Roboto', 'Trebuchet MS', "Arial", sans-serif;
}
p, #userinfo_stats li:last-child {
margin: 0;
}
p.min_padding, .friends_table td.left input[type="submit"]:first-child {
margin-top: 3px;
}
table {
border-spacing: 0;
border-collapse: collapse;
}
ol, ul {
list-style-position: inside;
}
li {
line-height: 1.5em;
}
/* USER CLASSES*/
.class_2{
color: #444;
}
.class_3{
color: #96ca2d;
}
.class_5{
color: #93c47d;
}
.class_28{
color: #0000ff;
}
.class_11{
color: #1e84cc;
}
.class_15{
color: #ff0000;
}
.class_1{
color: #980000;
}
.class_23{
color: #D400FF;
}
.class_22{
color: #38761d;
}
.class_20{
color: #11ED95;
}
.class_29{
color: #853894;
}
.class_30{
color: #FF321D;
}
.class_33{
color: #DAA520;
}
.class_32{
color: #F0E68C;
}
a, .linkbox a:hover {
color: #528ba3;
text-decoration: none;
}
a:hover, #content a:visited {
color: #456478;
}
a img, #collage .search_form td, #requests .search_form td, #reportsv2 #reportform.create_form .layout td, #requests .box.box_votes td, #upload #whmf_offer, .filter_torrents .cat_list, .search_form .layout td {
border: none !important;
}
.add_bookmark a, .big_info .add_bookmark.brackets, .bookmark a.add_bookmark {
display: block;
padding: 5px 0px;
width: 10px;
height: 30px;
background: url('https://dev.questionable.host/css/red/darkmonoalt/st.png') -145px -10px;
font-size: 0px;
cursor: pointer;
position: relative;
}
.remove_bookmark a, .big_info .remove_bookmark.brackets, .bookmark a.remove_bookmark {
display: block;
padding: 5px 0px;
width: 10px;
height: 30px;
background: url('https://dev.questionable.host/css/red/darkmonoalt/st.png') -89px -100px;
font-size: 0px;
cursor: pointer;
position: relative;
}
/*
a.upvote, a.small_upvote {
display: inline-block;
overflow: hidden;
width: 16px;
height: 14px;
background: url('https://redacted.ch/static/styles/postmod/images/notifications.png') no-repeat top left;
background-position: 0px -62px;
text-indent: 100%;
white-space: nowrap;
cursor: pointer;
}
a.upvote:hover, a.small_upvote:hover {
display: inline-block;
overflow: hidden;
width: 16px;
height: 14px;
background: url('https://redacted.ch/static/styles/postmod/images/notifications.png') no-repeat top left;
background-position: -16px -62px;
}
a.downvote, a.small_downvote {
display: inline-block;
overflow: hidden;
width: 16px;
height: 14px;
background: url('https://redacted.ch/static/styles/postmod/images/notifications.png') no-repeat top left;
background-position: 0px -76px;
text-indent: 100%;
white-space: nowrap;
cursor: pointer;
}
a.downvote:hover, a.small_downvote:hover {
display: inline-block;
overflow: hidden;
width: 16px;
height: 14px;
background: url('https://redacted.ch/static/styles/postmod/images/notifications.png') no-repeat top left;
background-position: -16px -76px;
}
a.small_clearvote {
display: inline-block;
overflow: hidden;
width: 16px;
height: 14px;
background: url('https://redacted.ch/static/styles/postmod/images/notifications.png') no-repeat top left;
background-position: 0px -91px;
text-indent: 100%;
white-space: nowrap;
cursor: pointer;
}
*/
a.new-subscriptions {
padding: 6px 5px 5px !important;
margin-right: 5px;
background-color: rgba(42, 68, 93, 0.1);
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(42, 68, 93, 0.1)), to(rgba(76, 123, 167, 0.5)));
background-image: -webkit-linear-gradient(top, rgba(42, 68, 93, 0.1), rgba(76, 123, 167, 0.5));
background-image: -moz-linear-gradient(top, rgba(42, 68, 93, 0.1), rgba(76, 123, 167, 0.5));
background-image: -o-linear-gradient(top, rgba(42, 68, 93, 0.1), rgba(76, 123, 167, 0.5));
background-image: linear-gradient(to bottom, rgba(42, 68, 93, 0.1), rgba(76, 123, 167, 0.5));
color: #888;
}
a.new-subscriptions:hover {
color: #7a7a7a !important;
}
a.hide_torrents_link {
display: block;
width: 23px;
height: 25px;
background: url("https://raw.githubusercontent.com/WhatCD/Gazelle/master/static/styles/mono/icons/show-hide.png") no-repeat;
background-position: 0px -25px;
}
a.show_torrents_link {
display: block;
width: 23px;
height: 25px;
background: url("https://raw.githubusercontent.com/WhatCD/Gazelle/master/static/styles/mono/icons/show-hide.png") no-repeat;
}
h1, h2, h3 {
color: #666 !important;
text-shadow: 0.1em 0.1em rgba(0, 0, 0, 0.2);
font-weight: bold;
}
h2 {
text-shadow: 0.1em 0.1em rgba(0, 0, 0, 0.2);
font-size: 24px;
line-height: 1.2em;
margin-bottom: 1em;
}
h3 {
text-shadow: 0.1em 0.1em rgba(0, 0, 0, 0.2);
font-size: 14px;
line-height: 1.2em;
margin-bottom: 1.1em;
}
h4, h5, .thin > h2 + .linkbox + div table td:first-child, .filter_torrents table:nth-child(1) td:first-child, .add_torrent_container .add_form span[style="font-style: italic;"] {
font-size: 12px;
}
h3#irc + .box.pad ul li:last-child, h3#general + .box.pad ul li:last-child {
margin-bottom: 0;
padding-bottom: 0;
border-bottom: none;
}
#alerts {
position: absolute;
top: 90px;
text-align: right;
}
#artist .merge_form div[style="text-align: center;"] {
text-align: left !important;
}
#artist .merge_form div[style="text-align: center;"] label:first-child {
margin-left: 50px;
}
#artist .merge_form div[style="text-align: center;"] label {
margin-left: 29px;
}
#artist .merge_form div[style="text-align: center;"] strong {
margin-left: 72px;
}
#artist .merge_form div[style="text-align: center;"] input[type="submit"] {
margin-left: 444px;
}
#artist .add_form input[value="Add alias"] {
margin-top: 10px;
margin-left: 463px;
}
#artist .merge_form input#newartistid, #artist .merge_form input#newartistname {
width: 87%;
}
#artistcomplete, #torrentscomplete {
position: absolute !important;
z-index: 2;
display: block !important;
overflow: hidden;
width: 152px !important;
background: rgba(20, 20, 20, 0.8);
text-align: left;
}
#artistcomplete > li {
display: block;
padding: 5px 5px !important;
width: 100% !important;
cursor: pointer;
}
#artistcomplete li.highlight {
margin-right: 0;
background-color: rgba(100, 100, 100, 0.55);
}
#artistfields input#artist, #title_tr input#title, #label_tr input#record_label, #catalogue_tr input#catalogue_number, #upload_table.create_form input#image, #edition_title input#remaster_title, #edition_record_label input#remaster_record_label, #edition_catalogue_number input#remaster_catalogue_number, .yadg_tr input#yadg_input, #upload_table.create_form input#title {
width: 350px;
}
#artist_list .remove.remove_artist, #info.head a:last-child, #concerts.head a:last-child, .box.box_info.pad ul ul li a:nth-child(2), .box.box_info.pad ul ul li a:nth-child(3), a#flip_to, #torrents .submit input[value="Filter Torrents"], .group_torrent td span, .votespan {
float: right;
}
#artist_name.ftr_advanced td, #search_terms.ftr_basic td {
padding-top: 0;
}
#better .search_form input[size="60"] {
width: 500px;
}
#better .search_form tr:hover, #wrapper div::-webkit-scrollbar-corner {
background-color: transparent;
}
#better .torrent_table .torrent_info, #better .torrent_table .tags {
margin-left: 30px;
}
#bookmarks .torrent_table .colhead_dark td:first-child {
width: 5%;
}
#bookmarks .search_form .layout.border, #bookmarks .search_form .layout.cat_list {
margin: 0;
-webkit-box-shadow: none;
box-shadow: none;
}
#collage table#discog_table tr.group_torrent td:first-child, #bookmarks table#torrent_table tr.group_torrent td:first-child, #torrents table#torrent_table tr.group_torrent td:first-child, #top10 tr.group_torrent td:first-child {
padding-left: 76px;
}
#collage_table {
margin-bottom: 20px;
border: none;
background: none;
-webkit-box-shadow: none;
box-shadow: none;
}
#collage_table td img {
margin: 2px;
width: 128px;
height: 128px;
border: 2px solid #3b3b3b;
opacity: 0.6;
}
#collage_table td img:hover {
border: 2px solid #5fa296;
opacity: 1;
transition: opacity .25s ease-in-out;
-webkit-transition: opacity .25s ease-in-out;
-moz-transition: opacity .25s ease-in-out;
-o-transition: opacity .25s ease-in-out;
}
#collage .search_form .layout.border tr:nth-child(3) td:nth-child(2) label, tr#release_list td label, tr#format_list td label, tr#bitrate_list td label, tr#media_list td label {
margin-right: 10px;
}
#collage form#quickpostform.send_form textarea[cols="24"], .sidebar .add_form textarea {
margin-bottom: 5px;
width: 216px !important;
}
#collage .create_form .layout td.center, #upload .layout.border.slice tbody tr td table td, .forum_post td, .search_form .layout td, .friends_table td, #torrents .edit_form .layout.border td, #wiki .layout.border td, #better .search_form td, #edition_information td, #user .send_form .layout.border td {
border: none;
}
#collage input#namebox, #collage input#tags, #newthreadtext input#title, input#pollquestionfield, #newthreadtext textarea#posttext, #user form textarea[style="width: 100%"], #user form input[style="width: 100%"], #requests #request_form textarea[name="description"] {
width: 757px !important;
}
#collage select[name="category"] {
margin-bottom: 3px;
}
#collage .search_form .layout.border tr:nth-child(4) td:nth-child(3) {
width: 60px;
}
#content h1 a:visited, #content h2 a:visited, #content h3 a:visited {
color: #528ba3 !important;
}
#catalogue_number_year td:nth-child(3), #edition_title td:nth-child(3) {
width: 175px;
}
#content {
overflow: hidden;
margin: 150px auto 50px !important;
width: 1000px;
line-height: 1.4em;
}
#content .main_column {
float: left;
width: 730px;
}
#content, .thin {
padding-top: 20px;
clear: both;
overflow: hidden;
}
#content .sidebar {
float: right;
width: 258px !important;
}
#coverart.box ul.collage_images img {
width: calc(100% - 4px) !important;
max-height: 165px!important;
height: auto !important;
border: 2px solid #3b3b3b !important;
opacity: 0.8;
}
.group_image img {
padding: 2px!important;
}
#coverart.box ul.collage_images img:hover, .group_image.float_left.clear img:hover, .gm_albumartdisplay img:hover, #collage_table td img:hover, #userhistory .torrent_table.grouped.artwork tr.group.discog td[style="width: 60px; padding: 0;"] img:hover, #user .layout.recent a > img:hover {
border: 2px solid #528BA3 !important;
opacity: 1 !important;
transition: opacity .25s ease-in-out;
-webkit-transition: opacity .25s ease-in-out;
-moz-transition: opacity .25s ease-in-out;
-o-transition: opacity .25s ease-in-out;
padding: 0px!important;
}
#debug_database pre, #debug_report pre {
white-space: pre-wrap;
}
#debug_sphinx .debug_sphinx_time, #debug_database .debug_query_time, #debug_flags .debug_flags_time {
width: 200px;
}
#desc_row textarea {
width: 618px;
float: right;
margin-left: 10px !important;
}
#desc_row a {
clear: both;
line-height: 30px;
}
#discog_table .box.center {
color: #444 !important;
}
#discog_table .box.center a {
padding: 2px;
}
#donate img[alt="Flattr this"] {
margin: 8px 0 5px 10px;
}
#donate input[type="submit"] {
margin: 10px 5px 0 0;
}
#dnulist td:first-child {
width: 30% !important;
}
#dnulist td:last-child {
width: 70% !important;
}
#extra1 {
position: absolute;
top: 0;
margin: 0;
padding: 0;
width: 100%;
height: 45px;
-webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
background: #191919;
}
#extra2 {
position: absolute;
top: 0;
margin: 125px 0 0;
width: 100%;
height: 50px;
background-color: #2e2e2e;
-webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
}
#flip_view_1, #flip_view_2, canvas#similarArtistsCanvas {
margin: auto;
}
#footer {
margin: 0 auto 50px;
width: 1000px;
text-align: center;
}
#footer:after {
content: "Carbone by HBO. Original by htrd, beats. Released under CC BY-NC-ND 3.0 License.";
}
#greasemonkey_status_area {
top: 50px !important;
}
#header {
position: relative;
z-index: 5;
margin: 0 auto;
width: auto;
max-width: 1300px;
height: 65px;
}
#recwars #wrapper #content .thin form .box.pad{
margin: 10px;
padding: 10px;
border: 1px solid #333;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
background-color: rgba(80, 80, 80, 0.3);
}
#poll .box.border {background-color: rgba(100, 100, 100, 0.15); min-width: 55%;}
.vote_form table{align-content: center; margin-left: auto; margin-right: auto;}
#recwars #content, #format-hide, .torrent_table, .thin>.search_form[name="requests"],.thin>.search_form[name="forums"], .thin > div > .search_form, .box.pad .edit_form, .box.pad .rename_form, .box.pad .merge_form, .vote_matches_table, .main_column > .box, .sidebar .box, .collage_table, .create_form .layout, .request_table .border, .request_table.border, #request_form .layout, #searchforum, .forum_index, .forum_post, .forum_list.border, #reply_box, #chat .box.pad[style="padding: 10px 10px 10px 20px;!important"], #top10 h3 + .border, .rule_summary, .rule_table, .box.pad > .border, .thin > .before_rules, #actual_rules, #wiki .create_form, #wiki .edit_form, #wiki .thin > form > table, #below_box, .staff, #logchecker .thin > form > table, #better .box.pad[style="padding: 10px 10px 10px 20px;!important"] > p, #better .box.pad > table[width="100%"], .message_table, #inbox .send_form, .edit_form .layout, .friends_table, #dnulist, #upload .thin > p, #upload .box.pad > h3 + p + p, #user .box.pad > table[width="100%"], #donate .box.pad, #user .thin > .header + .box.pad, #user .send_form .layout.border, #discog_table .box.center, #user .main_column .layout.recent, #user .manage_form .layout, .artist_table, #manage_collage_table.ui-sortable, .thin > .header + .layout, #wiki .thin > .header + table, .main_column > .layout, .box.vertical_space, .manage_form .box.pad, .split_form .layout, .box.pad .add_form, .thin > .header + .border, #searchthread .search_form .layout.border, #content > .header + .linkbox + .layout.border, .thin > .box.thin.clear, #compose .send_form, #torrents .thin.center > .box[style="width: 600px; margin: 0px auto;"], #blog .box, #wiki .thin > div > form > .layout.border, #forums #searchthread.center .search_form .layout.border, #wiki .thin > .linkbox + table[width="100%"], #reports .thin > h3 + .box.pad, #reports .thin > .box.pad + p + table, #torrents .thin > .header + table, #staffpm #inbox > .box.pad, #torrents .torrentdetails.pad table, #user #content > .thin.center > .box, #log #log_table.log_table.border, #mark_suggestion_div .layout.border, #tools #content table, #recommendation_div {
margin-bottom: 15px;
padding: 10px !important;
background-color: rgba(100, 100, 100, 0.15);
-webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
color: #9A9A9A;
}
.filter_torrents {
margin-bottom: 15px !important;
padding: 10px !important;
background-color: rgba(100, 100, 100, 0.15);
-webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
color: #9A9A9A;
}
#forums .colhead_dark strong > a {
text-transform: none;
}
#forums #searchforum .search_form {
width: 970px;
color: #9A9A9A;
}
#forums #searchforum.center {
margin-top: 10px;
text-align: justify;
}
#forums #content blockquote {
margin-bottom: 5px;
max-width: 805px;
}
#forums #quickreplytext br, #torrents .edit_form br, #rules li[id="r2.2.0"] img, #rules li[id="r2.2.0"] em, .sidebar .box.box_addtag br, #collage form#quickpostform.send_form br, #quickreplytext br, .add_torrent_container .add_form br, .user_title br, .main_column div#coverart + br, #upload .thin > p br, #upload #content > .box.pad + br, #rules .thin > .box.pad + br, #rules .header + br, #rules form + br, .main_column .linkbox + br, #quickpost h3 + input + br, #threadpoll.pad br, #staffpm .thin > br, #staff .box.pad br, #staff .thin > br, #blog div + br, #staffpm #messageform.manage_form br, #bookmarks .group.discog td > span > br, .sticky_post_label, .send_form > .box.pad > br, #recommendation_status br {
display: block;
}
#forums pre {
max-width: 700px;
}
#forums .linkbox strong + br + a {
line-height: 18px;
}
#forums .search_form .cat_list td {
text-align: left;
}
#forums .search_form .cat_list .forum_cat {
text-align: center;
}
#format-hide span {
padding: 2px 2px;
border: none !important;
color: #528ba3 !important;
text-shadow: 0.1em 0.1em rgba(0, 0, 0, 0.3);
}
#format-hide .hider-f {
padding: 2px 2px;
color: #666 !important;
text-decoration: none !important;
}
#format-hide.box.box_artists {
color: rgba(100, 100, 100, 0.15);
text-shadow: none;
}
#friends .friends_table textarea {
height: 73px;
}
#friends .friends_table td.left input[type="submit"] {
margin-bottom: 5px;
width: 100%;
}
#friends .friends_table tr.colhead span[style="float: right;"]:before {
content: "Last Seen: ";
}
#index .sidebar .box .pad p, .linkbox .center, #artist .thin > h2, #index .sidebar .box div.head.colhead_dark + div.center.pad, .rule_summary li, #quickreplytext, #staff .box.pad h3 + p, #reports .box.pad + p, #reports .box.pad > p, #rules h4, #rules h5, .edit_form div > h3 + p, .send_form .box.pad textarea#quickpost, #reports blockquote, .save_message {
margin-bottom: 5px;
}
#index .graph .center_poll {
margin-top: 0;
}
#index .sidebar a > img[width="100%"], .box.box_albumart img, #artist .sidebar div img {
width: 230px;
height: auto;
border: 2px solid #3b3b3b !important;
-webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
opacity: 1;
}
#index .sidebar a > img[width="100%"]:hover, #artist .sidebar div img:hover, .box.box_albumart img:hover {
border: 2px solid #456478 !important;
opacity: 0.6;
-webkit-transition: opacity .25s ease-in-out;
-moz-transition: opacity .25s ease-in-out;
transition: opacity .25s ease-in-out;
}
#inbox #quickpost input[type="text"], #staffpm .send_form input#subject, #staff .send_form input#subject, #artist .edit_form input[size="92"], #artist .rename_form input[name="name"], #artist .add_form input[size="40"], #torrents .rename_form input[size="92"], #torrents .merge_form input[name="targetgroupid"], .box.pad .edit_form input[size="92"] {
display: block;
margin: 0 auto 10px;
width: 98%!important;
}
#inbox .box.pad input[value="Editor"], #inbox .box.pad input[value="Preview"] {
margin-right: 3px;
}
#inbox .manage_form .layout td {
padding-top: 10px;
border: none;
}
#inbox .manage_form .layout td.label, #requests .box.box_votes td:nth-child(2), .thin > h2 + div > form table td.label, .thin > h2 + .linkbox + div form table td.label, .filter_torrents td.label, #requests tbody tr td.label, #requests .thin .search_form tr#release_list td.label, #collage .thin .search_form tr td.label, #logchecker .thin.center .border td.label, #upload #upload_table.create_form #dynamic_form table tbody td:first-child, #userform.edit_form .layout td.label {
text-align: right;
}
#inbox .thin #searchbox.search_form div input:last-child, #index .sidebar #merchbox.box div.center.pad, #index .sidebar .box div.center.pad:last-child, #reports .box.pad ul + p, #inbox input[value="Manage conversation"], #artistfields input[id="artist"]:nth-child(n+1), .artists_with, .preview_submit, #answer_block input:nth-child(n+2) {
margin-top: 5px;
}
#lightbox {
position: fixed;
top: 10%;
left: 5%;
z-index: 1000;
overflow: auto;
padding: 0;
width: 90%;
height: 90%;
text-align: center;
}
#lightbox img {
max-width: 90%;
max-height: 90%;
border: 5px solid #3b3b3b;
}
#logchecker textarea#log_contents {
margin: 0 !important;
height: 100px;
width: 757px;
}
#logchecker blockquote h2 {
margin-bottom: 0px;
}
#logo a {
position: absolute;
top: 0;
left: 0;
z-index: 5;
margin: 0px 0 0 50px;
/* margin: 8px 0 0 50px; */
padding: 0;
width: 113px;
height: 40px;
/* height: 30px; */
/*background-image: url(https://i.imgur.com/mXEAhwE.png);*/
background-image: url(https://i.imgur.com/w1nTze9.png);
background-repeat: no-repeat;
background-size: auto 100%;
background-position: center center;
}
#menu {
position: absolute;
top: 0;
right: 0;
width: 100%;
height: 45px;
text-align: right;
text-shadow: 0.1em 0.1em rgba(0, 0, 0, 0.5);
font-weight: normal;
}
#menu a, #userinfo_stats a, .tags a:hover, .search_form {
color: #9A9A9A;
}
#menu .active a {
color: #F9A440;
}
#menu .active a:hover {
color: #aaa;
}
#menu ul {
padding: 15px 0 0 50px;
}
#menu ul li:last-child {
margin-right: 55px;
}
#menu li:first-child, #inbox .manage_form .layout td.center, .search_form .layout tr:last-child td.center, .debug_table td.debug_data, .drag_drop_save {
padding: 0;
}
#menu li a, #menu li a:hover {
padding: 13px 7px 15px;
}
#nav_userinfo, #nav_useredit, #nav_logout, #nav_upload, #nav_invite, #nav_donate, #nav_store {
display: inline-block !important;
height: 15px;
}
/*
#nav_useredit, #nav_logout, #nav_invite, #nav_donate, #nav_store {
opacity: 0;
transition: opacity .25s ease-in-out;
-webkit-transition: opacity .25s ease-in-out;
-moz-transition: opacity .25s ease-in-out;
-o-transition: opacity .25s ease-in-out;
}
#userinfo_username:hover #nav_useredit, #userinfo_username:hover #nav_logout, #userinfo_major:hover #nav_invite, #userinfo_major:hover #nav_donate, #userinfo_major:hover #nav_store {
opacity: 1;
}
*/
#other_bitrate_span input#vbr {
top: 3px;
}
#quickreplytext .bbcodes, #messageform .bbcodes, .edit_form .bbcodes, .friends_table .bbcodes, #newthreadtext .bbcodes, .create_form .bbcodes, .send_form .bbcodes, .forum_post form .bbcodes, #requests #request_form .bbcodes {
max-width: 100% !important;
}
#recommended .head {
margin-bottom: -11px !important;
}
#recommendation_note {
width: 600px;
}
#requests #request_form.add_form, #requests .edit_form {
margin: 0 !important;
padding: 0 !important;
background: none !important;
}
#requests #request_form select#importance {
margin: 0 2px;
width: 112px;
}
#requests #request_form input#tags {
margin-left: 2px;
width: 265px;
}
#requests .layout form[name="request"] {
-webkit-box-shadow: none !important;
box-shadow: none !important;
}
#requests .thin div:nth-child(3) form table:nth-child(6) td {
padding: 13px 0 0 0 !important;
padding-top: 13px !important;
border-bottom: 0 !important;
}
#requests .main_column .layout td > .edit_form input[size="50"] {
width: 50%;
}
#requests .forum_post form textarea[cols="80"], #torrents .main_column .forum_post.box.vertical_margin form textarea[cols="50"] {
width: 538px;
}
#reportform .box.pad input, #reportform textarea {
max-width: 705px;
width: 705px;
}
#reportform td.label {
width: 220px;
}
#rules .search_form input#search_string, #debug_loggedvars .debug_loggedvars_name {
width: 290px;
}
#rules li[id="r2.2.0"] p {
margin-bottom: 10px;
margin-left: 14%;
width: 675px;
height: 275px;
background: url("https://redacted.ch/static/styles/postmod/images/trump.png") no-repeat !important;
}
#rules span#Index {
margin-left: 5px;
font-size: 90%;
}
#rules .ratio_table {
margin: 10px 0;
margin-left: 250px;
width: 500px;
background: rgba(50, 50, 50, 0.4);
-webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
}
#rules .rule_summary > ul, #chat .thin .box.pad > ul {
padding: 10px 20px 10px 30px;
list-style-type: lower-roman;
}
#rules .box.pad.rule_summary > p {
text-align: justify;
}
#rules ol, #rules ul, #wiki .box_info.pad ul, #chat .box.pad ul {
list-style: none;
}
#searchbars {
position: absolute;
top: 125px;
margin: 0;
padding: 12px 5px;
width: 100%;
height: 28px;
text-align: center;
}
#searchbars ul li {
display: inline-block;
margin-right: 5px;
}
#searchbars li:last-child, #userinfo_stats li:last-child {
margin-right: 0;
}
#searchbars ul, #searchbars form {
display: inline;
margin: 0;
padding: 0;
}
#searchbars input {
padding: 5px 10px;
width: 140px;
height: 15px;
border: 1px solid #3B3B3B;
background: rgba(0, 0, 0, 0.15);
-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
color: #666;
transition: .25s ease-in-out;
-webkit-transition: .25s ease-in-out;
-moz-transition: .25s ease-in-out;
-o-transition: .25s ease-in-out;
}
#site_debug .debug_table .debug_data > div, #site_debug .debug_table .debug_data > pre {
overflow: auto;
padding: 8px;
max-width: none;
max-height: 400px;
}
#sortable li {
margin-bottom: 5px;
font-size: 100% !important;
padding-left: 1px;
margin-left: 0;
}
#sortable {
-webkit-column-width: 110px;
-moz-column-width: 110px;
column-width: 110px;
width: 100% !important;
}
#stats .box.pad.center img {
margin: 10px 0;
}
#stats .box.center img:last-child, #recommended #vanityhouse {
margin-top: 20px;
}
#staff .send_form strong, #staffpm .send_form strong {
margin-left: 33%;
}
#staffpm #compose, .thin > h2 + div, .thin > h2 + .linkbox + div, .sidebar .download_form ul#list.nobullet, .sidebar .box.box_addtag .add_form, .sidebar form[action="bookmarks.php"] ul#list.nobullet, #artist .box.pad > ul, #artist .add_form input[size="40"], #torrents .edit_form div.yadg_div, blockquote.log_bad, #preview, #inbox #messageform.manage_form input[type="submit"], input.save_sortable_collage {
margin-bottom: 10px;
}
#searchthread .search_form {
width: 1000px;
}
#threadpoll p {
margin-bottom: 20px;
font-size: 16px;
}
#tools #marked_suggestion table, #tools #implemented_suggestion table, #tools #rejected_suggestion table {
width: 300px;
}
#tools #marked_suggestion {
float: left;
margin-right: 50px;
}
#tools #implemented_suggestion {
float: left;
}
#tools #rejected_suggestion {
float: right;
}