-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbase.css
119 lines (117 loc) · 1.69 KB
/
base.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
td{
padding: 0px;
margin: 0px;
border:none;
}
.main, html, body{
width: 100%;
height: 100%;
margin: 0px;
padding: 0px;
background-color: black;
color: #888;
font-family: sans-serif;
}
select, option, input, button{
color: white;
background-color: #333;
border: none;
/* width: 100px;*/
}
.logo{
position: absolute;
bottom: 10px;
left: 10px;
font-size: 12px;
}
.view{
position: absolute;
top: 0px;
left: 0px;
right: 400px;
bottom: 0px;
}
canvas{
position: absolute;
left: 0px;
top: 0px;
right: 0px;
bottom: 0px;
}
.menuPane{
position: absolute;
right: 0px;
bottom: 0px;
height: 350px;
width: 380px;
border-top: 3px solid #fff;
font-size:13px;
padding: 10px;
line-height: 18px;
}
a{
color:#fff;
}
h2{
font-size: 11px;
color: #999;
margin: 2px;
padding: 0px;
}
form{
margin: 2px;
background-color: #111;
}
.treePane{
position: absolute;
right: 0px;
top: 0px;
bottom: 370px;
width: 400px;
overflow: hidden;
}
.console{
height: 100%;
width: 100%;
margin: 0px;
padding: 0px;
border:0px;
color: #fff;
background-color: #000;
}
#progress{
background-color:black;
font-size: 12px;
position: absolute;
width: 0%;
height: 20px;
width: 100%;
left: 0px;
bottom: 0px;
display: none;
}
#progress .cancel{
color: #fff;
position: absolute;
right: 5px;
top: 2px;
}
#progress>div{
position: absolute;
top: 0px;
bottom: 0px;
left: 0px;
right: 0px;
border: 1px solid #fff;
}
#progressBar{
position: absolute;
left: 2px;
top: 2px;
bottom:2px;
background-color: #fff;
}
#progressName{
color: #000;
text-decoration: blink;
}