Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,30 @@ def generate_pdf(name, reg_num, ass_name, text_in, file):
# Title
st.title('PDF Maker')

#hides the "made with streamlitt footer"
hide_st_style= """
<style>
#MainMenu {visiblity: hidden;}
footer {visibility: hidden;}
</style>"""

#chaninging background
pg_bg= """
<style>
[data-testid="stAppViewContainer"]{
background-color: #444cf755;
opacity: 0.8;
background-image: repeating-radial-gradient( circle at 0 0, transparent 0, #000000 10px ), repeating-linear-gradient( #00000055, #000000 );



}

</style>"""
st.markdown(pg_bg,unsafe_allow_html=True)
st.markdown(hide_st_style, unsafe_allow_html=True)


# Inputs
user_name = st.text_input('Enter your name')
reg_num = st.text_input('Enter your registration number')
Expand Down