Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,2 +1,17 @@
|
|
| 1 |
import streamlit as st
|
| 2 |
-
st.image("./img/getaround.jpg")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
import streamlit as st
|
| 2 |
+
st.image("./img/getaround.jpg")
|
| 3 |
+
|
| 4 |
+
st.markdown(
|
| 5 |
+
"""
|
| 6 |
+
<style>
|
| 7 |
+
.sidebar .sidebar-content {
|
| 8 |
+
background-color: #f0f2f6;
|
| 9 |
+
}
|
| 10 |
+
.sidebar .sidebar-content .st-emotion-cache-1v0mbdj {
|
| 11 |
+
font-size: 16px;
|
| 12 |
+
color: #b725c8ff;
|
| 13 |
+
}
|
| 14 |
+
</style>
|
| 15 |
+
""",
|
| 16 |
+
unsafe_allow_html=True
|
| 17 |
+
)
|