-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
98 lines (73 loc) · 1.14 KB
/
styles.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
html, body {
width: 100%;
height: 100%;
margin: 0px;
padding: 0px;
background: #121212;
}
.app, .editor {
height: 93%;
-moz-user-select: none;
user-select: none;
color: white;
}
path {
stroke: purple;
fill: none;
}
.state {
position: fixed;
opacity: 0.4;
top: 1.5em;
white-space: pre;
font-size: 0.8em;
}
.record {
border: none;
width: 45px;
height: 45px;
margin: 2px;
padding: 2px;
color: #EEE;
background: #C84141;
border-radius: 45px;
}
.play {
width: 0;
height: 0;
background-color: #333;
border-style: solid;
border-width: 17px 0 17px 35px;
border-color: transparent transparent transparent #6EDC5F;
margin: 5px;
border: 5px 2px solid green;
}
.controls {
display: flex;
height: 21%;
background: #333;
justify-content: flex-end;
}
.buttons {
display: flex;
flex-direction: column;
}
.main {
display: flex;
height: 100%;
}
.animations {
background: #CCC;
color: black;
width: 10%;
}
.animation {
margin: 5px;
border: 1px solid lightgray;
border-radius: 2px;
padding: 5px 3px;
background: #bbb
}
.animation.selected {
background: #888;
}