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