-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
66 lines (54 loc) · 910 Bytes
/
index.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
.logo {
width: 100px;
}
.header {
display: flex;
justify-content: space-between;
border: 1px solid black;
}
.nav-items > ul {
list-style-type: none;
display: flex;
}
.nav-items > ul > ol {
padding: 10px;
}
.restaurant-card {
width: 200px;
border: 1px solid orange;
margin: 10px;
}
.restaurant-card-info {
padding-left: 10px;
padding-right: 10px;
padding-top: 2px;
}
.restaurant-card > img {
width: 100%;
}
.restaurent-list {
display: flex;
flex-wrap: wrap;
}
.search-container {
padding: 10px;
}
.search-container > button {
padding-left: 3px !important;
}
.shimmer-card {
width: 200px;
height: 200px;
background-color: lightgray;
margin: 20px;
}
.restaurant-menu {
display: flex;
padding: 10px;
margin: 10px;
}
.card-link{
text-decoration: none;
cursor: pointer;
color: black;
}