_layout.css
839 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
.service-chat {
/* -------------------------------- *\
atom, util
\* -------------------------------- */
.table {
display: table;
width: 100%;
}
.table-cell {
display: table-cell;
vertical-align: middle;
&.cell-max {
width: 6666px;
}
}
.main-wrap {
position: static;
}
#chat-window,
#chat-footer {
max-width: 750px;
}
#chat-header {
height: 85px;
background-color: #3e3e3e;
}
#chat-window {
position: absolute;
top: 85px;
bottom: 100px;
width: 100%;
background-color: #f0f0f0;
}
#chat-footer {
position: absolute;
bottom: 0;
width: 100%;
height: 100px;
background-color: #f7f7f7;
}
}