Use overflow:hidden style to keep the user avatar photo from breaking through the...
[citadel.git] / webcit-ng / static / css / webcit.css
1 /* Copyright (c) 1996-2021 by Art Cancro and the citadel.org team.
2 ** This program is open source software.  You can redistribute it and/or
3 ** modify it under the terms of the GNU General Public License, version 3.
4 */
5
6 html,body,h1,h2,h3,h4,h5 {
7         font-family: verdana, sans-serif
8 }
9
10 .ctdl-msg-reading-pane {
11         background-color: #123456;
12 }
13
14 .ctdl-msg-wrapper {
15         overflow: hidden;
16         border-radius: 25px;
17         background-color: white;
18         margin-left: 4px;
19         margin-top: 4px;
20         margin-bottom: 4px;
21         margin-right: 4px;
22         padding: 4px;           /* inside the box */
23 }
24
25 .ctdl-avatar {
26         width: 32px;
27 }
28
29 .ctdl-username {
30         font-weight: bold;
31         color: #000055;
32         padding: 4px;
33 }
34
35 .ctdl-username a {
36         text-decoration: none;
37 }
38
39 .ctdl-msg-content {
40         margin-left: 32px;
41 }
42
43 .ctdl-avatar {
44         float: left;
45         padding-right: 2px;
46 }