Spaces:
Sleeping
Sleeping
Coder commited on
Commit ·
31cb01b
1
Parent(s): 0c92419
adding footer
Browse files
app.py
CHANGED
|
@@ -140,24 +140,42 @@ def main():
|
|
| 140 |
|
| 141 |
# Footer
|
| 142 |
st.markdown("""
|
| 143 |
-
|
| 144 |
-
|
| 145 |
-
|
| 146 |
-
|
| 147 |
-
|
| 148 |
-
|
| 149 |
-
|
| 150 |
-
|
| 151 |
-
|
| 152 |
-
|
| 153 |
-
|
| 154 |
-
|
| 155 |
-
|
| 156 |
-
|
| 157 |
-
|
| 158 |
-
|
| 159 |
-
|
| 160 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 161 |
|
| 162 |
|
| 163 |
|
|
|
|
| 140 |
|
| 141 |
# Footer
|
| 142 |
st.markdown("""
|
| 143 |
+
<style>
|
| 144 |
+
.footer {
|
| 145 |
+
position: fixed;
|
| 146 |
+
left: 0;
|
| 147 |
+
bottom: 0;
|
| 148 |
+
width: 100%;
|
| 149 |
+
background-color: #f8f9fa;
|
| 150 |
+
color: black;
|
| 151 |
+
text-align: center;
|
| 152 |
+
padding: 10px 0;
|
| 153 |
+
font-size: 14px;
|
| 154 |
+
border-top: 1px solid #e7e7e7;
|
| 155 |
+
}
|
| 156 |
+
.footer .quote {
|
| 157 |
+
font-style: italic;
|
| 158 |
+
color: #555;
|
| 159 |
+
}
|
| 160 |
+
.footer .author {
|
| 161 |
+
margin-top: 5px;
|
| 162 |
+
font-weight: bold;
|
| 163 |
+
color: #333;
|
| 164 |
+
}
|
| 165 |
+
.footer .credit {
|
| 166 |
+
margin-top: 5px;
|
| 167 |
+
font-size: 12px;
|
| 168 |
+
color: #777;
|
| 169 |
+
}
|
| 170 |
+
</style>
|
| 171 |
+
<div class="footer">
|
| 172 |
+
<div class="quote">"The best investment you can make is an investment in yourself." - Warren Buffett</div>
|
| 173 |
+
<div class="author">❤️ Made by Mohsin ❤️</div>
|
| 174 |
+
<div class="credit">© 2024 Mohsin. All rights reserved.</div>
|
| 175 |
+
</div>
|
| 176 |
+
""", unsafe_allow_html=True)
|
| 177 |
+
|
| 178 |
+
|
| 179 |
|
| 180 |
|
| 181 |
|