-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
50 lines (47 loc) · 785 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
html, body {
font-size: 14px;
}
.ui.dropdown {
z-index: 1111;
}
.drawing.segment {
min-height: 700px;
height: 90vh;
}
.Hausdorff0 {
stroke: #D2691E;
opacity: 0.4;
stroke-width: 6;
fill: none;
}
.Hausdorff1 {
opacity: 0.4;
stroke: black;
stroke-width: 6;
fill: none;
}
/* Slider style */
.slider {
-webkit-appearance: none;
appearance: none;
width: 90%;
height: 10px;
background: #FFFFFF;
outline: none;
opacity: 0.7;
-webkit-transition: .2s;
transition: opacity .2s;
margin: 15px;
}
.slider:hover {
opacity: 1;
}
.slider::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
border-radius: 3px;
width: 15px;
height: 25px;
background: #2185d0;
cursor: cursor;
}