-
Notifications
You must be signed in to change notification settings - Fork 0
/
dynamic_grid.css
62 lines (55 loc) · 1000 Bytes
/
dynamic_grid.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 {
font-family: "Montserrat", sans-serif;
}
.section_heading {
padding-top: 25px;
margin-top: 10px;
color: rgb(27, 25, 25);
/* border: 2px solid red; */
}
.container {
/* border: 2px solid black; */
margin-top: 20px;
height: 700px;
padding: 50px;
display: flex;
box-sizing: border-box;
padding-left: 190px;
}
.item {
/* border: 2px solid black; */
width: 15%;
min-width: 200px;
height: auto;
margin: 30px 10px;
margin-bottom: 110px;
box-sizing: border-box;
}
.item:hover {
cursor: pointer;
box-shadow: 0 2px 10px rgb(0 0 0 / 30%);
}
.image {
height: 70%;
width: 100%;
}
.title {
/* border: 2px solid blue; */
margin-top: 20px;
margin-right: 25px;
margin-left: 10px;
font-size: 16px;
font-weight: 400;
letter-spacing: 0.5px;
color: rgb(27, 25, 25);
box-sizing: border-box;
}
.brand {
/* border: 2px solid green; */
font-size: 12px;
color: rgb(110, 110, 110);
}
.price {
color: green;
/* border: 2px solid red; */
}