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