-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
91 lines (79 loc) · 1.71 KB
/
style.css
File metadata and controls
91 lines (79 loc) · 1.71 KB
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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;800&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: #19222c;
font-family: 'Poppins', sans-serif;
}
h1 {
font-size: 2rem;
color: #FFF;
font-weight: 600;
}
h3 {
font-size: 1.5rem;
color: #FFF;
font-weight: 600;
}
.double-slider-box {
margin-top: 20px;
padding: 120px 40px;
border-radius: 10px;
background-color: #222e3c;
}
.price-slider {
margin: 30px 0;
display: flex;
align-items: center;
flex-wrap: wrap;
}
.input-wrapper {
position: relative;
display: flex;
margin: 0 15px;
min-width: 300px;
}
.input-wrapper input {
-webkit-appearance: none;
height: 2rem;
outline: none;
border: none;
width: 100%;
}
.input-wrapper input[type="range"]::-moz-range-thumb {
-moz-appearance: none;
border: 1rem solid #FFF;
background: #FFF;
pointer-events: auto;
cursor: pointer;
border-radius: 10px;
}
.input-wrapper input[type="range"]::-webkit-slider-thumb {
-webkit-appearance: none;
width: 3rem;
height: 3rem;
border: 1rem solid #FFF;
background: #FFF;
pointer-events: auto;
cursor: pointer;
border-radius: 10px;
}
.tooltip {
background-color: #3b7ddd;
color: #FFF;
border-radius: .25rem;
bottom: 120%;
position: absolute;
left: 50%;
transform: translateX(-50%) translateY(-50%);
font-weight: 600;
padding: 10px;
}