It's 2022 ... updating all of the copyright notices in webcit-ng
[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 }