-
Notifications
You must be signed in to change notification settings - Fork 0
/
style5.css
70 lines (59 loc) · 1.01 KB
/
style5.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
63
64
65
66
67
68
69
70
body {
margin: 0;
font-family: Arial, sans-serif;
color: #333;
}
header {
background-color: #444;
color: #fff;
padding: 10px 20px;
display: flex;
justify-content: space-between;
align-items: center;
}
header .logo {
font-size: 1.5em;
font-weight: bold;
}
nav a {
color: #fff;
margin-left: 20px;
text-decoration: none;
}
nav a:hover {
text-decoration: underline;
}
.hero {
background: url('hero-phone-case.jpg') center/cover no-repeat;
color: #fff;
text-align: center;
padding: 100px 20px;
}
.hero .btn {
display: inline-block;
margin-top: 20px;
background: #e67e22;
color: #fff;
padding: 10px 20px;
text-decoration: none;
}
.hero .btn:hover {
background: #d35400;
}
.content {
padding: 20px;
}
.product-grid {
display: flex;
gap: 20px;
flex-wrap: wrap;
}
.product {
border: 1px solid #ccc;
padding: 10px;
width: calc(33% - 20px);
text-align: center;
}
.product img {
max-width: 100%;
}