##// END OF EJS Templates
Minor changes to metadata style in MD theme
Pavel Ryapolov -
r349:345695ae default
parent child Browse files
Show More
@@ -1,355 +1,354 b''
1 1 html {
2 2 background: #555;
3 3 color: #ffffff;
4 4 }
5 5
6 6 #admin_panel {
7 7 background: #FF0000;
8 8 color: #00FF00
9 9 }
10 10
11 11 .input_field {
12 12
13 13 }
14 14
15 15 .input_field_name {
16 16
17 17 }
18 18
19 19 .input_field_error {
20 20 color: #FF0000;
21 21 }
22 22
23 23
24 24 .title {
25 25 font-weight: bold;
26 26 color: #ffcc00;
27 27 }
28 28
29 29 .link, a {
30 30 color: #afdcec;
31 31 }
32 32
33 33 .block {
34 34 display: inline-block;
35 35 vertical-align: top;
36 36 }
37 37
38 38 .tag {
39 39 color: #b4cfec;
40 40 }
41 41
42 42 .post_id {
43 43 color: #fff380;
44 44 }
45 45
46 46 .post, .dead_post, #posts-table {
47 47 background: #333;
48 48 margin: 5px;
49 49 padding: 10px;
50 50 border: solid 1px #888;
51 51 clear: left;
52 52 word-wrap: break-word;
53 53 }
54 54
55 55 .metadata {
56 padding: 5px;
56 padding-top: 5px;
57 57 margin-top: 10px;
58 border: solid 1px #666;
58 border-top: solid 1px #666;
59 59 font-size: 0.9em;
60 60 color: #ddd;
61 display: table;
62 61 }
63 62
64 63 .navigation_panel, .tag_info {
65 64 background: #444;
66 65 margin: 5px;
67 66 padding: 10px;
68 67 border: solid 1px #888;
69 68 color: #eee;
70 69 }
71 70
72 71 .navigation_panel .link {
73 72 border-right: 1px solid #fff;
74 73 font-weight: bold;
75 74 margin-right: 1ex;
76 75 padding-right: 1ex;
77 76 }
78 77 .navigation_panel .link:last-child {
79 78 border-left: 1px solid #fff;
80 79 border-right: none;
81 80 float: right;
82 81 margin-left: 1ex;
83 82 margin-right: 0;
84 83 padding-left: 1ex;
85 84 padding-right: 0;
86 85 }
87 86
88 87 .navigation_panel::after, .post::after {
89 88 clear: both;
90 89 content: ".";
91 90 display: block;
92 91 height: 0;
93 92 line-height: 0;
94 93 visibility: hidden;
95 94 }
96 95
97 96 p {
98 97 margin-top: .5em;
99 98 margin-bottom: .5em;
100 99 }
101 100
102 101 .post-form-w {
103 102 display: table;
104 103 background: #333344;
105 104 border: solid 1px #888;
106 105 color: #fff;
107 106 padding: 10px;
108 107 margin: 5;
109 108 }
110 109
111 110 .form-row {
112 111 display: table-row;
113 112 }
114 113
115 114 .form-label, .form-input, .form-errors {
116 115 display: table-cell;
117 116 }
118 117
119 118 .form-label {
120 119 padding: .25em 1ex .25em 0;
121 120 vertical-align: top;
122 121 }
123 122
124 123 .form-input {
125 124 padding: .25em 0;
126 125 }
127 126
128 127 .form-errors {
129 128 padding-left: 1ex;
130 129 font-weight: bold;
131 130 vertical-align: middle;
132 131 }
133 132
134 133 .post-form input, .post-form textarea {
135 134 background: #333;
136 135 color: #fff;
137 136 border: solid 1px;
138 137 padding: 0;
139 138 width: 100%;
140 139 font: medium sans;
141 140 }
142 141
143 142 .form-submit {
144 143 border-bottom: 2px solid #ddd;
145 144 margin-bottom: .5em;
146 145 padding-bottom: .5em;
147 146 }
148 147
149 148 .form-title {
150 149 font-weight: bold;
151 150 font-size: 2.5ex;
152 151 text-decoration: underline;
153 152 }
154 153
155 154 input[type="submit"] {
156 155 background: #222;
157 156 border: solid 1px #fff;
158 157 color: #fff;
159 158 }
160 159
161 160 blockquote {
162 161 border-left: solid 2px;
163 162 padding-left: 5px;
164 163 color: #B1FB17;
165 164 margin: 0;
166 165 }
167 166
168 167 .post > .image {
169 168 float: left;
170 169 margin: 0 1ex .5ex 0;
171 170 min-width: 1px;
172 171 text-align: center;
173 172 display: table-row;
174 173
175 174 height: 150px;
176 175 }
177 176
178 177 .post > .metadata {
179 178 clear: left;
180 179 }
181 180
182 181 .get {
183 182 font-weight: bold;
184 183 color: #d55;
185 184 }
186 185
187 186 * {
188 187 text-decoration: none;
189 188 }
190 189
191 190 .dead_post {
192 191 background-color: #442222;
193 192 }
194 193
195 194 .mark_btn {
196 195 padding: 2px 4px;
197 196 border: 1px solid;
198 197 }
199 198
200 199 .mark_btn:hover {
201 200 background: #555;
202 201 }
203 202
204 203 .quote {
205 204 color: #92cf38;
206 205 font-style: italic;
207 206 }
208 207
209 208 .spoiler {
210 209 background: white;
211 210 color: white;
212 211 }
213 212
214 213 .spoiler:hover {
215 214 color: black;
216 215 }
217 216
218 217 .comment {
219 218 color: #eb2;
220 219 font-style: italic;
221 220 }
222 221
223 222 a:hover {
224 223 text-decoration: underline;
225 224 }
226 225
227 226 .last-replies {
228 227 margin-left: 3ex;
229 228 }
230 229
231 230 .thread {
232 231 margin-bottom: 3ex;
233 232 }
234 233
235 234 .post:target {
236 235 border: solid 2px white;
237 236 }
238 237
239 238 pre{
240 239 white-space:pre-wrap
241 240 }
242 241
243 242 li {
244 243 list-style-position: inside;
245 244 }
246 245
247 246 .fancybox-skin {
248 247 position: relative;
249 248 background-color: #fff;
250 249 color: #ddd;
251 250 text-shadow: none;
252 251 }
253 252
254 253 .fancybox-image {
255 254 border: 1px solid black;
256 255 }
257 256
258 257 .image-mode-tab {
259 258 background: #444;
260 259 color: #eee;
261 260 display: table;
262 261 margin: 5px;
263 262 padding: 5px;
264 263 border: 1px solid #888;
265 264 }
266 265
267 266 .image-mode-tab > label {
268 267 margin: 0 1ex;
269 268 }
270 269
271 270 .image-mode-tab > label > input {
272 271 margin-right: .5ex;
273 272 }
274 273
275 274 #posts-table {
276 275 margin: 5px;
277 276 }
278 277
279 278 .tag_info {
280 279 display: table;
281 280 }
282 281
283 282 .tag_info > h2 {
284 283 margin: 0;
285 284 }
286 285
287 286 .post-info {
288 287 color: #ddd;
289 288 }
290 289
291 290 .moderator_info {
292 291 color: #e99d41;
293 292 border: dashed 1px;
294 293 padding: 3px;
295 294 }
296 295
297 296 .refmap {
298 297 font-size: 0.9em;
299 298 color: #ccc;
300 299 margin-top: 1em;
301 300 }
302 301
303 302 input[type="submit"]:hover {
304 303 background: #555;
305 304 }
306 305
307 306 .fav {
308 307 color: yellow;
309 308 }
310 309
311 310 .not_fav {
312 311 color: #ccc;
313 312 }
314 313
315 314 .role {
316 315 text-decoration: underline;
317 316 }
318 317
319 318 .form-email {
320 319 display: none;
321 320 }
322 321
323 322 .footer {
324 323 margin: 5px;
325 324 }
326 325
327 326 .bar-value {
328 327 background: rgba(50, 55, 164, 0.45);
329 328 font-size: 0.9em;
330 329 height: 1.5em;
331 330 }
332 331
333 332 .bar-bg {
334 333 position: relative;
335 334 border: solid 1px #888;
336 335 margin: 5px;
337 336 overflow: hidden;
338 337 }
339 338
340 339 .bar-text {
341 340 padding: 2px;
342 341 position: absolute;
343 342 left: 0;
344 343 top: 0;
345 344 }
346 345
347 346 .page_link {
348 347 display: table;
349 348 background: #444;
350 349 margin: 5px;
351 350 border: solid 1px #888;
352 351 padding: 5px;
353 352 font-weight: bolder;
354 353 color: #eee;
355 } No newline at end of file
354 }
General Comments 0
You need to be logged in to leave comments. Login now