]> cgit.babelmonkeys.de Git - socialXMPP.git/blob - css/standard.css
(Coding) style
[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   padding: 1em;
34   width: 50%;
35   overflow: auto;
36 }
37
38 #ownInfo {
39   display: none;
40   background: lightgrey;
41   float: left;
42   padding: 1em;
43 }
44
45 #friends {
46   display: none;
47   padding: 1em;
48   background: grey;
49 }
50
51 #box-overlay {
52   background: black;
53   opacity: 0.8;
54   width: 100%;
55   height: 100%;
56   position: fixed;
57   top: 0;
58   left: 0;
59   display: none;
60 }
61
62 .vCardName {
63   font-weight: bold;
64 }
65
66 .friend {
67   float: left;
68   margin: 0.5em;
69   text-align: center;
70   min-width: 100px;
71   height: 100px;
72 }
73
74 .friend img, #vCard_container img {
75   max-width: 70px;
76   max-height: 70px;
77 }
78
79 .sender {
80   color: blue;
81 }
82
83 .receiver {
84   color: darkred;
85 }
86
87 .chat {
88   position: absolute;
89   background-color: white;
90   width: 30%;
91   padding: 1em;
92   border: 2px solid;
93 }
94
95 .chatForm {
96   width: 100%;
97 }
98
99 .chatTitle {
100   font-size: 15pt;
101   font-weight: bold;
102 }
103
104 .noMarker {
105   list-style-type: none;
106   display: inline;
107 }