-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
69 lines (58 loc) · 1.08 KB
/
styles.css
File metadata and controls
69 lines (58 loc) · 1.08 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
body {
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif
margin: 0;
padding: 0;
}
header {
background-color: rgb(220, 220, 220);
color: #4d9e6e;
text-align: center;
padding: 1em;
}
nav {
background-color: #4d9e6e;
color: white;
text-align: center;
padding: 0.5em;
}
nav ul {
list-style: none;
margin: 0;
padding: 0;
}
nav li {
display: inline;
margin: 0 10px;
color: whitesmoke;
}
#product-list {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
padding: 20px;
}
.product-card {
border: 1px solid #ddd;
border-radius: 5px;
padding: 15px;
margin: 15px;
width: 250px;
text-align: center;
transition: transform 0.3s;
}
.product-card:hover {
transform: scale(1.05);
}
.product-img {
max-width: 100%;
height: auto;
}
.buy-now-btn {
background-color: #4CAF50;
color: white;
padding: 10px;
border: none;
border-radius: 5px;
cursor: pointer;
margin-top: 10px;
}