Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -23,6 +23,12 @@ hide_streamlit_style = """
|
|
| 23 |
#MainMenu {visibility: hidden;}
|
| 24 |
footer {visibility: hidden;}
|
| 25 |
/* style.css */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 26 |
.chat-message {
|
| 27 |
background-color: #f0f2f6;
|
| 28 |
border-radius: 20px;
|
|
@@ -35,13 +41,13 @@ footer {visibility: hidden;}
|
|
| 35 |
color: white;
|
| 36 |
background-color: #4CAF50;
|
| 37 |
}
|
| 38 |
-
background: linear-gradient(to right, #56CCF2, #2F80ED);
|
| 39 |
-
|
| 40 |
|
| 41 |
-
|
| 42 |
|
| 43 |
"""
|
| 44 |
|
|
|
|
|
|
|
| 45 |
api = os.environ['api']
|
| 46 |
|
| 47 |
st.markdown(hide_streamlit_style, unsafe_allow_html=True)
|
|
|
|
| 23 |
#MainMenu {visibility: hidden;}
|
| 24 |
footer {visibility: hidden;}
|
| 25 |
/* style.css */
|
| 26 |
+
|
| 27 |
+
</style>
|
| 28 |
+
|
| 29 |
+
"""
|
| 30 |
+
|
| 31 |
+
css = """
|
| 32 |
.chat-message {
|
| 33 |
background-color: #f0f2f6;
|
| 34 |
border-radius: 20px;
|
|
|
|
| 41 |
color: white;
|
| 42 |
background-color: #4CAF50;
|
| 43 |
}
|
|
|
|
|
|
|
| 44 |
|
| 45 |
+
background: linear-gradient(to right, #56CCF2, #2F80ED);
|
| 46 |
|
| 47 |
"""
|
| 48 |
|
| 49 |
+
st.markdown(css,unsafe_allow_html=True)
|
| 50 |
+
|
| 51 |
api = os.environ['api']
|
| 52 |
|
| 53 |
st.markdown(hide_streamlit_style, unsafe_allow_html=True)
|