-
Notifications
You must be signed in to change notification settings - Fork 2
/
signature.py
32 lines (29 loc) · 948 Bytes
/
signature.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
import streamlit as st
# Define a function to display the signature
def display_signature():
st.markdown(
"""
<style>
.signature {
font-size: 1rem;
font-style: italic;
text-align: center;
padding: 1rem 0;
color: #333;
transition: color 0.5s ease-in-out;
}
.signature:hover {
color: #007bff;
}
</style>
"""
, unsafe_allow_html=True
)
st.markdown(
"""
<div class="signature">
Made with ❤️ by Shib Kumar Saraf
</div>
"""
, unsafe_allow_html=True
)