subek commited on
Commit
d9ad2d7
·
verified ·
1 Parent(s): 1c99073

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -17
app.py CHANGED
@@ -13,25 +13,17 @@ st.set_page_config(
13
 
14
  custom_style = """
15
  <style>
16
- .stApp {
17
- max-width: 1200px;
18
- margin: 0 auto;
19
- padding: 20px;
20
- }
21
- body {
22
- color: white;
23
- background-color: #2C3E50;
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