blob: c7989ca4cddb28d2a19879615b24454deeb32f40 (
plain)
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
|
#chat-wrapper {
position: absolute;
z-index: 1000000;
right: 100px;
bottom: 100px;
height: 40px;
width: 300px;
}
.divDragTitle {
left: 50% !important;
margin-left: -250px !important;
}
.divDragContent {
z-index: 666;
left: 50% !important;
margin-left: -250px !important;
}
#vipinfo {
position: absolute;
z-index: 100000;
right: 50px;
bottom: 125px;
background: #fff;
padding: 10px;
opacity: 0.75;
}
|