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
|
html,
body {
background-attachment: scroll, fixed;
background-color: #000;
background-image: url("img/vndb1.jpg"), url("img/vndb2.jpg");
background-position: left top, right top;
background-repeat: no-repeat, no-repeat;
color: #ddd;
font-family: Arial, Helvetica, "Nimbus Sans L", sans-serif;
}
.rep {
color: #ddd;
}
a,
a .name,
.nav label {
color: #77bbdd;
}
a:hover,
a:hover .name,
.nav label:hover {
border-bottom: 1px dotted #ddd;
text-decoration: none;
}
#catalog .thread > a:hover {
border-bottom: none;
text-decoration: underline;
}
.logo {
color: #135;
font-style: italic;
}
.replymode,
.extramode {
color: #fff;
}
.replymode {
background: #258;
}
.extramode {
background: #247;
}
.postblock {
border: 1px solid #258;
background: rgba(7, 28, 47, 0.75);
}
input,
input[type="text"],
input[type="password"],
textarea {
background: #0d2741;
border: 1px solid #35a;
color: #ddd;
}
input[type="submit"] {
background: rgba(7, 28, 47, 0.9);
padding: 3px 10px;
}
input[type="submit"]:active {
background: #0d2741;
}
.fs {
text-decoration: none;
}
.subj {
color: #7bd;
font-weight: bold;
}
.ell,
.name,
.omitted {
color: #258;
}
.q {
border-left: 1px dotted #258;
color: #336da7;
}
.reply,
#q-p {
background: rgba(7, 28, 47, 0.8);
border: 1px solid #258;
}
.abbrev {
color: #707070;
}
.highlight {
background: rgb(10, 35, 60);
}
.managertable {
border: 1px solid #258;
}
.managertable td {
background: rgba(7, 28, 47, 0.5);
}
.managertable th {
background: rgba(7, 28, 47, 0.9);
}
hr {
border: none;
border-top: 1px solid #258;
height: 0;
}
#catalog .thread:hover {
background: rgba(7, 28, 47, 0.92);
box-shadow: 0 0 5px 5px rgba(7, 28, 47, 0.9);
}
#catalog .replies {
color: #258;
font-weight: bold;
}
.yt,
.yt:hover {
background: #0d2741;
border: 1px solid #258;
color: #ddd;
}
.pg,
.pg td {
background: rgba(7, 28, 47, 0.8);
border: 1px solid #258;
}
.footer,
.footer a {
color: #247;
}
.quoted {
border-color: #35a;
color: #247;
}
|