-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
90 lines (79 loc) · 1.51 KB
/
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
.dark-background {
background-color: green;
}
.text-color {
color: orange;}
body {
background-color:rgb(188, 143, 169);
}
.flex-container {
margin-top: 20px;
display: flex;
flex-wrap: nowrap;
width: 100%;
height: 600px;
justify-content: center;
transition: 2s all ease;
}
.flex-item {
background: orange;
border: 1pt solid black;
width: 10px;
transition: 0.1s all ease;
}
.row {
display: grid;
grid-template-columns: 1fr 1fr 2fr;
}
#input-panel {
margin-top: 50px;
}
.center {
display: flex;
justify-content: center;
margin: auto;
}
#sorting {
margin-bottom: 50px;
transform: rotate(180deg) scaleX(-1);
}
.range-input {
box-sizing: border-box;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
align-items: center;
border-radius: 10px;
line-height: 50px;
display: flex;
vertical-align: middle;
height: 50px;
}
.range-input input {
-webkit-appearance: none;
width: 200px;
height: 2px;
background-color: orange;
position: absolute;
top: 50%;
}
.range-input input::-webkit-slider-thumb {
-webkit-appearance: none;
width: 20px;
height: 20px;
background-color: #eee;
border: 2px solid yellow;
border-radius: 50%;
outline: none;
}
.range-input input::-webkit-slider-thumb:hover {
background-color: orangered;
}
.range-input .label{
color: white;
font-weight:600;
display: flex;
height: 35px;
line-height: 35px;
margin: auto;
}