]> code.citadel.org Git - citadel.git/blob - webcit-ng/static/css/webcit.css
The buttons now look like buttons, the reply button has a nice reply icon in it,...
[citadel.git] / webcit-ng / static / css / webcit.css
1 /*
2 Copyright (c) 1996-2021 by Art Cancro and the citadel.org team.
3 This program is open source software.  You can redistribute it and/or
4 modify it under the terms of the GNU General Public License, version 3.
5 */
6
7 html,body,h1,h2,h3,h4,h5 {
8         font-family: verdana, sans-serif
9 }
10
11 .ctdl-msg-reading-pane {
12         background-color: #123456;
13 }
14
15 .ctdl-msg-wrapper {
16         overflow: hidden;
17         border-radius: 25px;
18         background-color: white;
19         margin-left: 4px;
20         margin-top: 4px;
21         margin-bottom: 4px;
22         margin-right: 4px;
23         padding: 4px;           /* inside the box */
24 }
25
26 .ctdl-msg-header {
27         overflow: hidden;
28         padding: 4px;
29         background-color: GhostWhite;
30 }
31
32 .ctdl-msg-header-info {
33         float: left;
34 }
35
36 .ctdl-msg-header-buttons {
37         float: right;
38 }
39
40 .ctdl-msg-button {
41         margin-left: 2px;
42         border-radius: 5px;
43         background-color: blue;
44         padding: 2px;
45         background-color: GhostWhite;
46         border-style: solid;
47         border-width: thin;
48 }
49
50 .ctdl-msg-button:hover {
51         background-color: black;
52         color: GhostWhite;
53         border-style: none;
54 }
55
56 .ctdl-msg-button a {
57         text-decoration: none;
58 }
59
60 .ctdl-avatar {
61         width: 32px;
62 }
63
64 .ctdl-username {
65         font-weight: bold;
66         color: #000055;
67 }
68
69 .ctdl-username a {
70         text-decoration: none;
71         padding-right: 4px;
72 }
73
74 .ctdl-msgdate {
75         padding-left: 4px;
76 }
77
78 .ctdl-msgsubject {
79         font-weight: bold;
80 }
81
82 .ctdl-msg-content {
83         margin-left: 32px;
84 }
85
86 .ctdl-avatar {
87         float: left;
88         padding-right: 2px;
89 }
90
91 .ctdl-forum-nav {
92         text-align: center;
93         color: #ffff00;
94 }
95
96 .ctdl-forum-nav a {
97         text-decoration: none;
98 }