-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
118 lines (100 loc) · 1.74 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
* {
font-family: Arial, sans-serif;
}
html, body{
min-height: 100%
}
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#title {
font-size: 28px;
margin-top: 10px;
width: 100%;
text-align: center;
}
#description {
margin-top: 25px;
}
#description a {
text-decoration: none;
color: #9b4d02;
text-align: center;
}
#mode {
border-radius: 10px;
padding: .5% 4%;
font-size: 17px;
}
#mode-container {
display: flex;
align-items: center;
justify-content: center;
width: 100%
}
#tooltip{
position: absolute;
visibility: hidden;
height: auto;
width: auto;
border: 1px solid whitesmoke;
border-radius: 10px;
padding: 1% 4%;
background-color: whitesmoke;
opacity: .8;
z-index: 999;
}
.canton {
stroke: lightgray;
}
.canton:hover {
opacity: .5;
cursor: pointer;
}
.slidecontainer {
width: 60%;
display: flex;
align-items: center;
}
.slidecontainer > label {
font-weight: bold;
}
.slidecontainer > label:first-child {
margin-right: 2%;
}
.slidecontainer > label:last-child {
margin-left: 2%;
}
.slider {
-webkit-appearance: none;
appearance: none;
width: 100%;
height: 25px;
background: #d3d3d3;
outline: none;
opacity: 0.7;
-webkit-transition: .2s;
transition: opacity .2s;
border-radius: 10px;
}
.slider:hover {
opacity: 1;
}
.slider::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 25px;
height: 25px;
background: #04AA6D;
cursor: pointer;
border-radius: 15px;
}
.slider::-moz-range-thumb {
width: 25px;
height: 25px;
background: #04AA6D;
cursor: pointer;
}