-
Notifications
You must be signed in to change notification settings - Fork 0
/
newArrival.css
120 lines (117 loc) · 2.01 KB
/
newArrival.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
body{
background-color: #E8E8E8;
margin:0;
padding: 0;
box-sizing: border-box;
}
#new{
background-color: #fff;
width: 100%;
height:150px;
font-size: 20px;
text-align: center;
font-family: sans-serif;
padding-top: 10px;
margin-bottom: 10px;
}
#main{
display: flex;
/* justify-content: space-between; */
gap: 10px;
width: 90%;
margin: auto;
}
#category{
width: 30%;
padding-left: 5px;
background-color: #fff;
height: fit-content;
}
#category select{
margin-top: 10px;
font-size: 15px;
}
select:last-child{
margin-bottom: 10px;
}
#container{
margin-top: 20px;
width: 100%;
display: grid;
grid-template-columns: repeat(4,1fr);
gap:10px;
}
.cardDiv{
background-color: #fff;
height: fit-content;
}
#last{
display: flex;
justify-content: space-between;
}
#small{
display: flex;
}
#load{
width: 100px;
height: 100px;
margin: auto;
}
#load img{
width: 100%;
}
#func{
padding: 2% 1%;
height: 150px;
background-color: #fff;
width: 100%;
}
#func button{
background-color: #fff;
border: 1px solid lightgrey;
border-radius: 5px;
padding: 1px;
height: 35px;
}
.grey{
color: grey;
}
@media screen and (max-width: 480px){
body{
background-color: #E8E8E8;
margin:0;
padding: 0;
box-sizing: border-box;
}
#new{
width: 100%;
height: 100px;
}
#main{
display: flex;
/* justify-content: space-between; */
gap: 10px;
width: 90%;
margin: auto;
}
#category{
display: none;
/* width: 30%;
padding-left: 5px;
background-color: #fff;
height: fit-content; */
}
#func{
padding: 2% 1%;
height: 150px;
background-color: #fff;
width: 100%;
}
#container{
margin-top: 20px;
width: 100%;
display: grid;
grid-template-columns: repeat(1,1fr);
gap:10px;
}
}