-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
166 lines (141 loc) · 2.55 KB
/
index.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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
@media (min-width: 740px) {
body {
width: 712px;
margin: 0 auto;
}
}
body {
background: #f9f9f9;
padding: 12px;
}
#noSupport {
border: 4px solid red;
padding: 8px;
display: none;
}
#noSupport #noWorkerSupport, #noSupport #noSVGSupport {
display: none;
}
#title {
font-size: 2.5em;
margin-bottom: 16px;
}
#controls {
position: relative;
margin-bottom: 16px;
}
#controlsTitle {
padding: 6px;
padding-bottom: 1px;
border: 1px solid #c3c3c3;
border-bottom: none;
display: inline-block;
background: white;
}
#confInput {
padding: 1.5em 0em 1.5em 1.5em;
border: 1px solid #c3c3c3;
background: white;
display: inline-block;
}
#confInput label {
width: 140px;
display: inline-block;
margin-bottom: 12px;
position: relative;
}
#confInput input[type="text"] {
width: 5em;
position: absolute;
left: 2em;
background: #fafafa;
}
form.conditionsInput {
float: left;
}
form#conditionsSubmit {
clear: both;
float: left;
}
#runControls {
background: white;
border: 6px solid black;
border-bottom: none;
display: inline-block;
padding: 6px;
}
#runControls input[type="button"] {
width: 7em;
margin: 0px 12px 0px 0px;
}
#controlsHelp {
padding: 12px;
min-height: 220px;
border: 1px solid #c3c3c3;
position: absolute;
left: 8px;
right: 8px;
/* top is computed by javascript since we don't know heights before
rendering */
background-color: rgba(255,255,255,.95);
visibility: hidden;
z-index: 5;
}
#controlsHelp p {
margin: 0 4px 0 0;
}
#controlsHelp svg {
float: right;
}
#configHelpButtonSVG {
position: absolute;
cursor: pointer;
bottom: 10px;
right: 8px;
}
#pendula {
border: 6px solid black;
position: relative;
padding-top: 100%;
}
#test {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
#getSVG {
margin: 16px 0px;
width: 100%;
}
#getSVG input {
border: 2px solid black;
margin-bottom: -2px;
}
#getSVG textarea {
box-sizing: border-box;
width: 100%;
}
#getSVGHeader {
position: relative;
}
#getSVGHelpButtonSVG {
position: absolute;
cursor: pointer;
bottom: 0px;
right: 8px;
}
#getSVGHelpText {
position: absolute;
left: 8px;
right: 8px;
border: 1px solid #c3c3c3;
/* top is computed by javascript since we don't know heights before
rendering. */
visibility: hidden;
background: white;
}
#getSVGHelpText p {
margin: 8px;
}