Update app.py
Browse files
app.py
CHANGED
@@ -37,26 +37,30 @@ menu = """
|
|
37 |
background-color: #333;
|
38 |
padding: 10px;
|
39 |
color: white;
|
|
|
40 |
}
|
41 |
.menu-icon {
|
42 |
font-size: 24px;
|
43 |
background-color: #ffffff;
|
44 |
border-radius: 50%;
|
45 |
padding: 5px;
|
|
|
46 |
}
|
47 |
.menu-items {
|
48 |
display: flex;
|
49 |
gap: 15px;
|
|
|
50 |
}
|
51 |
.menu-item {
|
52 |
padding: 8px 16px;
|
53 |
background-color: #555;
|
54 |
border-radius: 4px;
|
55 |
transition: background-color 0.3s;
|
|
|
56 |
}
|
57 |
-
.menu-item a {
|
58 |
color: white;
|
59 |
-
text-decoration: none;
|
60 |
}
|
61 |
.menu-item:hover {
|
62 |
background-color: #777;
|
@@ -64,13 +68,15 @@ menu = """
|
|
64 |
</style>
|
65 |
|
66 |
<div class="menu-bar">
|
67 |
-
<
|
68 |
<div class="menu-items">
|
69 |
-
<span class="menu-item"><a href="#">
|
70 |
-
<span class="menu-item"><a href="#">
|
71 |
-
<span class="menu-item"><a href="#">
|
|
|
72 |
</div>
|
73 |
</div>
|
|
|
74 |
"""
|
75 |
|
76 |
description = """
|
|
|
37 |
background-color: #333;
|
38 |
padding: 10px;
|
39 |
color: white;
|
40 |
+
font-family: 'sans-serif'; /* Use sans-serif font */
|
41 |
}
|
42 |
.menu-icon {
|
43 |
font-size: 24px;
|
44 |
background-color: #ffffff;
|
45 |
border-radius: 50%;
|
46 |
padding: 5px;
|
47 |
+
text-decoration: none; /* Remove underline from emoji */
|
48 |
}
|
49 |
.menu-items {
|
50 |
display: flex;
|
51 |
gap: 15px;
|
52 |
+
color: white;
|
53 |
}
|
54 |
.menu-item {
|
55 |
padding: 8px 16px;
|
56 |
background-color: #555;
|
57 |
border-radius: 4px;
|
58 |
transition: background-color 0.3s;
|
59 |
+
font-weight: bold; /* Make text bold */
|
60 |
}
|
61 |
+
.menu-item a, .menu-icon a {
|
62 |
color: white;
|
63 |
+
text-decoration: none; /* Remove underline */
|
64 |
}
|
65 |
.menu-item:hover {
|
66 |
background-color: #777;
|
|
|
68 |
</style>
|
69 |
|
70 |
<div class="menu-bar">
|
71 |
+
<a href="#" class="menu-icon">🎵</a> <!-- Make emoji clickable -->
|
72 |
<div class="menu-items">
|
73 |
+
<span class="menu-item"><a href="#">Dashboard</a></span>
|
74 |
+
<span class="menu-item"><a href="#">Premium Apps</a></span>
|
75 |
+
<span class="menu-item"><a href="#">My Account</a></span>
|
76 |
+
<span class="menu-item"><a href="#">Train Voice</a></span>
|
77 |
</div>
|
78 |
</div>
|
79 |
+
|
80 |
"""
|
81 |
|
82 |
description = """
|