-
Notifications
You must be signed in to change notification settings - Fork 0
/
page3.css
59 lines (55 loc) · 1.42 KB
/
page3.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
#container3{
display: grid;
grid-template-columns: repeat(4,1fr);
grid-template-rows: auto;
gap: 8px;
/* margin-top: 2%; */
}
#container3>div{
box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px, rgba(0, 0, 0, 0.07) 0px 2px 2px, rgba(0, 0, 0, 0.07) 0px 4px 4px, rgba(0, 0, 0, 0.07) 0px 8px 8px, rgba(0, 0, 0, 0.07) 0px 16px 16px;
text-align: center;
}
#container3>div:hover{
cursor: pointer;
background-color: rgb(218, 193, 159);
box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}
#container3>div>img{
width:70%;
}
#container3>div>img:hover{
width: 75%;
}
button{
width: 150px;
height: 25px;
background-color: rgb(170, 187, 182);
border-radius: 20px;
margin-bottom: 5%;
}
button:hover{
cursor: pointer;
color: rgb(51, 9, 9);
font-weight: bold;
background-color: rgb(57, 79, 121);
}
#sortprice {
display: flex;
justify-content: center;
}
.select3 {
border: 1px solid white;
margin-left: 5%;
}
/* Medium screens */
@media all and (min-width: 451px) and (max-width: 750px) {
#container3{
grid-template-columns: repeat(2,1fr);
}
}
/* Small screens */
@media all and (min-width: 100px) and (max-width: 450px) {
#container3{
grid-template-columns: repeat(1,1fr);
}
}