home » zplus/freepost.git
ID: 5695d0b23c9407779b5b197b30e6078bfd36b2a9
414 lines — 11K — View raw


  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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
* {
    margin:         0;
    padding:        0;
    font-family:    "Helvetica Neue", Helvetica, Arial, sans-serif;

    -moz-box-sizing:    border-box;
    -webkit-box-sizing: border-box;
    box-sizing:         border-box;
}

img
{
    /* Prevent images from taking up too much space in comments */
    max-width: 100%;
}

html, body
{
    background-color:   #fff; /* #f5f8fa; */
    font-size:          1em;
    height:             100%;
    line-height:        1em;
    margin:             0;
    padding:            0;
    width:              100%;
}
    
    /* Page header */
    .header
    {
        padding:    1em 0;
        text-align: center;
    }
        
        /* Logo text */
        .header a.logo,
        .header a.logo:hover,
        .header a.logo:visited
        {
            color:              #000;
            font-weight:        bold;
            text-decoration:    none;
        }
        
            /* Logo picture */
            .header a.logo > img
            {
                height:         1.5em;
                margin:         0 1em;
                vertical-align: middle;
            }
        
        /* Menu under the logo */
        .header > .menu
        {
            padding: 1em 0;
        }
        
            .header > .menu > *
            {
                margin: 0 1em;
            }

            .header > .menu .new_messages
            {
                background-color:   rgb(255, 175, 50);
                border-radius:      4px;
                color:              #fff;
                font-weight:        bold;
                margin:             0 .5em 0 0;
                padding:            0em 0.5em;
                text-decoration:    none;
            }
    
    
    .content
    {
        padding:        1em 0;
        line-height:    1.5em;
    }
    
        .content .vote
        {
            margin: 0 1.5em 0 0;
        }
        
            .content .vote > a
            {
                display:            inline-block;
                margin:             0;
                overflow:           hidden;
                padding:            0;
                text-decoration:    none;
                vertical-align:     middle;
            }
            
            .content .vote img {
                cursor:     pointer;
                height:     1em;
                margin:     0;
                padding:    .2em;
                float:      left;
            }
            
            .content .vote .upvoted
            {
                background-color:   #fff;
                border:             1px solid #00E313;
                border-radius:      999em;
            }
            
            .content .vote .downvoted
            {
                background-color:   #fff;
                border:             1px solid #FF0000;
                border-radius:      999em;
            }
            
            .content .vote .count {
                margin: 0 .5em;
            }
        
        /* Home page */
        .content .posts
        {
        }
            
            .content .posts .post
            {
                margin:         0 0 2em 0;
                vertical-align: top;
            }
            
                .content .posts .post > .title
                {
                    font-size: 1.5em;
                }
                
                .content .posts .post > .title > a
                {
                    color: #000;
                }
                
                .content .posts .post > .info
                {
                    color:      #666;
                    margin:     .5em 0;
                    opacity:    .8;
                }
        
        /* New submission */
        .content > form.submit
        {
            margin:     auto;
            max-width:  30em;
        }
            
        /* View a post */
        .content > .post
        {
        }
            
            /* Style used to format Markdown tables */
            .content > .post table
            {
                background:         #fff;
                border-collapse:    collapse;
                text-align:         left;
            }
            
                .content > .post table th
                {
                    border-bottom:  2px solid #6678b1;
                    color:          #039;
                    font-weight:    normal;
                    padding:        0 1em;
                }
                
                .content > .post table td
                {
                    border-bottom:  1px solid #ccc;
                    color:          #669;
                    padding:        .5em 1em;
                }
                
                .content > .post table tbody tr:hover td
                {
                    color: #009;
                }
            
            /* The post title */
            .content > .post > .title
            {
                font-size: 1.5em;
            }
            
            /* Info below post title */
            .content > .post > .info
            {
                margin: 1em 0;
            }
            
            /* Post text */
            .content > .post > .text
            {
                margin:     1em 2.5em;
                word-wrap:  break-word;
            }
            
            /* Post "new comment" form */
            .content > .post > .new_comment
            {
                margin:     0 2.5em;
                overflow:   hidden;
            }
                
                .content > .post > .new_comment > textarea
                {
                    height: 2.5em;
                    
                    -webkit-transition: 1s;
                    transition:         1s;
                }
                
                    .content > .post > .new_comment > textarea:focus
                    {
                        height: 10em;
                    }
                
                .content > .post > .new_comment > input[type=submit]
                {
                    float:  right;
                    margin: 1em 0;
                }
            
            /* Comments tree for the Post page */
            .content > .post > .comments
            {
                margin: 5em 0 0 0;
            }
                
                .content > .post > .comments > .comment
                {
                    margin:     0 0 2em 0;
                    overflow:   hidden;
                }
                    
                    .content > .post > .comments > .comment > .pin
                    {
                        color:          #CD006B;
                        float:          left;
                        font-size:      .8em;
                        padding:        0 1em 0 0;
                        vertical-align: top;          
                    }
                    
                    .content > .post > .comments > .comment > .info
                    {
                        font-size:  .9em;
                        margin:     0 0 0 1em;
                    }
                    
                        .content > .post > .comments > .comment > .info .username > a,
                        .content > .post > .comments > .comment > .info .username > a:hover
                        {
                            font-weight: bold;
                        }
                        
                        .content > .post > .comments > .comment > .info .op > a,
                        .content > .post > .comments > .comment > .info .op > a:hover
                        {
                            background-color:   rgb(255, 175, 50);
                            border-radius:      4px;
                            color:              #fff;
                            font-weight:        bold;
                            margin:             0 .5em 0 0;
                            padding:            0em 0.5em;
                            text-decoration:    none;
                        }
        
                        .content > .post > .comments > .comment > .info > .vote
                        {
                            margin: 0 1em;
                        }
                     
                     .content > .post > .comments > .comment > .text
                     {
                         margin:    .5em 0 0 1.5em;
                         word-wrap: break-word;
                     }

                    /* Give the comment that's linked to in the URL location hash a lightyellow background color */
                    .content > .post > .comments > .comment:target
                    {
                        background-color: lightyellow;
                    }

                     
        /* User home page */
        .content table.user
        {
            /* If one length specified: both horizontal and vertical spacing
             * If two length specified: first sets the horizontal spacing, and
             *                          the second sets the vertical spacing
             */
            border-spacing:     2em 1em;
            border-collapse:    separate;
            margin:             auto;
            width:              80%;
        }
        
            .content table.user td:first-child
            {
                font-weight:    bold;
                text-align:     right;
                vertical-align: top;
                width:          30%;
            }
            
            .content table.user td:last-child
            {
                text-align: left;
            }
        
        /* User activity */
        .content > .user_activity
        {
        }
        
            .content > .user_activity > *
            {
                margin: 0 0 2em 0;
            }
            
                .content > .user_activity > * > .info
                {
                    color: #888;
                }
        
        /* Login page */
        .content > .login
        {
            margin:     auto;
            max-width:  20em;
        }
            
            .content > .login input[type=submit]
            {
                margin: 1em 0;
            }
        
        /* Edit a post or a comment */
        .content > .edit
        {
        }
        
        /* Reply to a comment */
        .content > .reply
        {
        }
        
        /* About page */
        .content > .about
        {
        }
        
            .content > .about > h3
            {
                margin: 1em 0 .5em 0;
            }
            
            .content > .about > p
            {
                line-height: 1.5em;
            }
        
    .footer
    {
        border-top: 1px solid #6ECFFF;
        margin:     3em 0 0 0;
        padding:    2em 0;
    }
        
        .footer img
        {
            height:         1.2em;
            margin:         0 .5em 0 0;
            vertical-align: middle;
        }
        
        .footer > ul
        {
            list-style: none;
            margin:     0;
            overflow:   hidden;
            padding:    0;
        }
        
            .footer > ul > li
            {
                float:  left;
                margin: 0 2em 0 0;
            }
        
    /* When users vote, this <iframe/> is used as target, such that
     * the page is not reloaded
     */
    .vote_sink
    {
        height:     1px;
        left:       -10px;
        position:   fixed;
        top:        -10px;
        width:      1px;
    }