-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.css
129 lines (109 loc) · 1.93 KB
/
popup.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
119
120
121
122
123
124
125
126
127
128
129
*
{
}
*::selection {
background-color: rgba(200, 200, 200, 0.3);
}
html {
}
body{margin:0;}
header
{
position: absolute;
top: 0px;
background-color: #222;
margin: 0;
padding: 0;
width: 100%;
}
header h1
{
color: white;
text-align: center;
padding-top: 1px;
padding-bottom: 3px;
}
.content {
margin: 25px 5px 5px 5px;
text-align: center;
padding-top: 40px;
padding-bottom: 5px;
padding-left: 20px;
padding-right: 20px;
border-style: none dashed dashed dashed;
border-width: 2px;
border-color: #d3d3d3;
}
p {
margin-bottom: 12px;
font-size: 15px;
}
h2 {
margin-bottom: 5px;
}
.slider_container {
position: relative;
padding-bottom: 8px;
}
.labels {
position: absolute;
width: 100%;
top: 6px;
pointer-events: none;
}
.label {
position: relative;
font-size: 12px;
color: white;
width: 32%;
display: inline-block;
pointer-events: none;
margin: 0;
font-weight: bold;
}
.label.w2 {
width: 49%;
}
.slider {
-webkit-appearance: none;
appearance: none;
background-color: #d3d3d3;
outline: none;
min-width: 300px;
border-radius: 5px;
transition-duration: .2s;
}
.slider:hover {
background-color: #c9c9c9;
cursor: pointer;
/* Cursor on hover */
}
.slider::-webkit-slider-thumb {
-webkit-appearance: none;
/* Override default look */
appearance: none;
width: 33.3333%;
/* Set a specific slider handle width */
height: 25px;
/* Slider handle height */
background-color: #0390fc;
/* Green background */
cursor: pointer;
/* Cursor on hover */
border-radius: 5px;
transition-duration: .2s;
}
.slider.w2::-webkit-slider-thumb {
width: 50%;
}
.slider::-webkit-slider-thumb:hover {
background-color: #007cdb;
}
a {
color: #0390fc;
transition-duration: 0.1s;
}
a:hover {
color: #007cdb;
font-weight: bold;
}