-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdraw.css
55 lines (50 loc) · 783 Bytes
/
draw.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
input[type="number"] {
width: 5em;
margin-right: 2em;
padding: 0.2em;
border: 1px solid lightgray;
}
input[type="range"] {
vertical-align: middle;
}
button, input[type="text"] {
padding: 0.4em;
border: 1px solid lightgray;
}
button:hover {
box-shadow: 2px 2px 4px lightgray;
}
#viewControls {
position: fixed;
border: 1px solid gray;
margin: 0;
padding: 1em;
box-sizing: border-box;
box-shadow: 4px 4px 8px lightgray;
}
#timeline {
margin-top: 70px;
}
#fileInput {
display: none;
}
.buttonAdd {
background: lightgreen;
}
.buttonRemove {
background: red;
color: white;
}
.buttonImport {
background: cyan;
}
.buttonExport {
background: orange;
}
.spacer1 {
display: inline;
width: 1px !important;
height: 1px !important;
margin: 0;
margin-left: 100px;
}