ruslanruslanruslan commited on
Commit
aef8c9d
1 Parent(s): 56b5fe6
Files changed (1) hide show
  1. app.py +12 -8
app.py CHANGED
@@ -2,11 +2,15 @@ import streamlit as st
2
 
3
  st.title('A multipage application featuring various Natural Language Processing instruments and functions')
4
  st.markdown(
5
- f"""
6
- <style>
7
- p {
8
- background-image: url(aperiodic.png);
9
- }
10
- </style>
11
- """,
12
- unsafe_allow_html=True)
 
 
 
 
 
2
 
3
  st.title('A multipage application featuring various Natural Language Processing instruments and functions')
4
  st.markdown(
5
+ """
6
+ <style>
7
+ body {
8
+ background-image: url('aperiodic.png');
9
+ background-size: cover;
10
+ background-repeat: no-repeat;
11
+ background-attachment: fixed;
12
+ }
13
+ </style>
14
+ """,
15
+ unsafe_allow_html=True
16
+ )