]> code.citadel.org Git - citadel.git/blob - webcit-ng/static/css/webcit.css
increased the margin around the message reading boxes
[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: 8px;
20         padding: 4px;           /* inside the box */
21 }
22
23 .ctdl-msg-header {
24         overflow: hidden;
25         padding: 4px;
26         background-color: GhostWhite;
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         margin-left: 2px;
39         border-radius: 5px;
40         background-color: blue;
41         padding: 2px;
42         background-color: GhostWhite;
43         border-style: solid;
44         border-width: thin;
45         border-color: black;
46 }
47
48 .ctdl-msg-button:hover {
49         background-color: #123456;
50         color: GhostWhite;
51         transition: .3s;
52         border-color: #123456;
53 }
54
55 .ctdl-msg-button a {
56         text-decoration: none;
57 }
58
59 .ctdl-avatar {
60         width: 32px;
61 }
62
63 .ctdl-username {
64         font-weight: bold;
65         color: #000055;
66 }
67
68 .ctdl-username a {
69         text-decoration: none;
70         padding-right: 4px;
71 }
72
73 .ctdl-msgdate {
74         padding-left: 4px;
75 }
76
77 .ctdl-msgsubject {
78         font-weight: bold;
79 }
80
81 .ctdl-msg-content {
82         margin-left: 32px;
83 }
84
85 .ctdl-avatar {
86         float: left;
87         padding-right: 2px;
88 }
89
90 .ctdl-forum-nav {
91         text-align: center;
92         color: #ffff00;
93 }
94
95 .ctdl-forum-nav a {
96         text-decoration: none;
97 }