Update app.py
Browse files
app.py
CHANGED
@@ -39,12 +39,15 @@ menu = """
|
|
39 |
color: white;
|
40 |
font-family: 'sans-serif';
|
41 |
}
|
|
|
|
|
|
|
|
|
42 |
.menu-icon {
|
43 |
font-size: 24px;
|
44 |
background-color: #ffffff;
|
45 |
border-radius: 50%;
|
46 |
padding: 5px;
|
47 |
-
text-decoration: none;
|
48 |
}
|
49 |
.menu-items {
|
50 |
display: flex;
|
@@ -58,10 +61,6 @@ menu = """
|
|
58 |
transition: background-color 0.3s;
|
59 |
font-weight: bold;
|
60 |
}
|
61 |
-
.menu-item a, .menu-icon a, .menu-item a:visited, .menu-icon a:visited {
|
62 |
-
color: white;
|
63 |
-
text-decoration: none;
|
64 |
-
}
|
65 |
.menu-item:hover {
|
66 |
background-color: #777;
|
67 |
}
|
@@ -76,6 +75,7 @@ menu = """
|
|
76 |
<span class="menu-item"><a href="#">Train Voice</a></span>
|
77 |
</div>
|
78 |
</div>
|
|
|
79 |
"""
|
80 |
|
81 |
description = """
|
|
|
39 |
color: white;
|
40 |
font-family: 'sans-serif';
|
41 |
}
|
42 |
+
.menu-bar a, .menu-bar a:visited {
|
43 |
+
color: white; /* Make all links white */
|
44 |
+
text-decoration: none; /* Remove underline */
|
45 |
+
}
|
46 |
.menu-icon {
|
47 |
font-size: 24px;
|
48 |
background-color: #ffffff;
|
49 |
border-radius: 50%;
|
50 |
padding: 5px;
|
|
|
51 |
}
|
52 |
.menu-items {
|
53 |
display: flex;
|
|
|
61 |
transition: background-color 0.3s;
|
62 |
font-weight: bold;
|
63 |
}
|
|
|
|
|
|
|
|
|
64 |
.menu-item:hover {
|
65 |
background-color: #777;
|
66 |
}
|
|
|
75 |
<span class="menu-item"><a href="#">Train Voice</a></span>
|
76 |
</div>
|
77 |
</div>
|
78 |
+
|
79 |
"""
|
80 |
|
81 |
description = """
|