forked from floatinghotpot/casino-server
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.css
123 lines (103 loc) · 1.46 KB
/
main.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font: 13px Helvetica, Arial;
}
div#env {
display: inline-block;
width: 60%;
height: 100%;
border:1px solid black;
position: fixed;
left: 0;
}
div#logs {
display: inline-block;
width: 40%;
height: 100%;
border:1px solid black;
position: fixed;
right: 0;
}
div#cmds {
width: 100%;
position: fixed;
bottom: 0;
}
form {
background: #000;
color: #fff;
padding: 3px;
position: fixed;
bottom: 0;
width: 100%;
}
form input#m {
border: 0;
padding: 10px;
width: 40%;
margin-right: .5%;
}
form button#send {
width: 5%;
background: rgb(130, 224, 255);
border: 1px solid black;
padding: 10px;
}
div.dialog {
display: inline-block;
border: 1px solid gray;
vertical-align: top;
background: silver;
color: black;
}
div.dlgheader {
text-align: right;
background: gray;
}
div.dlgfooter {
text-align: right;
}
div.cmd {
display: inline-block;
}
button.cmd {
background: rgb(130, 224, 255);
border: 1px solid black;
padding: 10px;
margin: 3px;
}
label.cmd {
width: 80px;
padding: 5px;
margin: 3px;
}
input.cmd {
padding: 5px;
margin: 3px;
}
.list ul {
list-style-type: none;
margin: 0;
padding: 0;
}
.list li {
padding: 1px 10px;
}
.list li:nth-child(odd) {
background: #eee;
}
li.active, div.active {
background: yellow;
}
li.active, div.active {
background: yellow;
border: 1px solid black;
}
li.inactive, div.inactive {
background: gray;
border: 1px solid black;
}