wzkariampuzha commited on
Commit
3239353
1 Parent(s): a400b1e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +31 -0
app.py CHANGED
@@ -57,6 +57,37 @@ st.markdown("""
57
  </style>
58
  """, unsafe_allow_html=True)
59
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
60
  #### DESCRIPTION ####
61
  st.markdown("This application was built by the [National Center for Advancing Translational Sciences (NCATS)](https://ncats.nih.gov/) to automatically search and extract rare disease epidemiology information from PubMed abstracts.")
62
 
 
57
  </style>
58
  """, unsafe_allow_html=True)
59
 
60
+ ### ADD NEW FOOTER
61
+ footer="""<style>
62
+ a:link , a:visited{
63
+ color: blue;
64
+ background-color: transparent;
65
+ text-decoration: underline;
66
+ }
67
+
68
+ a:hover, a:active {
69
+ color: red;
70
+ background-color: transparent;
71
+ text-decoration: underline;
72
+ }
73
+
74
+ .footer {
75
+ position: fixed;
76
+ left: 0;
77
+ bottom: 0;
78
+ width: 100%;
79
+ background-color: white;
80
+ color: black;
81
+ text-align: center;
82
+ }
83
+ </style>
84
+ <div class="footer">
85
+ <p>Developed with ❤ by <a style='display: block; text-align: center;' href="https://github.com/wzkariampuzha" target="_blank">William Kariampuzha at NIH/NCATS</a></p>
86
+ </div>
87
+ """
88
+ st.markdown(footer,unsafe_allow_html=True)
89
+
90
+
91
  #### DESCRIPTION ####
92
  st.markdown("This application was built by the [National Center for Advancing Translational Sciences (NCATS)](https://ncats.nih.gov/) to automatically search and extract rare disease epidemiology information from PubMed abstracts.")
93