##// END OF EJS Templates
Changed tag color in MD theme
neko259 -
r531:c93200d2 default
parent child Browse files
Show More
@@ -1,399 +1,401 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 .title {
24 24 font-weight: bold;
25 25 color: #ffcc00;
26 26 font-size: 2ex;
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 color: #b4cfec;
39 /*color: #F5FFC9;*/
40 color: #FFD37D;
41 /*color: #b4cfec;*/
40 42 }
41 43
42 44 .post_id {
43 45 color: #fff380;
44 46 }
45 47
46 48 .post, .dead_post, .archive_post, #posts-table {
47 49 background: #333;
48 50 margin: 5px;
49 51 padding: 10px;
50 52 border: solid 1px #888;
51 53 clear: left;
52 54 word-wrap: break-word;
53 55 }
54 56
55 57 .metadata {
56 58 padding-top: 5px;
57 59 margin-top: 10px;
58 60 border-top: solid 1px #666;
59 61 color: #ddd;
60 62 }
61 63
62 64 .navigation_panel, .tag_info {
63 65 background: #444;
64 66 margin: 5px;
65 67 padding: 10px;
66 68 border: solid 1px #888;
67 69 color: #eee;
68 70 }
69 71
70 72 .navigation_panel .link {
71 73 border-right: 1px solid #fff;
72 74 font-weight: bold;
73 75 margin-right: 1ex;
74 76 padding-right: 1ex;
75 77 }
76 78 .navigation_panel .link:last-child {
77 79 border-left: 1px solid #fff;
78 80 border-right: none;
79 81 float: right;
80 82 margin-left: 1ex;
81 83 margin-right: 0;
82 84 padding-left: 1ex;
83 85 padding-right: 0;
84 86 }
85 87
86 88 .navigation_panel::after, .post::after {
87 89 clear: both;
88 90 content: ".";
89 91 display: block;
90 92 height: 0;
91 93 line-height: 0;
92 94 visibility: hidden;
93 95 }
94 96
95 97 p {
96 98 margin-top: .5em;
97 99 margin-bottom: .5em;
98 100 }
99 101
100 102 .post-form-w {
101 103 display: table;
102 104 background: #333344;
103 105 border: solid 1px #888;
104 106 color: #fff;
105 107 padding: 10px;
106 108 margin: 5px;
107 109 }
108 110
109 111 .form-row {
110 112 display: table-row;
111 113 }
112 114
113 115 .form-label, .form-input, .form-errors {
114 116 display: table-cell;
115 117 }
116 118
117 119 .form-label {
118 120 padding: .25em 1ex .25em 0;
119 121 vertical-align: top;
120 122 }
121 123
122 124 .form-input {
123 125 padding: .25em 0;
124 126 }
125 127
126 128 .form-errors {
127 129 font-weight: bolder;
128 130 vertical-align: middle;
129 131 }
130 132
131 133 .post-form input, .post-form textarea {
132 134 background: #333;
133 135 color: #fff;
134 136 border: solid 1px;
135 137 padding: 0;
136 138 width: 100%;
137 139 font: medium sans;
138 140 }
139 141
140 142 .form-submit {
141 143 display: table;
142 144 margin-bottom: 1ex;
143 145 }
144 146
145 147 .form-title {
146 148 font-weight: bold;
147 149 font-size: 2.5ex;
148 150 text-decoration: underline;
149 151 }
150 152
151 153 input[type="submit"] {
152 154 background: #222;
153 155 border: solid 2px #fff;
154 156 color: #fff;
155 157 padding: 0.5ex;
156 158 }
157 159
158 160 input[type="submit"]:hover {
159 161 background: #060;
160 162 }
161 163
162 164 blockquote {
163 165 border-left: solid 2px;
164 166 padding-left: 5px;
165 167 color: #B1FB17;
166 168 margin: 0;
167 169 }
168 170
169 171 .post > .image {
170 172 float: left;
171 173 margin: 0 1ex .5ex 0;
172 174 min-width: 1px;
173 175 text-align: center;
174 176 display: table-row;
175 177 }
176 178
177 179 .post > .metadata {
178 180 clear: left;
179 181 }
180 182
181 183 .get {
182 184 font-weight: bold;
183 185 color: #d55;
184 186 }
185 187
186 188 * {
187 189 text-decoration: none;
188 190 }
189 191
190 192 .dead_post {
191 193 background-color: #442222;
192 194 }
193 195
194 196 .archive_post {
195 197 background-color: #000;
196 198 }
197 199
198 200 .mark_btn {
199 201 border: 1px solid;
200 202 min-width: 2ex;
201 203 padding: 2px 2ex;
202 204 }
203 205
204 206 .mark_btn:hover {
205 207 background: #555;
206 208 }
207 209
208 210 .quote {
209 211 color: #92cf38;
210 212 font-style: italic;
211 213 }
212 214
213 215 .spoiler {
214 216 background: white;
215 217 color: white;
216 218 }
217 219
218 220 .spoiler:hover {
219 221 color: black;
220 222 }
221 223
222 224 .comment {
223 225 color: #eb2;
224 226 font-style: italic;
225 227 }
226 228
227 229 a:hover {
228 230 text-decoration: underline;
229 231 }
230 232
231 233 .last-replies {
232 234 margin-left: 3ex;
233 235 }
234 236
235 237 .thread {
236 238 margin-bottom: 3ex;
237 239 }
238 240
239 241 .post:target {
240 242 border: solid 2px white;
241 243 }
242 244
243 245 pre{
244 246 white-space:pre-wrap
245 247 }
246 248
247 249 li {
248 250 list-style-position: inside;
249 251 }
250 252
251 253 .fancybox-skin {
252 254 position: relative;
253 255 background-color: #fff;
254 256 color: #ddd;
255 257 text-shadow: none;
256 258 }
257 259
258 260 .fancybox-image {
259 261 border: 1px solid black;
260 262 }
261 263
262 264 .image-mode-tab {
263 265 background: #444;
264 266 color: #eee;
265 267 display: table;
266 268 margin: 5px;
267 269 padding: 5px;
268 270 border: 1px solid #888;
269 271 }
270 272
271 273 .image-mode-tab > label {
272 274 margin: 0 1ex;
273 275 }
274 276
275 277 .image-mode-tab > label > input {
276 278 margin-right: .5ex;
277 279 }
278 280
279 281 #posts-table {
280 282 margin: 5px;
281 283 }
282 284
283 285 .tag_info {
284 286 display: table;
285 287 }
286 288
287 289 .tag_info > h2 {
288 290 margin: 0;
289 291 }
290 292
291 293 .post-info {
292 294 color: #ddd;
293 295 }
294 296
295 297 .moderator_info {
296 298 color: #e99d41;
297 299 border: dashed 1px;
298 300 padding: 3px;
299 301 }
300 302
301 303 .refmap {
302 304 font-size: 0.9em;
303 305 color: #ccc;
304 306 margin-top: 1em;
305 307 }
306 308
307 309 .fav {
308 310 color: yellow;
309 311 }
310 312
311 313 .not_fav {
312 314 color: #ccc;
313 315 }
314 316
315 317 .role {
316 318 text-decoration: underline;
317 319 }
318 320
319 321 .form-email {
320 322 display: none;
321 323 }
322 324
323 325 .footer {
324 326 margin: 5px;
325 327 }
326 328
327 329 .bar-value {
328 330 background: rgba(50, 55, 164, 0.45);
329 331 font-size: 0.9em;
330 332 height: 1.5em;
331 333 }
332 334
333 335 .bar-bg {
334 336 position: relative;
335 337 border: solid 1px #888;
336 338 margin: 5px;
337 339 overflow: hidden;
338 340 }
339 341
340 342 .bar-text {
341 343 padding: 2px;
342 344 position: absolute;
343 345 left: 0;
344 346 top: 0;
345 347 }
346 348
347 349 .page_link {
348 350 display: table;
349 351 background: #444;
350 352 margin: 5px;
351 353 border: solid 1px #888;
352 354 padding: 5px;
353 355 font-weight: bolder;
354 356 color: #eee;
355 357 }
356 358
357 359 .skipped_replies {
358 360 margin: 5px;
359 361 }
360 362
361 363 .current_page {
362 364 border: solid 1px #afdcec;
363 365 padding: 2px;
364 366 }
365 367
366 368 .current_mode {
367 369 font-weight: bold;
368 370 }
369 371
370 372 .gallery_image {
371 373 border: solid 1px;
372 374 padding: 0.5ex;
373 375 margin: 0.5ex;
374 376 text-align: center;
375 377 }
376 378
377 379 code {
378 380 border: dashed 1px #ccc;
379 381 background: #111;
380 382 padding: 2px;
381 383 font-size: 1.2em;
382 384 display: inline-block;
383 385 }
384 386
385 387 pre {
386 388 overflow: auto;
387 389 }
388 390
389 391 .img-full {
390 392 background: #222;
391 393 border: solid 1px white;
392 394 }
393 395
394 396 .tag_item {
395 397 display: inline-block;
396 398 border: 1px dashed #666;
397 399 margin: 0.2ex;
398 400 padding: 0.1ex;
399 } No newline at end of file
401 }
@@ -1,63 +1,63 b''
1 1 {% load staticfiles %}
2 2 {% load i18n %}
3 3 {% load l10n %}
4 4 {% load static from staticfiles %}
5 5
6 6 <!DOCTYPE html>
7 7 <html>
8 8 <head>
9 9 <link rel="stylesheet" type="text/css"
10 10 href="{% static 'css/base.css' %}" media="all"/>
11 11 <link rel="stylesheet" type="text/css"
12 12 href="{% static theme_css %}" media="all"/>
13 13 <link rel="alternate" type="application/rss+xml" href="rss/" title=
14 14 "{% trans 'Feed' %}"/>
15 15
16 16 <link rel="icon" type="image/png"
17 17 href="{% static 'favicon.png' %}">
18 18
19 19 <meta name="viewport" content="width=device-width, initial-scale=1"/>
20 20 <meta charset="utf-8"/>
21 21
22 22 {% block head %}{% endblock %}
23 23 </head>
24 24 <body>
25 25 <script src="{% static 'js/jquery-2.0.1.min.js' %}"></script>
26 26 <script src="{% static 'js/jquery-ui-1.10.3.custom.min.js' %}"></script>
27 27 <script src="{% static 'js/jquery.mousewheel.js' %}"></script>
28 28 <script src="{% url 'js_info_dict' %}"></script>
29 29
30 30 <div class="navigation_panel">
31 31 <a class="link" href="{% url 'index' %}">{% trans "All threads" %}</a>
32 32 {% for tag in tags %}
33 33 <a class="tag" href="{% url 'tag' tag_name=tag.name %}"
34 34 >#{{ tag.name }}</a>,
35 35 {% endfor %}
36 <a class="tag" href="{% url 'tags' %}" title="{% trans 'Tag management' %}"
36 <a href="{% url 'tags' %}" title="{% trans 'Tag management' %}"
37 37 >[...]</a>
38 38 <a class="link" href="{% url 'settings' %}">{% trans 'Settings' %}</a>
39 39 </div>
40 40
41 41 {% block content %}{% endblock %}
42 42
43 43 <script src="{% static 'js/popup.js' %}"></script>
44 44 <script src="{% static 'js/image.js' %}"></script>
45 45 <script src="{% static 'js/refpopup.js' %}"></script>
46 46 <script src="{% static 'js/main.js' %}"></script>
47 47
48 48 <div class="navigation_panel">
49 49 {% block metapanel %}{% endblock %}
50 50 [<a href="{% url "login" %}">{% trans 'Login' %}</a>]
51 51 [<a href="{% url "archive" %}">{% trans 'Archive' %}</a>]
52 52 {% with ppd=posts_per_day|floatformat:2 %}
53 53 {% blocktrans %}Speed: {{ ppd }} posts per day{% endblocktrans %}
54 54 {% endwith %}
55 55 <a class="link" href="#top">{% trans 'Up' %}</a>
56 56 </div>
57 57
58 58 <div class="footer">
59 59 <!-- Put your banners here -->
60 60 </div>
61 61
62 62 </body>
63 63 </html>
General Comments 0
You need to be logged in to leave comments. Login now