Paras Shah
commited on
Commit
·
00e1c1a
1
Parent(s):
b899eb4
Add copyright. Also increase font size at About
Browse files
app.py
CHANGED
@@ -25,20 +25,31 @@ side_bg_ext = "png"
|
|
25 |
|
26 |
st.markdown(
|
27 |
f"""
|
|
|
|
|
|
|
|
|
28 |
<style>
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
</style>
|
43 |
""",
|
44 |
unsafe_allow_html=True
|
@@ -47,7 +58,7 @@ st.markdown(
|
|
47 |
st.sidebar.markdown(
|
48 |
body=
|
49 |
"<div style='text-align: justify; color: #ffff00'>"
|
50 |
-
"<h1 style='color: #ffff00;'>About</h1>The species <strong>Pinus sylvestris "
|
51 |
"(Scots Pine), Fagus sylvatica (European Beech), Picea abies (Norway Spruce), "
|
52 |
"and Betula pendula (Silver Birch)</strong> are native to Europe and parts "
|
53 |
"of Asia but are also found in India (Parts of Himachal Pradesh, "
|
|
|
25 |
|
26 |
st.markdown(
|
27 |
f"""
|
28 |
+
<footer>
|
29 |
+
©Copyright: WII, Technology Laboratory<br>
|
30 |
+
Authors: Shashank Sawan & Paras Shah
|
31 |
+
</footer>
|
32 |
<style>
|
33 |
+
footer {{
|
34 |
+
position: fixed;
|
35 |
+
bottom: 0;
|
36 |
+
text-align: right;
|
37 |
+
font-size: 14px;
|
38 |
+
}}
|
39 |
+
[data-testid="stSidebar"] {{
|
40 |
+
background: url(data:image/{side_bg_ext};
|
41 |
+
base64,{base64.b64encode(open(side_bg, "rb").read()).decode()});
|
42 |
+
color: #ffff00;
|
43 |
+
}}
|
44 |
+
[data-testid="stSidebarUserContent"] {{
|
45 |
+
padding-bottom: 3rem;
|
46 |
+
}}
|
47 |
+
.stMainBlockContainer {{
|
48 |
+
padding-top: 3rem;
|
49 |
+
}}
|
50 |
+
.main > div {{
|
51 |
+
padding-top: 3rem;
|
52 |
+
}}
|
53 |
</style>
|
54 |
""",
|
55 |
unsafe_allow_html=True
|
|
|
58 |
st.sidebar.markdown(
|
59 |
body=
|
60 |
"<div style='text-align: justify; color: #ffff00'>"
|
61 |
+
"<h1 style='color: #ffff00; font-size: 4rem;'>About</h1>The species <strong>Pinus sylvestris "
|
62 |
"(Scots Pine), Fagus sylvatica (European Beech), Picea abies (Norway Spruce), "
|
63 |
"and Betula pendula (Silver Birch)</strong> are native to Europe and parts "
|
64 |
"of Asia but are also found in India (Parts of Himachal Pradesh, "
|