-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
76 lines (65 loc) · 1.28 KB
/
style.css
File metadata and controls
76 lines (65 loc) · 1.28 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
body {
height: 100vh;
overflow-y: hidden;
}
.flex-container {
display: flex;
flex-wrap: nowrap;
width: 100%;
height: 550px;
justify-content: center;
transition: 2s all ease;
}
.flex-item {
background: #e43f5a;
width: 10px;
margin: 0 1px;
transition: 0.1s all ease;
}
.row {
display: grid;
grid-template-columns: 1fr 1fr 2fr;
}
.center {
display: flex;
justify-content: center;
}
#sorting {
transform: rotate(180deg) scaleX(-1);
}
.range-input {
box-sizing: border-box;
align-items: center;
border-radius: 10px;
line-height: 50px;
display: flex;
justify-content: center;
vertical-align: middle;
}
.range-input input {
width: 200px;
height: 2px;
background-color: salmon;
}
.range-input input,
.range-input input::-webkit-slider-thumb {
-webkit-appearance: none;
}
.range-input input::-webkit-slider-thumb {
width: 20px;
height: 20px;
background-color: white;
border: 1px solid;
border-radius: 50%;
outline: none;
}
.range-input .label {
font-weight: 600;
display: flex;
align-items: center;
height: 35px;
line-height: 35px;
}
button:hover {
border: 1px solid;
}