-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplay.css
56 lines (48 loc) · 791 Bytes
/
play.css
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
53
54
55
56
#game_frame {
display: block;
width: 100%;
height: 480px;
margin: 0 auto;
}
#chatbox {
height: 617px;
}
#messages {
margin-right: 1px;
width: 283px;
height: 70%;
border: 2px solid black;
overflow-y: auto;
}
#chatInputContainer {
width: auto;
height: 26px;
margin-right: 1px;
margin-top: 2px;
margin-bottom: 5px;
}
#chatInput {
width: -webkit-calc(100% - 7px);
width: -moz-calc(100% - 7px);
width: calc(100% - 7px);
height: 26px;
border: 1px solid black;
}
#enterNameContainer {
margin-right: 1px;
width: auto;
height: auto;
border: 2px solid black;
}
.message {
word-wrap: break-word;
border: 1px solid #b0b0b0;
}
table, tr, td {
border: 1px solid black;
}
table {
width: 1000px;
margin: 0 auto;
height: 623px;
}