Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -23,10 +23,19 @@ text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
|
|
23 |
.link-icon {{
|
24 |
display: flex;
|
25 |
align-items: center;
|
|
|
26 |
}}
|
27 |
.link-icon img {{
|
28 |
margin-right: 10px;
|
29 |
}}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
</style>
|
31 |
"""
|
32 |
|
@@ -105,3 +114,10 @@ for link in links:
|
|
105 |
""", unsafe_allow_html=True)
|
106 |
else:
|
107 |
st.markdown(f"[{link['text']}]({link['url']}) - *{link['type']}*")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
.link-icon {{
|
24 |
display: flex;
|
25 |
align-items: center;
|
26 |
+
margin-bottom: 10px;
|
27 |
}}
|
28 |
.link-icon img {{
|
29 |
margin-right: 10px;
|
30 |
}}
|
31 |
+
.footer {{
|
32 |
+
text-align: center;
|
33 |
+
padding: 20px;
|
34 |
+
background: rgba(0, 0, 0, 0.7);
|
35 |
+
color: white;
|
36 |
+
border-top: 1px solid #ddd;
|
37 |
+
margin-top: 30px;
|
38 |
+
}}
|
39 |
</style>
|
40 |
"""
|
41 |
|
|
|
114 |
""", unsafe_allow_html=True)
|
115 |
else:
|
116 |
st.markdown(f"[{link['text']}]({link['url']}) - *{link['type']}*")
|
117 |
+
|
118 |
+
# Footer
|
119 |
+
st.markdown("""
|
120 |
+
<div class="footer">
|
121 |
+
Made with ❤️ using Streamlit
|
122 |
+
</div>
|
123 |
+
""", unsafe_allow_html=True)
|