-
Notifications
You must be signed in to change notification settings - Fork 0
/
keywords.css
93 lines (81 loc) · 1.38 KB
/
keywords.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
body {
font-family: "avenir next", Arial, sans-serif;
font-size: 12px;
color: #696969;
align-items: center;
}
#menu {
position: fixed;
left: 0;
top: 0;
width: 30em;
height: 100em;
margin-top: -2.5em;
background: #def6ff;
}
#play-button {
position: relative;
background: #f08080;
padding-right: 26px;
border-radius: 3px;
border: none;
color: white;
margin: 0;
padding: 0 12px;
width: 60px;
cursor: pointer;
height: 30px;
}
#play-button:hover {
background-color: #696969;
}
.ticks {
font-size: 10px;
}
.track,
.track-inset,
.track-overlay {
stroke-linecap: round;
}
.track {
stroke: #000;
stroke-opacity: 0.3;
stroke-width: 10px;
}
.track-inset {
stroke: #dcdcdc;
stroke-width: 8px;
}
.track-overlay {
pointer-events: stroke;
stroke-width: 50px;
stroke: transparent;
cursor: crosshair;
}
.handle {
fill: #fff;
stroke: #000;
stroke-opacity: 0.5;
stroke-width: 1.25px;
}
.root {
fill: #ffffff;
fill-opacity: 0.5;
stroke: rgb(31, 119, 180);
stroke-width: 1px;
}
text {
font: 10px sans-serif;
}
div.tooltip {
position: absolute;
text-align: center;
width: auto;
height: auto;
padding: 10px;
font: 14px sans-serif;
background: lightsteelblue;
border: 1px;
border-radius: 8px;
pointer-events: none;
}