forked from khushi-joshi-05/Food-ordering-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
culinary.css
55 lines (47 loc) · 872 Bytes
/
culinary.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
.hero-div {
background: url("https://i.pinimg.com/564x/b0/5d/df/b05ddfb2ae7b11f80ab91a79a7b96f23.jpg") no-repeat center center/cover;
color: #fff;
padding: 10rem 1rem;
text-align: center;
font-weight: 800;
}
.experiences {
padding: 2rem 1rem;
text-align: center;
}
.experience-card {
border: 1px solid #ddd;
border-radius: 5px;
margin: 1rem;
overflow: hidden;
padding: 1rem;
}
.experience-card img {
max-width: 100%;
height: auto;
display: block;
}
.experience-card h3 {
margin: 1rem 0 0.5rem;
}
.experiences img{
height: 300px;
width: 100%;
object-fit: cover;
}
@media (min-width: 600px) {
.experience-card {
display: inline-block;
vertical-align: top;
width: 30%;
}
}
@media (min-width: 768px) {
header nav ul li {
margin: 0 2rem;
}
.hero-div {
padding: 7rem 1rem;
color: #fff;
}
}