-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
126 lines (107 loc) · 1.89 KB
/
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
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
.headerMain{
width: 95vw;
height: 20vh;
background-color: lightcyan;
border: 1px solid black;
display: flex;
justify-content: space-between;
margin: 0 auto ;
}
.button{
height: 40px ;
width: 80px;
margin-top: 40px;
}
.logo{
height: 18vh;
padding: 5px;
padding-left: 50px;
}
.headerList>ul{
display: flex;
flex-wrap: wrap;
padding-right: 100px;
}
.headerList>ul>li{
list-style: none;
padding-left: 10px;
padding-right: 30px;
padding-top: 50px;
font-size: 24;
}
.restaurant-container{
margin-top: 30px;
padding-left: 40px;
display: flex;
flex-wrap: wrap;
}
.cartmain{
width: 200px;
height: 300px;
background-color: #f0f0f0;
margin: 20px;
cursor: pointer;
border-radius: 5%;
}
.cartmain:hover{
box-shadow: 5px 5px 5px grey;
}
.cart-image{
width: 180px;
height: 150px;
padding:10px 10px;
border-radius: 5%;
}
.cartlist>h5{
margin: 10px;
overflow-wrap: break-word;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
width: 100%; /* or a fixed width */
}
.filter-box{
display: flex;
flex-wrap: wrap;
margin: 10px;
margin-left: 40px;
margin-top: 40px;
}
.filter{
height: 40px;
width: 100px;
border-radius: 10;
margin-left: 40px;
}
.search{
border: 1px dashed black;
}
.search-bar{
height: 30px;
width: 150px;
border: none;
background-color: white;
border-right: 1px dashed black;
}
.search>button{
height: 30px;
border: none;
background-color: white;
}
.search>button:hover{
box-shadow: 5px 5px 5px black;
border: 1px dashed grey;
}
.shimmer-wrapper{
width: 200px;
height: 300px;
background-color: #cac7c7;
opacity: 0.7;
margin: 20px;
cursor: pointer;
border-radius: 5%;
}
.shimmer-container{
display: flex;
flex-wrap: wrap;
}