-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmenu_styles.css
More file actions
97 lines (84 loc) · 1.58 KB
/
Copy pathmenu_styles.css
File metadata and controls
97 lines (84 loc) · 1.58 KB
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
body {
margin: 0;
font-family: Arial, sans-serif;
}
.logo a{
font-size: 30px;
color:orange;
}
.home-nav {
padding: 10px;
background-color: #333;
/* color: white; */
color: orange;
text-align: center;
}
.home-nav a {
text-decoration: none;
}
.navbar {
background-color: #444;
padding: 10px 20px;
}
.nav-links {
list-style-type: none;
display: flex;
justify-content: space-around;
margin: 0;
padding: 0;
}
.nav-links li {
margin: 0;
}
.nav-links a {
color: white;
text-decoration: none;
padding: 10px 15px;
transition: background-color 0.3s;
}
.nav-links a:hover {
background-color: #575757;
border-radius: 5px;
}
.container {
padding: 20px 140px;
}
.food-list {
display: flex;
flex-wrap: wrap;
gap: 20px;
}
.food-item {
border: 1px solid #ddd;
border-radius: 8px;
padding: 10px;
width: 200px;
text-align: center;
}
.food-item img {
width: 100%;
border-radius: 8px;
}
.price {
font-weight: bold;
color: green;
}
.container h1 {
font-size: 36px;
color: orange; /* Match the logo color */
text-align: center;
margin-bottom: 20px;
}
.container p {
line-height: 1.6; /* Improve readability */
text-align: justify; /* Justify text for better alignment */
margin-bottom: 20px;
}
#map-container {
margin-top: 20px;
display: flex;
justify-content: center;
}
iframe {
border-radius: 8px; /* Rounded corners for the map */
}