]> git.babelmonkeys.de Git - socialXMPP.git/blob - css/standard.css
Fix chat bubbles
[socialXMPP.git] / css / standard.css
1 #login {
2   text-align: center;
3 }
4
5 #log_container {
6   clear: both;
7 }
8
9 #vCard_container {
10   display: none;
11   position: fixed;
12   height: 100%;
13   width: 100%;
14 }
15
16 #vCard {
17   background: white;
18   text-align: center;
19   margin: 2em auto;
20   width: 50%;
21   overflow: auto;
22 }
23
24 #ownInfo {
25   display: none;
26   background: lightgrey;
27   float: left;
28   padding: 1em;
29 }
30
31 #friends {
32   display: none;
33   max-width: 50%;
34   padding: 1em;
35   background: grey;
36   float: left;
37 }
38
39 #box-overlay {
40   background: black;
41   opacity: 0.8;
42   width: 100%;
43   height: 100%;
44   position: fixed;
45   top: 0;
46   left: 0;
47   display: none;
48 }
49
50 .vCardName {
51   font-weight: bold;
52 }
53
54 .friend {
55   float: left;
56   margin: 0.5em;
57   text-align: center;
58   max-width: 10em;
59 }
60
61 .friend img, #vCard_container img {
62   max-width: 70px;
63   max-height: 70px;
64 }
65
66 .sender {
67   color: blue;
68 }
69
70 .receiver {
71   color: darkred;
72 }
73
74 .chat {
75   position: absolute;
76   background-color: white;
77   width: 30%;
78   padding: 1em;
79   border: 2px solid;
80 }
81
82 .chatForm {
83   width: 100%;
84 }
85
86 .chatTitle {
87   font-size: 15pt;
88   font-weight: bold;
89 }
90
91 .noMarker {
92   list-style-type: none;
93   display: inline;
94 }