Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,24 +1,25 @@
|
|
1 |
import streamlit as st
|
2 |
|
3 |
-
|
|
|
4 |
<style>
|
5 |
[data-testid="stAppViewContainer"] > .main {{
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
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,7 +40,7 @@ text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
|
|
39 |
</style>
|
40 |
"""
|
41 |
|
42 |
-
st.markdown(
|
43 |
|
44 |
audioldm_exmples_input_paths = []
|
45 |
audioldm_exmples_original_paths = []
|
|
|
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 |
</style>
|
41 |
"""
|
42 |
|
43 |
+
st.markdown(custom_css, unsafe_allow_html=True)
|
44 |
|
45 |
audioldm_exmples_input_paths = []
|
46 |
audioldm_exmples_original_paths = []
|