]> code.citadel.org Git - citadel.git/blob - webcit-ng/static/css/webcit.css
Reply/ReplyAll/Delete buttons are pretty now
[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         border-color: black;
49 }
50
51 .ctdl-msg-button:hover {
52         background-color: #123456;
53         color: GhostWhite;
54         transition: .3s;
55         border-color: #123456;
56 }
57
58 .ctdl-msg-button a {
59         text-decoration: none;
60 }
61
62 .ctdl-avatar {
63         width: 32px;
64 }
65
66 .ctdl-username {
67         font-weight: bold;
68         color: #000055;
69 }
70
71 .ctdl-username a {
72         text-decoration: none;
73         padding-right: 4px;
74 }
75
76 .ctdl-msgdate {
77         padding-left: 4px;
78 }
79
80 .ctdl-msgsubject {
81         font-weight: bold;
82 }
83
84 .ctdl-msg-content {
85         margin-left: 32px;
86 }
87
88 .ctdl-avatar {
89         float: left;
90         padding-right: 2px;
91 }
92
93 .ctdl-forum-nav {
94         text-align: center;
95         color: #ffff00;
96 }
97
98 .ctdl-forum-nav a {
99         text-decoration: none;
100 }