Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -24,27 +24,16 @@ hide_streamlit_style = """
|
|
| 24 |
footer {visibility: hidden;}
|
| 25 |
/* style.css */
|
| 26 |
|
| 27 |
-
</style>
|
| 28 |
-
|
| 29 |
-
"""
|
| 30 |
|
| 31 |
css = """
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
}
|
| 38 |
-
|
| 39 |
-
/* Customize Streamlit's default button */
|
| 40 |
-
.stButton>button {
|
| 41 |
-
border: 2px solid #4CAF50;
|
| 42 |
-
color: white;
|
| 43 |
-
background-color: #4CAF50;
|
| 44 |
-
}
|
| 45 |
-
|
| 46 |
-
background: linear-gradient(to right, #56CCF2, #2F80ED);
|
| 47 |
-
</style>
|
| 48 |
"""
|
| 49 |
|
| 50 |
st.markdown(css,unsafe_allow_html=True)
|
|
|
|
| 24 |
footer {visibility: hidden;}
|
| 25 |
/* style.css */
|
| 26 |
|
| 27 |
+
</style> """
|
|
|
|
|
|
|
| 28 |
|
| 29 |
css = """
|
| 30 |
+
body {
|
| 31 |
+
background: linear-gradient(to right, #56CCF2, #2F80ED); /* Blue gradient */
|
| 32 |
+
}
|
| 33 |
+
.stApp { /* This targets the Streamlit app's main container */
|
| 34 |
+
background: transparent;
|
| 35 |
+
}
|
| 36 |
+
</style>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 37 |
"""
|
| 38 |
|
| 39 |
st.markdown(css,unsafe_allow_html=True)
|