-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
122 lines (103 loc) · 1.83 KB
/
Copy pathstyles.css
File metadata and controls
122 lines (103 loc) · 1.83 KB
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
121
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #333;
}
.container {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-template-rows: repeat(7, 100px);
gap: 10px;
width: 80%;
max-width: 800px;
}
.item {
display: flex;
justify-content: center;
align-items: center;
font-size: 1rem;
color: white;
font-weight: bold;
}
.image {
background-color: #3b82f6;
grid-column: 1 / 3;
grid-row: 1 / 3;
}
.price {
background-color: #fbbf24;
grid-column: 3 / 4;
grid-row: 1 / 2;
}
.rating {
background-color: #f472b6;
grid-column: 4 / 5;
grid-row: 1 / 2;
}
.description {
background-color: #34d399;
grid-column: 3 / 5;
grid-row: 2 / 3;
}
.title {
background-color: #a78bfa;
grid-column: 1 / 5;
grid-row: 3 / 4;
}
.reviews {
background-color: #3b82f6;
grid-column: 1 / 3;
grid-row: 4 / 5;
}
.features {
background-color: #34d399;
grid-column: 3 / 5;
grid-row: 4 / 5;
}
.availability {
background-color: #a78bfa;
grid-column: 1 / 2;
grid-row: 5 / 6;
}
.payment {
background-color: #34d399;
grid-column: 2 / 3;
grid-row: 5 / 6;
}
.delivery {
background-color: #fbbf24;
grid-column: 3 / 4;
grid-row: 5 / 6;
}
.contact {
background-color: #3b82f6;
grid-column: 4 / 5;
grid-row: 5 / 6;
}
.warranty {
background-color: #a78bfa;
grid-column: 1 / 3;
grid-row: 6 / 7;
}
.sizes {
background-color: #f472b6;
grid-column: 3 / 5;
grid-row: 6 / 7;
}
.material {
background-color: #a78bfa;
grid-column: 1 / 4;
grid-row: 7 / 8;
}
.related {
background-color: #f97316;
grid-column: 4 / 5;
grid-row: 7 / 8;
}