-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfoodie.css
94 lines (80 loc) · 1.33 KB
/
foodie.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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
/* check */
.nav-bar{
display:flex;
background-color: red;
padding: 20px 70px;
justify-content: space-between;
}
.logo-wrapper{
width:120px ;
}
.logo-wrapper >img{
width: 100%;
height: 100%;
object-fit: contain;
}
.profile-img{
height: 50px;
width: 50px;
background-color: aliceblue;
border-radius: 50%;
}
.profile-wrapper{
display: flex;
align-items: center;
gap: 30px;
}
.profile-name{
color: aliceblue;
}
.food-list-wrapper{
width: 93%;
margin: 40px auto;
margin-left: 75px;
display: flex;
align-items: center;
gap: 10px;
font-family: 'Roboto', sans-serif;
/* background-color: blue; */
}
.hotel-location-wrapper{
display: flex;
align-items:flex-start;
gap:10px;
padding-bottom: 10px;
}
#foodimg{
width: 100%;
object-fit: cover;
}
.hotel-card-wrapper
{
/* border-bottom: 1px solid black; */
padding-right: 50px;
flex-wrap: wrap; /* used to not overflowing content */
}
.rating{
float:right
}
.hotel-name{
padding-bottom: 10px;
font-weight: bold;
}
.hotel-category
{
padding-bottom: 10px;
font-size: 15px;
}
.rating
{
padding-top: 15px;
}
.details{
border-bottom: 1px solid black;
width: 100%;
}