Geek7 commited on
Commit
49efcb3
·
1 Parent(s): 6fe2089

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -3
app.py CHANGED
@@ -2,9 +2,16 @@ import streamlit as st
2
  from pytube import YouTube
3
 
4
 
5
- with open('./bg.css') as f:
6
- css = f.read()
7
- st.markdown(f'<style>{css}</style>', unsafe_allow_html=True)
 
 
 
 
 
 
 
8
 
9
  class YouTubeDownloader:
10
  @staticmethod
 
2
  from pytube import YouTube
3
 
4
 
5
+ hide_streamlit_style = """
6
+ <style>
7
+ #MainMenu {visibility: hidden;}
8
+ footer {visibility: hidden;}
9
+ background-image:url("./color-pallete.gif”)
10
+
11
+ </style>
12
+ """
13
+
14
+ st.markdown( hide_streamlit_style, unsafe_allow_html=True)
15
 
16
  class YouTubeDownloader:
17
  @staticmethod