-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
66 lines (49 loc) · 953 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
56
57
58
59
60
61
62
63
64
65
66
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.container {
background: url(images/free.jpg) no-repeat center;
background-size: cover;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
filter: brightness(50%);
}
.brightness-box {
width: 400px;
height: 60px;
background: #f9f9f9;
border-radius: 8px;
padding: 0 20px;
display: flex;
align-items: center;
justify-content: space-between;
}
.brightness-box i {
margin: 0 10px;
}
#range {
cursor: pointer;
width: 100%;
height: 3px;
background: #0a85ff;
outline: none;
}
#range::-webkit-slider-thumb {
-webkit-appearance: none;
background: #333;
width: 22px;
height: 22px;
border-radius: 50%;
cursor: pointer;
}
#numberValue {
border-left: 1px solid black;
width: 35px;
height: 35px;
padding: 10px;
text-align: center;
}