-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathstyle.css
55 lines (45 loc) · 773 Bytes
/
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
body {
/* background-color: antiquewhite; */
}
img {
max-width: 100%;
height: auto;
}
.header-container {
box-shadow: 0px 5px 5px rgba(185, 181, 181, 0.2);
}
.container {
max-width: 1220px;
margin-left: auto;
margin-right: auto;
margin-bottom: 2rem;
}
.header {
padding: 0.5 rem;
display: flex;
justify-content: space-between;
}
.header img {
width: 6rem;
height: 4rem;
}
.nav-items ul {
list-style: none;
display: flex;
}
.nav-items li {
padding: 1rem;
}
.restaurant-list {
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
}
.restaurant-card {
box-shadow: 5px 5px 5px rgba(185, 181, 181, 0.5), -1px -1px 5px rgba(185, 181, 181, 0.5);
padding: 1rem;
margin: 1rem;
}
.restaurant-card img {
width: 15rem;
}