-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
135 lines (117 loc) · 2.04 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
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
@tailwind base;
@tailwind components;
@tailwind utilities;
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background-color: #f2f2f2;
}
.search-input {
input {
border: 1px solid black;
gap: 5px;
}
button {
border: 2px solid black;
border-radius: 2px;
}
}
.header {
display: flex;
justify-content: space-between;
box-shadow: 0 15px 40px -20px rgba(40, 44, 63, .15);
align-items: center;
color: black;
}
.logo-container {
padding-left: 20px;
}
.logo {
width: 80px;
height: 60px;
}
.nav-items ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
}
.nav-items li {
margin-right: 20px;
font-size: 15px;
font-family: Arial;
font-weight: 700;
line-height: 16px;
}
.nav-items li a:-webkit-any-link {
text-decoration: none !important;
}
.nav-items li:hover {
cursor: pointer;
color: orange;
}
.restaurant__container {
display: flex;
flex-wrap: wrap;
gap: 20px;
padding: 10px;
margin: 10px;
}
.restaurant__card {
box-shadow: rgba(0, 0, 0.1) 2px 2px 8px;
margin-bottom: 1rem;
/* width: 18%; */
width: 100%;
height: auto;
}
.restaurant__card>.food_image>img {
width: 220px;
padding-bottom: 12px;
}
.restaurant__details {
display: flex;
flex-direction: column;
gap: 10px;
font-style: normal;
font-weight: 700;
font-size: 16px;
font-family: sans-serif;
padding-left: 5px;
padding-bottom: 18px;
color: black;
text-decoration: none;
}
.log-button {
border: 0;
outline: 0;
cursor: pointer;
color: white;
background-color: rgb(84, 105, 212);
border-radius: 4px;
font-size: 14px;
font-weight: 500;
padding: 4px 8px;
display: inline-block;
min-height: 28px;
transition: background-color .24s, box-shadow .24s;
width: 60px;
}
.shimmer__ui {
display: flex;
flex-wrap: wrap;
gap: 20px;
padding: 10px;
margin: 10px;
}
.shimmer__ui>.shimmer__card {
box-shadow: rgba(0, 0, 0.1) 2px 2px 8px;
margin-bottom: 1rem;
width: 200px;
height: 200px;
}
.filter {
display: flex;
padding-left: 16px;
gap: 20px;
}