-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
55 lines (51 loc) · 889 Bytes
/
style.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
svg {
position: relative;
border: solid 1px black;
}
svg line#segment1 {
stroke: skyblue;
stroke-linecap: round;
stroke-width: 5;
}
svg line#segment2 {
stroke: mediumpurple;
stroke-linecap: round;
stroke-width: 5;
}
/* Gripper */
.draggable {
cursor: move;
stroke: #252525; /* background colour */
stroke-width: 5px;
fill: white;
}
/* Slider */
input[type=range]:focus {
outline: none;
}
input[type=range] {
cursor: pointer;
height: 30px;
margin: 0;
}
.row {
height: 30px;
margin-top: 5px;
}
.row span {
display: inline-block;
vertical-align: top;
height: 30px;
line-height: 30px;
border-radius: 3px;
padding: 0 5px;
font-family: "OpenSansRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: bold;
color: ghostwhite;
}
span#label1 {
background-color: skyblue;
}
span#label2 {
background-color: mediumpurple;
}