-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css.css
More file actions
77 lines (77 loc) · 1.44 KB
/
Copy pathstyles.css.css
File metadata and controls
77 lines (77 loc) · 1.44 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
69
70
71
72
73
74
75
76
77
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-image:image1;
}
header, footer {
background-color: #9a2020;
padding: 20px;
}
nav ul {
list-style: none;
display: flex;
gap: 20px;
padding: 0;
}
nav ul li {
display: inline;
}
.hero {
background: url('https://via.placeholder.com/1600x600') no-repeat center center/cover;
color:darkblue; padding: 100px 20px; text-align: center;
}
.hero h1 {
font-size: 3em;
margin-bottom: 10px; }
.hero p {
font-size: 1.5em;
margin-bottom: 20px; }
.cta {
padding: 10px 20px;
margin: 5px;
font-size: 1em;
border: none;
cursor: pointer;
}
.collections, .best-sellers, .promo, .testimonials, .newsletter {
padding: 50px 20px;
text-align: center;
}
.grid {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
}
.card {
border: 1px solid #ddd; padding: 20px; width: 200px; }
.promo {
display: flex;
flex-wrap: wrap;
background-color: #f0f0f0;
}
.promo img {
width: 100%;
max-width: 600px;
}
.promo-text {
padding: 20px; flex: 1; }
.testimonial { margin: 10px;
font-style: italic;
}
.newsletter input {
padding: 10px;
width: 300px;
}
.newsletter button {
padding: 10px 20px;
}
.footer-columns {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.footer-column {
flex: 1;
padding: 10px; }