forked from arghadipmanna101/Flipkart_Clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
45 lines (37 loc) · 754 Bytes
/
styles.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
body {
font-family: Arial, sans-serif;
}
.hero {
background: url('https://source.unsplash.com/1600x900/?grocery,store') no-repeat center center;
background-size: cover;
color: white;
height: 80vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}
.hero-text {
background: rgba(0, 0, 0, 0.5);
padding: 20px;
border-radius: 10px;
}
.products-section {
padding: 60px 0;
}
.section-title {
text-align: center;
margin-bottom: 40px;
font-size: 2.5em;
}
.product-card {
margin-bottom: 30px;
}
.product-card img {
width: 100%;
height: 200px;
object-fit: cover;
}
.footer {
padding: 20px 0;
}