]> code.citadel.org Git - citadel.git/blob - webcit-ng/static/css/webcit.css
Tuned up the CSS for message board view. It looks pretty good now.
[citadel.git] / webcit-ng / static / css / webcit.css
1 /* Copyright (c) 1996-2021 by Art Cancro and the citadel.org team.
2 ** This program is open source software.  You can redistribute it and/or
3 ** modify it under the terms of the GNU General Public License, version 3.
4 */
5
6 html,body,h1,h2,h3,h4,h5 {
7         font-family: verdana, sans-serif
8 }
9
10 .ctdl-msg-reading-pane {
11         background-color: #123456;
12 }
13
14 .ctdl-msg-wrapper {
15         overflow: hidden;
16         border-radius: 25px;
17         background-color: white;
18         margin-left: 4px;
19         margin-top: 4px;
20         margin-bottom: 4px;
21         margin-right: 4px;
22         padding: 4px;           /* inside the box */
23 }
24
25 .ctdl-msg-header {
26         padding: 4px;
27 }
28
29 .ctdl-msg-header-info {
30         float: left;
31 }
32
33 .ctdl-msg-header-buttons {
34         float: right;
35 }
36
37 .ctdl-msg-button {
38         padding-left: 2px;
39         padding-right: 2px;
40         font-weight: bold;
41 }
42
43 .ctdl-avatar {
44         width: 32px;
45 }
46
47 .ctdl-username {
48         font-weight: bold;
49         color: #000055;
50 }
51
52 .ctdl-username a {
53         text-decoration: none;
54         padding-right: 4px;
55 }
56
57 .ctdl-msgdate {
58         padding-left: 4px;
59 }
60
61 .ctdl-msgsubject {
62         font-weight: bold;
63 }
64
65 .ctdl-msg-content {
66         margin-left: 32px;
67 }
68
69 .ctdl-avatar {
70         float: left;
71         padding-right: 2px;
72 }