-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
73 lines (72 loc) · 1.17 KB
/
style.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
71
72
73
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
line-height: 1.6;
color: #333;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 2rem;
background: #222;
color: #fff;
}
header .logo {
font-size: 1.5rem;
font-weight: bold;
}
header nav a {
margin: 0 1rem;
color: #fff;
text-decoration: none;
}
header nav a:hover {
text-decoration: underline;
}
.hero {
text-align: center;
background: #f4f4f4;
padding: 2rem;
}
.hero h1 {
margin-bottom: 1rem;
}
.hero .btn {
display: inline-block;
padding: 0.5rem 1rem;
background: #007BFF;
color: #fff;
text-decoration: none;
border-radius: 5px;
margin-top: 1rem;
}
.hero .btn:hover {
background: #0056b3;
}
.content, .products, .contact {
padding: 2rem;
}
.product-list {
display: flex;
gap: 1rem;
}
.product-item {
border: 1px solid #ccc;
padding: 1rem;
text-align: center;
}
.product-item img {
max-width: 100%;
height: auto;
}
footer {
text-align: center;
padding: 1rem;
background: #222;
color: #fff;
}