-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
68 lines (61 loc) · 934 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
67
68
.header{
display:flex;
justify-content: space-between;
border: 1px solid black;
}
.logo{
width: 100px;
}
.navbar ul{
font-size: 24px;
display:flex;
list-style-type: none;
}
.navbar ul li{
padding: 10px;
margin: 10px;
}
.search{
padding: 10px;
}
.resto-container{
display: flex;
flex-wrap: wrap;
}
.resto-card{
word-wrap: break-word;
margin: 10px;
background-color: #f0f0f0;
padding: 5px;
width: 230px;
}
.resto-card:hover{
cursor: pointer;
border: 1px solid black;
}
.image{
width: 100%;
}
.filter-btn{
cursor: pointer;
margin: 10px;
}
.login{
padding: 10px;
margin: 10px;
border-radius: 50%;
background-color: rgb(130, 106, 106);
}
.shimmer-card{
width: 230px;
height: 500px;
background-color: #f0f0f0;
margin:10px;
}
.shimmer-container{
display: flex;
flex-wrap: wrap;
}
.filter{
display: flex;
}