-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
93 lines (77 loc) · 1.17 KB
/
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
@tailwind base;
@tailwind components;
@tailwind utilities;
body{
background-color: rgb(230, 236, 233);
}
.header{
display:flex;
justify-content: space-between;
border: 1px solid black;
padding: 5px 10px;
align-items: center;
}
.logo{
width:80px;
}
.nav-items >ul{
display: flex;
list-style-type: none;
}
.nav-items > ul >li{
padding: 10px;
margin: 10px;
}
.resturant-conntainer{
display: flex;
flex-wrap: wrap;
}
.resturant-card{
width: 200px;
padding: 5px;
margin: 5px;
}
.resturant-card:hover{
border: 1px solid black;
cursor:pointer;
}
.search{
padding: 10px
}
.resturant-logo{
width: 92%;
}
.filter-btn{
margin: 10px;
cursor: pointer;
}
.shimmer-container {
display: flex;
flex-wrap: wrap;
}
.shimmer-card {
margin: 20px;
width: 200px;
height: 400px;
background-color: #f0f0f0
}
.login{
/* padding: 0 20px; */
cursor: pointer;
}
.filter{
display: flex;
}
a{
text-decoration: none;
color: black;
}
.menu-container{
display: flex;
align-items: center;
justify-content: space-around;
margin: 5px;
}
.menu-logo{
width: 100%;
}