Update app.py
Browse files
app.py
CHANGED
|
@@ -9,13 +9,13 @@ html_temp = """
|
|
| 9 |
st.markdown(html_temp, unsafe_allow_html=True)
|
| 10 |
st.markdown(f"""
|
| 11 |
<style>
|
| 12 |
-
/* Set the background image for the entire app */
|
| 13 |
.stApp {{
|
| 14 |
background-image url("https://wallpaperaccess.com/full/9405162.jpg");
|
| 15 |
background-size: cover;
|
| 16 |
background-position: center;
|
| 17 |
background-attachment: fixed;
|
| 18 |
background-repeat: no-repeat;
|
|
|
|
| 19 |
}}
|
| 20 |
</style>
|
| 21 |
""", unsafe_allow_html=True)
|
|
|
|
| 9 |
st.markdown(html_temp, unsafe_allow_html=True)
|
| 10 |
st.markdown(f"""
|
| 11 |
<style>
|
|
|
|
| 12 |
.stApp {{
|
| 13 |
background-image url("https://wallpaperaccess.com/full/9405162.jpg");
|
| 14 |
background-size: cover;
|
| 15 |
background-position: center;
|
| 16 |
background-attachment: fixed;
|
| 17 |
background-repeat: no-repeat;
|
| 18 |
+
background-color: {page_bg_color};
|
| 19 |
}}
|
| 20 |
</style>
|
| 21 |
""", unsafe_allow_html=True)
|