]> code.citadel.org Git - citadel.git/blob - webcit-ng/static/css/webcit.css
Clear any existing mailbox refresh when setting up a new one
[citadel.git] / webcit-ng / static / css / webcit.css
1 /*
2 Copyright (c) 1996-2022 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: #456789;
13 }
14
15 .ctdl-fmsg-wrapper {            /* message wrapper for forum view */
16         overflow: hidden;
17         border-radius: 10px;
18         background-color: white;
19         margin: 1vw;
20         padding: 5px;           /* inside the box */
21 }
22
23 .ctdl-mmsg-wrapper {            /* message wrapper for mailbox view */
24         overflow: hidden;
25         /* border-radius: 10px; */
26         background-color: white;
27         /* margin: 1vw; */
28         padding: 5px;           /* inside the box */
29 }
30
31 .ctdl-msg-reply {
32         margin-left: 5vw;
33 }
34
35 .ctdl-msg-header {
36         overflow: hidden;
37         padding: 4px;
38         background-color: GhostWhite;
39 }
40
41 .ctdl-msg-header-info {
42         float: left;
43 }
44
45 .ctdl-msg-header-buttons {
46         float: right;
47 }
48
49 .ctdl-msg-button {
50         margin-left: 2px;
51         border-radius: 5px;
52         background-color: blue;
53         color: black;
54         padding: 2px;
55         background-color: GhostWhite;
56         border-style: solid;
57         border-width: thin;
58         border-color: black;
59 }
60
61 .ctdl-msg-button:hover {
62         background-color: #123456;
63         color: GhostWhite;
64         transition: .3s;
65         border-color: #123456;
66 }
67
68 .ctdl-msg-button a {
69         text-decoration: none;
70 }
71
72 .ctdl-avatar {
73         width: 32px;
74 }
75
76 .ctdl-username {
77         font-weight: bold;
78         color: #000055;
79 }
80
81 .ctdl-username a {
82         text-decoration: none;
83         padding-right: 4px;
84 }
85
86 .ctdl-msgdate {
87         padding-left: 4px;
88 }
89
90 .ctdl-msgsubject {
91         font-weight: bold;
92 }
93
94 .ctdl-msg-content {
95         margin-left: 32px;
96 }
97
98 .ctdl-avatar {
99         float: left;
100         padding-right: 2px;
101 }
102
103 .ctdl-forum-nav {
104         text-align: center;
105         color: #ffff00;
106 }
107
108 .ctdl-forum-nav a {
109         text-decoration: none;
110 }
111
112 blockquote {
113         background-color: #f5f5f5 !important;
114         color: navy !important;
115         margin-bottom: 0px;
116         padding-bottom: 0px;
117 }
118
119 blockquote blockquote {
120         background-color: #ebebeb !important;
121         color: maroon !important;
122 }
123
124 blockquote blockquote blockquote {
125         background-color: #e1e1e1 !important;
126         color: green !important;
127 }
128
129 blockquote blockquote blockquote blockquote {
130         background-color: #d7d7d7 !important;
131         color: purple !important;
132 }
133
134 blockquote blockquote blockquote blockquote blockquote {
135         background-color: #cdcdcd !important;
136         color: teal !important;
137 }
138
139 blockquote pre {
140         margin-left: 1%;
141         margin-right: 1%;
142 }
143
144 .ctdl-roomlist-top {
145         margin: 1%;
146 }
147
148 .ctdl-roomlist-floor {
149 }
150
151 .ctdl-roomlist-floor-label {
152         font-size: x-large;
153         margin: 1vw;
154 }
155
156 .ctdl-roomlist-floor-rooms {
157 }
158
159 .ctdl-roomlist-room {
160         overflow: hidden;
161         border-radius: 10px;
162         background-color: white;
163         padding: 0.5vw;
164         margin-bottom: 0.5vw;
165         width: 100%;
166 }
167
168 .ctdl-roomlist-roomicon {
169         overflow: hidden;
170         font-size: large;
171         margin-left: 1vw;
172         margin-right: 1vw;
173         padding-left: 0.75vw;
174         padding-right: 1.75vw;
175         padding-top: 0.75vw;
176         padding-bottom: 0.75vw;
177 }
178
179 .ctdl-roomlist-roomname {
180         font-size: large;
181 }
182
183 .ctdl-roomlist-roomname-hasnewmsgs {
184         font-weight: bold;
185 }
186
187 .ctdl-roomlist-mtime {
188 }