-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.scss
183 lines (160 loc) · 3.21 KB
/
styles.scss
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
body{
overflow-x: hidden;
}
.header-container {
border: 1px solid #F0F0F0;
flex-direction: row;
justify-content: space-between;
align-items: center;
width: 100%;
display: flex;
box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.moveTOTop {
position: fixed;
bottom: 24px;
right: 20px;
width: 20px;
height: 20px;
background: #f04e02;
display: flex;
align-items: center;
justify-content: space-around;
text-align: center;
padding: 18px;
box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
cursor: pointer;
border-radius: 45px;
.iconTop {
font-size: 50px;
color: #FFF;
height: 45px;
}
}
.logo {
width: 140px;
height: 100px;
}
.navItems {
display: flex;
}
.navItems-container {
padding-right: 10px;
}
.navItems-container > ul {
list-style-type: none;
}
.navItems-container > ul > li {
padding: 10px;
}
.navItem {
font-size: 18px;
cursor: pointer;
}
.navItem:hover {
color: #db430b;
border-bottom: 2px solid #db430b;
}
/* body */
.restroCard{
width: 250px;
display: flex;
flex-wrap: wrap;
flex-direction: row;
width: 100%;
}
.card-container:hover {
cursor: pointer;
/* border: 1px solid; */
box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
}
.card-container{
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: start;
// background-color: #F0F0F0;
margin: 5px;
width: 240px;
border-radius: 15px;
}
.search {
padding: 10px;
display: flex;
justify-content: space-between;
}
.card-logo {
width: 230px;
margin: 5px;
height: 150px;
border-radius: 15px;
}
.details {
display: flex;
flex-direction: column;
padding: 5px;
max-width: 230px;
}
.details > span {
padding: 5px;
word-wrap: break-word;
}
.starRates {
display: flex;
}
.cuisinex {
padding: 5px;
white-space: nowrap;
overflow: hidden;
color: rgba(2, 6, 12, 0.6);
text-overflow: ellipsis;
}
.areaName {
color: rgba(2, 6, 12, 0.6);
}
/* width */
::-webkit-scrollbar {
width: 5px;
height: 5px;
}
/* Track */
::-webkit-scrollbar-track {
background: #f1f1f1;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #888;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background:#555;
}
.filter-btn {
cursor: pointer;
background: #fff;
border: none;
border-radius: 12px;
padding: 8px;
font-size: 14px;
box-shadow: 0 5px 15px #00000059;
margin-right: 10px;
}
.filter-btn:hover {
cursor: pointer;
background: #db430b;
border: none;
border-radius: 12px;
padding: 8px;
font-size: 14px;
box-shadow: 0 5px 15px #00000059;
margin-right: 10px;
color: #FFF;
}
.navItem > a {
text-decoration: none;
color: #000;
}
.notLink {
text-decoration: none;
color: #000;
}