##// END OF EJS Templates
Changed some text styles in PG.
neko259 -
r194:4f171c71 default
parent child Browse files
Show More
@@ -1,300 +1,300 b''
1 1 html {
2 2 background: rgb(238, 238, 238);
3 3 color: rgb(51, 51, 51);
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: #333;
27 27 font-size: 2ex;
28 28 }
29 29
30 30 .link, a {
31 31 color: rgb(255, 102, 0);
32 32 }
33 33
34 34 .block {
35 35 display: inline-block;
36 36 vertical-align: top;
37 37 }
38 38
39 39 .tag {
40 40 color: #222;
41 41 }
42 42
43 43 .post_id:hover {
44 44 color: #11f;
45 45 }
46 46
47 47 .post_id {
48 48 color: #444;
49 49 }
50 50
51 51 .post, .dead_post, #posts-table {
52 52 margin: 5px;
53 53 padding: 10px;
54 54 background: rgb(221, 221, 221);
55 55 border: 1px solid rgb(204, 204, 204);
56 56 border-radius: 5px 5px 5px 5px;
57 57 clear: left;
58 58 word-wrap: break-word;
59 59 display: table;
60 60 }
61 61
62 62 .metadata {
63 63 padding: 5px;
64 64 margin-top: 10px;
65 65 border: solid 1px #666;
66 66 font-size: 0.9em;
67 67 display: table;
68 68 }
69 69
70 70 .navigation_panel, .tag_info {
71 71 margin: 5px;
72 72 padding: 10px;
73 73 border: 1px solid rgb(204, 204, 204);
74 74 border-radius: 5px 5px 5px 5px;
75 75 }
76 76
77 77 .navigation_panel .link {
78 78 border-right: 1px solid #000;
79 79 font-weight: bold;
80 80 margin-right: 1ex;
81 81 padding-right: 1ex;
82 82 }
83 83 .navigation_panel .link:last-child {
84 84 border-left: 1px solid #000;
85 85 border-right: none;
86 86 float: right;
87 87 margin-left: 1ex;
88 88 margin-right: 0;
89 89 padding-left: 1ex;
90 90 padding-right: 0;
91 91 }
92 92
93 93 .navigation_panel::after, .post::after {
94 94 clear: both;
95 95 content: ".";
96 96 display: block;
97 97 height: 0;
98 98 line-height: 0;
99 99 visibility: hidden;
100 100 }
101 101
102 102 p {
103 103 margin-top: .5em;
104 104 margin-bottom: .5em;
105 105 }
106 106
107 107 .post-form-w {
108 108 display: table;
109 109 padding: 10px;
110 110 margin: 5px
111 111 }
112 112
113 113 .form-row {
114 114 display: table-row;
115 115 }
116 116
117 117 .form-label, .form-input, .form-errors {
118 118 display: table-cell;
119 119 }
120 120
121 121 .form-label {
122 122 padding: .25em 1ex .25em 0;
123 123 vertical-align: top;
124 124 }
125 125
126 126 .form-input {
127 127 padding: .25em 0;
128 128 }
129 129
130 130 .form-errors {
131 131 padding-left: 1ex;
132 132 font-weight: bold;
133 133 vertical-align: middle;
134 134 }
135 135
136 136 .post-form input, .post-form textarea {
137 137 background: #fff;
138 138 color: #000;
139 139 border: solid 1px;
140 140 padding: 0;
141 141 width: 100%;
142 142 }
143 143
144 144 .form-submit {
145 145 border-bottom: 2px solid #ddd;
146 146 margin-bottom: .5em;
147 147 padding-bottom: .5em;
148 148 }
149 149
150 150 .form-title {
151 151 font-weight: bold;
152 152 }
153 153
154 154 input[type="submit"] {
155 155 background: #fff;
156 156 border: solid 1px #000;
157 157 color: #000;
158 158 }
159 159
160 160 blockquote {
161 161 border-left: solid 2px;
162 162 padding-left: 5px;
163 163 color: #B1FB17;
164 164 margin: 0;
165 165 }
166 166
167 167 .post > .image {
168 168 float: left;
169 169 margin: 0 1ex .5ex 0;
170 170 min-width: 1px;
171 171 text-align: center;
172 172 display: table-row;
173 173
174 174 height: 150px;
175 175 }
176 176
177 177 .post > .metadata {
178 178 clear: left;
179 179 }
180 180
181 181 .get {
182 182 font-weight: bold;
183 183 color: #d55;
184 184 }
185 185
186 186 * {
187 187 text-decoration: none;
188 188 }
189 189
190 190 .dead_post {
191 191 background-color: #ecc;
192 192 }
193 193
194 194 .quote {
195 color: #92cf38;
195 color: #080;
196 196 font-style: italic;
197 197 }
198 198
199 199 .spoiler {
200 200 background: white;
201 201 color: white;
202 202 }
203 203
204 204 .spoiler:hover {
205 205 color: black;
206 206 }
207 207
208 208 .comment {
209 color: #eb2;
209 color: #8B6914;
210 210 font-style: italic;
211 211 }
212 212
213 213 a:hover {
214 214 text-decoration: underline;
215 215 }
216 216
217 217 .last-replies {
218 218 margin-left: 3ex;
219 219 }
220 220
221 221 .thread {
222 222 margin-bottom: 3ex;
223 223 }
224 224
225 225 .post:target {
226 226 border: solid 2px white;
227 227 }
228 228
229 229 pre{
230 230 white-space:pre-wrap
231 231 }
232 232
233 233 li {
234 234 list-style-position: inside;
235 235 }
236 236
237 237 .fancybox-skin {
238 238 position: relative;
239 239 background-color: #fff;
240 240 color: #ddd;
241 241 text-shadow: none;
242 242 }
243 243
244 244 .fancybox-image {
245 245 border: 1px solid black;
246 246 }
247 247
248 248 .image-mode-tab {
249 249 display: table;
250 250 margin: 5px;
251 251 padding: 5px;
252 252 background: rgb(221, 221, 221);
253 253 border: 1px solid rgb(204, 204, 204);
254 254 border-radius: 5px 5px 5px 5px;
255 255 }
256 256
257 257 .image-mode-tab > label {
258 258 margin: 0 1ex;
259 259 }
260 260
261 261 .image-mode-tab > label > input {
262 262 margin-right: .5ex;
263 263 }
264 264
265 265 #posts-table {
266 266 margin: 5px;
267 267 }
268 268
269 269 .tag_info {
270 270 display: table;
271 271 }
272 272
273 273 .tag_info > h2 {
274 274 margin: 0;
275 275 }
276 276
277 277 .moderator_info {
278 278 color: #e99d41;
279 279 border: dashed 1px;
280 280 padding: 3px;
281 281 }
282 282
283 283 .refmap {
284 284 font-size: 0.9em;
285 285 color: #444;
286 286 margin-top: 1em;
287 287 }
288 288
289 289 input[type="submit"]:hover {
290 290 background: #ccc;
291 291 }
292 292
293 293
294 294 .fav {
295 295 color: rgb(255, 102, 0);
296 296 }
297 297
298 298 .not_fav {
299 299 color: #555;
300 300 } No newline at end of file
@@ -1,48 +1,48 b''
1 1 {% load staticfiles %}
2 2 {% load i18n %}
3 3
4 4 <!DOCTYPE html>
5 5 <html>
6 6 <head>
7 7 <link rel="stylesheet" type="text/css"
8 8 href="{{ STATIC_URL }}css/jquery.fancybox.css" media="all"/>
9 9 <link rel="stylesheet" type="text/css"
10 href="{{ STATIC_URL }}css/{{ theme }}/base_page.css" media="all"/>
10 href="{{ STATIC_URL }}css/{{ theme }}/base_page.css?1" media="all"/>
11 11 <link rel="alternate" type="application/rss+xml" href="rss/" title="
12 12 {% trans 'Feed' %}"/>
13 13
14 14 <link rel="icon" type="image/png"
15 15 href="{{ STATIC_URL }}favicon.png">
16 16
17 17 <meta name="viewport" content="width=device-width, initial-scale=1"/>
18 18 <meta charset="utf-8"/>
19 19 {% block head %}{% endblock %}
20 20 </head>
21 21 <body>
22 22 <script src="{{ STATIC_URL }}js/jquery-2.0.1.min.js"></script>
23 23 <script src="{{ STATIC_URL }}js/jquery.fancybox.pack.js"></script>
24 24 <script src="{% url 'django.views.i18n.javascript_catalog' %}"></script>
25 25 <script src="{{ STATIC_URL }}js/refmaps.js"></script>
26 26 <script src="{{ STATIC_URL }}js/main.js"></script>
27 27
28 28 <div class="navigation_panel">
29 29 <a class="link" href="{% url 'index' %}">{% trans "All threads" %}</a>
30 30 {% for tag in tags %}
31 31 <a class="tag" href="{% url 'tag' tag_name=tag.name %}"
32 32 >{{ tag.name }}</a>
33 33 {% endfor %}
34 34 <a class="tag" href="{% url 'tags' %}" alt="{% trans 'Tag management' %}"
35 35 >[...]</a>
36 36 <a class="link" href="{% url 'settings' %}">{% trans 'Settings' %}</a>
37 37 </div>
38 38
39 39 {% block content %}{% endblock %}
40 40
41 41 <div class="navigation_panel">
42 42 {% block metapanel %}{% endblock %}
43 43 [<a href="{% url "login" %}">{% trans 'Login' %}</a>]
44 44 <a class="link" href="#top">{% trans 'Up' %}</a>
45 45 </div>
46 46
47 47 </body>
48 48 </html>
General Comments 0
You need to be logged in to leave comments. Login now