-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathskeet.css
107 lines (87 loc) · 2.15 KB
/
skeet.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
html, body {
background: #1b1520 !important;
}
/* removes/hides the top header from the page */
.gs-navbar, .gs-divider {
display: none;
}
/* removes the border around the forum content */
.punwrap {
padding: 0 !important;
background-color: transparent !important;
}
/* fixes labels within fieldsets and thread names from breaking a new line */
.pun label, .pun .tcr {
white-space: nowrap;
}
.pun h2 {
background: #3b3540 !important;
border-color: #3b3540 !important;
border-radius: 0px !important;
padding: 10px !important;
}
.pun .box {
background: #2c2530 !important;
border-color: #3b3540 !important;
}
/* fixes the weird-looking blank space on some posts */
.blockpost > .box {
background: #383838 !important;
}
.pun .block .inbox, .pun .blockmenu .inbox {
padding: 10px 12px !important;
}
#brdmenu {
background-color: #3b3540 !important;
color: #d4d4d4 !important;
}
.pun .inbox thead .tc2, .pun .inbox thead .tc3, .pun .inbox thead .tcl, .pun .inbox thead .tcr {
border-bottom: 2px solid #95b806;
background: #3b3540;
color: #aaa;
padding: 10px;
}
#brdfooter #modcontrols, .pun td {
border-color: #3b3540;
}
.pun .icon {
border-color: #3b3540;
}
.pun .rowodd, .pun .roweven {
background: #2b2530;
}
.pun .rowodd:hover, .pun .roweven:hover {
background: #3b3540;
}
/* SHOUTBOX */
#shout > div:nth-of-type(1) {
height: 213px !important;
}
#shout input {
visibility: visible;
background: #252530;
padding: 15px 10px 15px 10px;
border-color: #3b3540;
border-width: 5px;
}
#shout select {
height: 100%;
background: #2b2530;
border-color: #3b3540;
border-width: 5px;
}
#shout label {
padding: 10px;
font-size: 1.1em;
}
#shout .rowEven, #shout .rowOdd {
background-color: #252530 !important;
padding: 5px 5px 5px 5px !important;
}
#shout div::-webkit-scrollbar-thumb {
background-color: #454550;
}
#shout div::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
background-color: #252530;
}