-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
134 lines (107 loc) · 1.77 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
124
125
126
127
128
129
130
131
132
133
body
{
background-color: #666;
font-family: "DejaVu Sans", sans-serif;
font-size: 8pt;
margin: 10px;
padding: 0;
}
a
{
text-decoration: none;
font-weight: bold;
color: black;
}
a:hover
{
text-decoration: underline;
}
#container
{
margin: auto auto;
margin-top: 40px;
position: relative;
}
#viewport
{
margin-bottom: 10px;
position: relative;
}
#viewport canvas
{
background-color: #ccc;
}
#selectionNodeInfo
{
position: absolute;
bottom: 4px;
left: 4px;
}
#controls
{
position: absolute;
top: 0;
right: 0;
}
#selectionControls, #genericControls
{
margin-left: auto;
margin-bottom: 10px;
background-color: #ccc;
}
#selectionControls { display: none; }
#controls p { margin: 0; }
#controls h2
{
margin: 0;
margin-top: 0.5em;
font-size: 1em;
font-weight: bold;
}
#controls ul
{
list-style: none;
margin: auto;
margin-top: 0.7em;
margin-bottom: 20px;
}
#controls ul:last-child { margin-bottom: 0; }
#controls li { margin-bottom: 2px; }
#console
{
overflow: auto;
font-family: "DejaVu Sans Mono", monospace;
white-space: pre;
background-color: #ccc;
display: none;
}
#console p { margin: 0; }
/* Borders, padding, width/height */
#container { width: 955px; }
#viewport
{
border: 4px solid #000;
width: 800px;
height: 600px;
}
#controls { width: 140px; }
#controls ul
{
width: 110px;
padding: 0;
}
#selectionControls, #genericControls
{
border: 4px solid #000;
padding: 5px;
}
#controls input[type=button], #controls select { width: 110px; }
#controls input[type=text],
#controls input[type=range] { width: 60px; }
#console
{
border: 4px solid #000;
width: 790px;
height: 150px;
padding: 5px;
}