-
Notifications
You must be signed in to change notification settings - Fork 2
/
about_this_project.py
74 lines (53 loc) · 2.28 KB
/
about_this_project.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# homepage.py
import streamlit as st
import base64
def app():
@st.cache(allow_output_mutation=True)
def get_base64_of_bin_file(bin_file):
with open(bin_file, 'rb') as f:
data = f.read()
return base64.b64encode(data).decode()
main_bg = "back.png"
main_bg_ext = "back.png"
side_bg = "back.png"
side_bg_ext = "back.png"
st.markdown(
f"""
<style>
.reportview-container {{
background: #E55D87; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #5FC3E4, #E55D87); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #5FC3E4, #E55D87); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}}
</style>
""",
unsafe_allow_html=True
)
st.markdown("""
<style>
.sidebar .sidebar-content {
color: #35b7aa;
background-color: #35b7aa;
}
</style>
""", unsafe_allow_html=True)
st.markdown("<h1 style='text-align: center; color: #7b113a;'>ABOUT US</h1>",
unsafe_allow_html=True)
st.write('\n\nThis application is a collaboration work of the below mentioned team from IIIT Allahabad.\n\n'
'It is developed as our **Software Engineering** project. This project deals with the visualisation and '
'analysis on hepatitis data set. For further information on this application visit the home page '
'\n\n\n\n**HAVE A NICE DAY :)**\n\n\n\n** Thanks For Visiting** ')
st.subheader('**TEAM MEMBERS**')
col1, col2, col3, col4 = st.beta_columns(4)
col1.image('https://avatars.githubusercontent.com/u/54600270?v=4', width=160)
col1.write('Jyotika')
col1.write('[Github](https://github.com/Jyotika999)')
col2.image('https://avatars.githubusercontent.com/u/58432166?v=4', width=160)
col2.write('Vidushi')
col2.write('[Github](https://github.com/vidushi1012)')
col3.image('https://avatars.githubusercontent.com/u/58389098?v=4', width=160)
col3.write('Aarushi')
col3.write('[Github](https://github.com/shee35)')
col4.image('https://avatars.githubusercontent.com/u/58399279?v=4', width=160)
col4.write('Medha')
col4.write('[Github](https://github.com/medhabalani)')