Update app.py
Browse files
app.py
CHANGED
@@ -13,25 +13,17 @@ st.set_page_config(
|
|
13 |
|
14 |
custom_style = """
|
15 |
<style>
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
}
|
25 |
-
.stButton>button {
|
26 |
-
background-color: #3498db !important;
|
27 |
-
color: white !important;
|
28 |
-
border-radius: 5px !important;
|
29 |
-
}
|
30 |
-
.download-buttons-container {
|
31 |
-
display: flex;
|
32 |
-
gap: 10px;
|
33 |
}
|
34 |
</style>
|
|
|
35 |
"""
|
36 |
st.markdown(custom_style, unsafe_allow_html=True)
|
37 |
|
|
|
13 |
|
14 |
custom_style = """
|
15 |
<style>
|
16 |
+
div[data-testid="stToolbar"],
|
17 |
+
div[data-testid="stDecoration"],
|
18 |
+
div[data-testid="stStatusWidget"],
|
19 |
+
#MainMenu,
|
20 |
+
header,
|
21 |
+
footer {
|
22 |
+
visibility: hidden;
|
23 |
+
height: 0%;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
}
|
25 |
</style>
|
26 |
+
|
27 |
"""
|
28 |
st.markdown(custom_style, unsafe_allow_html=True)
|
29 |
|