Update app.py
Browse files
app.py
CHANGED
@@ -2,6 +2,12 @@ import streamlit as st
|
|
2 |
from pytube import YouTube
|
3 |
|
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
|
6 |
# Load Animation
|
7 |
animation_symbol = "❄"
|
|
|
2 |
from pytube import YouTube
|
3 |
|
4 |
|
5 |
+
def local_css(file_name):
|
6 |
+
with open(file_name) as f:
|
7 |
+
st.markdown(f"<style>{f.read()}</style>", unsafe_allow_html=True)
|
8 |
+
|
9 |
+
|
10 |
+
local_css("style/style.css")
|
11 |
|
12 |
# Load Animation
|
13 |
animation_symbol = "❄"
|