]> code.citadel.org Git - citadel.git/blob - webcit-ng/static/css/webcit.css
Added CSS style for the Loading Messages, Older Posts, Newer Posts divs
[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         padding: 4px;
28 }
29
30 .ctdl-msg-header-info {
31         float: left;
32 }
33
34 .ctdl-msg-header-buttons {
35         float: right;
36 }
37
38 .ctdl-msg-button {
39         padding-left: 2px;
40         padding-right: 2px;
41         font-weight: bold;
42 }
43
44 .ctdl-avatar {
45         width: 32px;
46 }
47
48 .ctdl-username {
49         font-weight: bold;
50         color: #000055;
51 }
52
53 .ctdl-username a {
54         text-decoration: none;
55         padding-right: 4px;
56 }
57
58 .ctdl-msgdate {
59         padding-left: 4px;
60 }
61
62 .ctdl-msgsubject {
63         font-weight: bold;
64 }
65
66 .ctdl-msg-content {
67         margin-left: 32px;
68 }
69
70 .ctdl-avatar {
71         float: left;
72         padding-right: 2px;
73 }
74
75 .ctdl-forum-nav {
76         text-align: center;
77         color: #ffff00;
78 }
79
80 .ctdl-forum-nav a {
81         text-decoration: none;
82 }