dbbedfdb9eab64add7b9d2d8071f3a9847db0c51
[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-msg-wrapper {
16         overflow: hidden;
17         border-radius: 10px;
18         background-color: white;
19         margin: 1vw;
20         padding: 5px;           /* inside the box */
21 }
22
23 .ctdl-msg-reply {
24         margin-left: 5vw;
25 }
26
27 .ctdl-msg-header {
28         overflow: hidden;
29         padding: 4px;
30         background-color: GhostWhite;
31 }
32
33 .ctdl-msg-header-info {
34         float: left;
35 }
36
37 .ctdl-msg-header-buttons {
38         float: right;
39 }
40
41 .ctdl-msg-button {
42         margin-left: 2px;
43         border-radius: 5px;
44         background-color: blue;
45         color:black;
46         padding: 2px;
47         background-color: GhostWhite;
48         border-style: solid;
49         border-width: thin;
50         border-color: black;
51 }
52
53 .ctdl-msg-button:hover {
54         background-color: #123456;
55         color: GhostWhite;
56         transition: .3s;
57         border-color: #123456;
58 }
59
60 .ctdl-msg-button a {
61         text-decoration: none;
62 }
63
64 .ctdl-avatar {
65         width: 32px;
66 }
67
68 .ctdl-username {
69         font-weight: bold;
70         color: #000055;
71 }
72
73 .ctdl-username a {
74         text-decoration: none;
75         padding-right: 4px;
76 }
77
78 .ctdl-msgdate {
79         padding-left: 4px;
80 }
81
82 .ctdl-msgsubject {
83         font-weight: bold;
84 }
85
86 .ctdl-msg-content {
87         margin-left: 32px;
88 }
89
90 .ctdl-avatar {
91         float: left;
92         padding-right: 2px;
93 }
94
95 .ctdl-forum-nav {
96         text-align: center;
97         color: #ffff00;
98 }
99
100 .ctdl-forum-nav a {
101         text-decoration: none;
102 }
103
104 blockquote {
105         background-color: #f5f5f5 !important;
106         color: navy !important;
107 }
108
109 blockquote blockquote {
110         background-color: #ebebeb !important;
111         color: maroon !important;
112 }
113
114 blockquote blockquote blockquote {
115         background-color: #e1e1e1 !important;
116         color: green !important;
117 }
118
119 blockquote blockquote blockquote blockquote {
120         background-color: #d7d7d7 !important;
121         color: purple !important;
122 }
123
124 blockquote blockquote blockquote blockquote blockquote {
125         background-color: #cdcdcd !important;
126         color: teal !important;
127 }
128
129 blockquote pre {
130         margin-left: 1%;
131         margin-right: 1%;
132 }
133