Update pages/4_Writing.py
Browse files- pages/4_Writing.py +23 -23
pages/4_Writing.py
CHANGED
@@ -1,24 +1,24 @@
|
|
1 |
-
import streamlit as st
|
2 |
-
def add_logo():
|
3 |
-
st.markdown(
|
4 |
-
"""
|
5 |
-
<style>
|
6 |
-
[data-testid="stSidebarNav"] {
|
7 |
-
background-image: url(http://placekitten.com/200/200)
|
8 |
-
background-repeat: no-repeat;
|
9 |
-
#padding-top: 120px;
|
10 |
-
background-position: 20px 20px;
|
11 |
-
}
|
12 |
-
[data-testid="stSidebarNav"]::before {
|
13 |
-
content: "MO3ALIMI sidebar";
|
14 |
-
margin-left: 20px;
|
15 |
-
margin-top: 20px;
|
16 |
-
font-size: 29px;
|
17 |
-
position: relative;
|
18 |
-
top: 0px;
|
19 |
-
}
|
20 |
-
</style>
|
21 |
-
""",
|
22 |
-
unsafe_allow_html=True,
|
23 |
-
)
|
24 |
add_logo()
|
|
|
1 |
+
import streamlit as st
|
2 |
+
def add_logo():
|
3 |
+
st.markdown(
|
4 |
+
"""
|
5 |
+
<style>
|
6 |
+
[data-testid="stSidebarNav"] {
|
7 |
+
/*background-image: url(http://placekitten.com/200/200);*/
|
8 |
+
background-repeat: no-repeat;
|
9 |
+
#padding-top: 120px;
|
10 |
+
background-position: 20px 20px;
|
11 |
+
}
|
12 |
+
[data-testid="stSidebarNav"]::before {
|
13 |
+
content: "MO3ALIMI sidebar";
|
14 |
+
margin-left: 20px;
|
15 |
+
margin-top: 20px;
|
16 |
+
font-size: 29px;
|
17 |
+
position: relative;
|
18 |
+
top: 0px;
|
19 |
+
}
|
20 |
+
</style>
|
21 |
+
""",
|
22 |
+
unsafe_allow_html=True,
|
23 |
+
)
|
24 |
add_logo()
|