Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -130,6 +130,15 @@ def main():
|
|
130 |
.stMarkdown, .stWrite {
|
131 |
color: white !important;
|
132 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
133 |
</style>
|
134 |
""", unsafe_allow_html=True)
|
135 |
|
@@ -183,4 +192,3 @@ def main():
|
|
183 |
# Run the Streamlit app
|
184 |
if __name__ == "__main__":
|
185 |
main()
|
186 |
-
|
|
|
130 |
.stMarkdown, .stWrite {
|
131 |
color: white !important;
|
132 |
}
|
133 |
+
|
134 |
+
/* Style for links to make them more visible */
|
135 |
+
a {
|
136 |
+
color: #ffffff;
|
137 |
+
text-decoration: underline;
|
138 |
+
}
|
139 |
+
a:hover {
|
140 |
+
color: #ffccff; /* Light purple hover effect */
|
141 |
+
}
|
142 |
</style>
|
143 |
""", unsafe_allow_html=True)
|
144 |
|
|
|
192 |
# Run the Streamlit app
|
193 |
if __name__ == "__main__":
|
194 |
main()
|
|