-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
73 lines (61 loc) · 982 Bytes
/
index.css
File metadata and controls
73 lines (61 loc) · 982 Bytes
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
.header {
display: flex;
border: 2px solid black;
justify-content: space-between;
}
.logo {
width: 100px;
padding-top: 8px;
}
.nav-items > ul {
padding: 0px 20px;
display: flex;
}
.nav-items > ul > li {
font-size: 25px;
padding: 10px;
list-style: none;
}
.rest-container {
padding: 5px;
display: flex;
flex-wrap: wrap;
}
.rest-card {
margin: 5px;
padding: 5px;
width: 200px;
background-color: #f0f0f0;
color: black;
}
.rest-card:hover {
cursor: pointer;
border: 1px solid black;
}
.search {
margin: 10px;
}
.filter-btn {
margin: 10px;
padding: 5px;
cursor: pointer;
}
.shimmer-container {
margin-top: 50px;
display: flex;
flex-wrap: wrap;
}
.shimmer-card {
margin: 5px;
padding: 5px;
width: 200px;
height: 400px;
background-color: #f0f0f0;
}
.body-header {
display: flex;
}
.search-text {
padding: 5px;
margin: 10px 0 10px 10px;
}