-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
54 lines (51 loc) · 827 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
@tailwind base;
@tailwind components;
@tailwind utilities;
.active{
@apply text-blue-700 bg-white;
}
/* @layer base {
ul, ol {
list-style: revert;
}
} */
/* body{
margin: 0;
padding: 0;
}
.nav{
display: flex;
justify-content: space-between;
align-items: center;
margin: 10px;
border: 2px solid red;
}
.nav > ul{
list-style-type: none;
display: flex;
gap: 20px;
height: 100%;
}
.restaurantLists{
display: flex;
flex-wrap: wrap;
}
.restaurent-Card{
width: 200px;
border: 2px solid red;
margin: 10px;
padding: 10px;
}
.restaurent-Card > img{
width: 100%;
}
.errorPage{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
height: 80vh;
}
.restaurantMenuImg{
width: 200px;
} */