The-Adnan-Syed commited on
Commit
0b586d5
·
verified ·
1 Parent(s): 017c986

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -19
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
- <style>
33
- .chat-message {
34
- background-color: #f0f2f6;
35
- border-radius: 20px;
36
- padding: 10px;
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)