-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshop.css
More file actions
52 lines (45 loc) · 796 Bytes
/
Copy pathshop.css
File metadata and controls
52 lines (45 loc) · 796 Bytes
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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
header {
background-color: #4CAF50;
color: white;
text-align: center;
padding: 10px;
}
.categories {
display: flex;
justify-content: center;
margin: 20px 0;
}
.categories button {
background-color: #4CAF50;
border: none;
color: white;
padding: 10px 20px;
margin: 0 5px;
cursor: pointer;
}
.categories button:hover {
background-color: #45a049;
}
.products {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
margin: 20px;
}
.product {
background-color: white;
border: 1px solid #ddd;
padding: 20px;
width: 200px;
text-align: center;
}
.product h3 {
margin-top: 0;
}