-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhome.css
62 lines (52 loc) · 795 Bytes
/
home.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
body {
background-color: #222831;
padding:0;
margin:0;
}
#header {
width:100%;
position:relative;
top:0;
background-color:#d65a31;
height:60px;
margin:0;
color:white;
display:flex;
justify-content: space-around;
align-items:center;
}
#sorting-panel {
width:100%;
background-color: #393e46;
padding:30px;
}
#sort-container {
height:420px;
width:auto;
display:flex;
align-items:flex-end;
}
.bar {
width:5px;
background-color: beige;
}
#label {
color:white;
}
#list {
height: 50px;
}
button {
width:100px;
height:50px;
}
@media screen and (max-width: 700px) {
.bar{
width: 3.5px;
}
}
@media screen and (max-width: 500px) {
.bar{
width: 2.5px;
}
}