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