-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
54 lines (53 loc) · 958 Bytes
/
styles.css
File metadata and controls
54 lines (53 loc) · 958 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
53
54
body {
font-family: 'Segoe UI', sans-serif;
margin: 0;
background-color: #f5f5f5;
color: #333;
}
header {
background-color: #0a1f44;
color: white;
padding: 1rem;
text-align: center;
}
nav {
background-color: #162e63;
display: flex;
justify-content: center;
padding: 0.5rem;
}
nav a {
color: white;
margin: 0 1rem;
text-decoration: none;
font-weight: bold;
}
nav a:hover {
text-decoration: underline;
}
section {
padding: 2rem;
}
.product-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 1rem;
}
.product {
background-color: white;
border-radius: 8px;
box-shadow: 0 2px 6px rgba(0,0,0,0.1);
padding: 1rem;
text-align: center;
}
.product img {
max-width: 100%;
border-radius: 6px;
}
footer {
background-color: #0a1f44;
color: white;
text-align: center;
padding: 1rem;
margin-top: 2rem;
}