Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
-
import streamlit as st
|
2 |
import base64
|
|
|
3 |
import plotly.express as px
|
4 |
|
5 |
df = px.data.iris()
|
@@ -20,6 +20,14 @@ background-repeat: no-repeat;
|
|
20 |
background-attachment: local;
|
21 |
}}
|
22 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
[data-testid="stHeader"] {{
|
24 |
background: rgba(1,1,1,1);
|
25 |
}}
|
@@ -67,4 +75,16 @@ with col2:
|
|
67 |
st.subheader('**:violet[:cat: Anna F.]**')
|
68 |
st.subheader('**:violet[:cat: Viktoria K.]**')
|
69 |
st.subheader('**:violet[:cat: Ivan N.]**')
|
70 |
-
st.subheader('**:violet[:cat: Ilvir Kh.]**')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
import base64
|
2 |
+
import streamlit as st
|
3 |
import plotly.express as px
|
4 |
|
5 |
df = px.data.iris()
|
|
|
20 |
background-attachment: local;
|
21 |
}}
|
22 |
|
23 |
+
[data-testid="stSidebar"] > div:first-child {{
|
24 |
+
background-image: url("https://kartinkin.net/uploads/posts/2022-01/1643325727_14-kartinkin-net-p-pattern-neiroset-krasivie-16.jpg");
|
25 |
+
background-size: 115%;
|
26 |
+
background-position: center;
|
27 |
+
background-repeat: no-repeat;
|
28 |
+
background-attachment: fixed;
|
29 |
+
}}
|
30 |
+
|
31 |
[data-testid="stHeader"] {{
|
32 |
background: rgba(1,1,1,1);
|
33 |
}}
|
|
|
75 |
st.subheader('**:violet[:cat: Anna F.]**')
|
76 |
st.subheader('**:violet[:cat: Viktoria K.]**')
|
77 |
st.subheader('**:violet[:cat: Ivan N.]**')
|
78 |
+
st.subheader('**:violet[:cat: Ilvir Kh.]**')
|
79 |
+
|
80 |
+
#st.sidebar.image
|
81 |
+
|
82 |
+
# Настройка боковой панели
|
83 |
+
st.sidebar.title("About the project")
|
84 |
+
st.sidebar.info(
|
85 |
+
"""
|
86 |
+
Natural Language Processing
|
87 |
+
"""
|
88 |
+
)
|
89 |
+
st.sidebar.info("You can also find our repository on github "
|
90 |
+
"[here](https://github.com/vasevooo/NLP_project).")
|