michaelpiro1 commited on
Commit
8212ff9
·
verified ·
1 Parent(s): 5704ff8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -13
app.py CHANGED
@@ -1,25 +1,24 @@
1
  import streamlit as st
2
 
3
- # Custom CSS to set the maximum width of the main container
4
- custom_css = """
5
  <style>
6
  [data-testid="stAppViewContainer"] > .main {{
7
- max-width: 1200px;
8
- margin: 0 auto;
9
- }}
10
- [data-testid="stAppViewContainer"] {{
11
- padding: 0;
12
  }}
13
  [data-testid="stHeader"] {{
14
- background: rgba(0,0,0,0);
15
  }}
16
  .stTitle {{
17
- color: #ffffff;
18
- text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
19
  }}
20
  .stSubheader {{
21
- color: #ffffff;
22
- text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
23
  }}
24
  .link-icon {{
25
  display: flex;
@@ -40,7 +39,7 @@ custom_css = """
40
  </style>
41
  """
42
 
43
- st.markdown(custom_css, unsafe_allow_html=True)
44
 
45
  audioldm_exmples_input_paths = []
46
  audioldm_exmples_original_paths = []
 
1
  import streamlit as st
2
 
3
+ page_bg_img = f"""
 
4
  <style>
5
  [data-testid="stAppViewContainer"] > .main {{
6
+ background-image: url("https://i.postimg.cc/4xgNnkfX/Untitled-design.png");
7
+ background-size: cover;
8
+ background-position: center center;
9
+ background-repeat: no-repeat;
10
+ background-attachment: local;
11
  }}
12
  [data-testid="stHeader"] {{
13
+ background: rgba(0,0,0,0);
14
  }}
15
  .stTitle {{
16
+ color: #ffffff;
17
+ text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
18
  }}
19
  .stSubheader {{
20
+ color: #ffffff;
21
+ text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
22
  }}
23
  .link-icon {{
24
  display: flex;
 
39
  </style>
40
  """
41
 
42
+ st.markdown(page_bg_img, unsafe_allow_html=True)
43
 
44
  audioldm_exmples_input_paths = []
45
  audioldm_exmples_original_paths = []