-
Notifications
You must be signed in to change notification settings - Fork 0
/
ring.css
88 lines (71 loc) · 1.4 KB
/
ring.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
#mainBox {
margin: 0px 120px 0px 120px;
font-family: sans-serif;
}
img {
width: 100%;
height: 250px;
}
select {
height: 35px;
width: 18%;
margin-left: 10px;
}
#container {
text-align: center;
display: grid;
width: auto;
grid-template-columns: repeat(4, 1fr);
gap: 40px;
padding: 30px;
justify-content: center;
}
#container>div {
box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
justify-content: space-around;
}
#container>div:hover {
box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
cursor: pointer;
}
#bestpricepar {
font-size: 19px;
color: black;
}
span {
font-size: 14px;
color: rgb(194, 184, 184);
}
div>p {
color: #666262;
font-family: "avenir next lt pro", sans-serif;
}
p:nth-child(4) {
font-size: 10px;
color: coral;
font-weight: bold;
}
p:nth-child(5) {
font-size: 13px;
}
p:nth-child(6) {
font-size: 14px;
}
select {
cursor: pointer;
}
#z {
font-size: 12px;
color: gray;
}
/* media queries */
@media all and (min-width: 480px) and (max-width:700px) {
#container {
grid-template-columns: repeat(2,1fr);
}
}
@media all and (min-width: 60px) and (max-width:480px) {
#container {
grid-template-columns: repeat(1,1fr);
}
}