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
49
50
51
52
| body {
| width : 98%;
| height : 100%;
| overflow : hidden;
| background: rgb(240, 240, 240);
| }
|
| .top {
| width : 100%;
| height : 50px;
| background : rgb(240, 240, 240);
| /* background : url(../img/head_bg.jpg) no-repeat */
| }
|
| .secondworld {
| width : 15%;
| font-size : 30px;
| /* font-weight : bold; */
| vertical-align : middle;
| text-align : center;
| }
|
| .curserver {
| width : 60%;
| font-size : 25px;
| /* font-weight: bold; */
| }
|
| .user {
| width : 25%;
| text-align: right;
| }
|
| .left {
| float : left;
| width : 15%;
| height : 95%;
| overflow: scroll;
| }
|
| .right {
| float : right;
| width : 85%;
| height: 95%;
| }
|
| .right iframe {
| float : left;
| width : 100%;
| height: 100%;
| border: 1px solid rgb(204, 204, 204);
| }
|
|