Update app.py
Browse files
app.py
CHANGED
@@ -1,16 +1,10 @@
|
|
1 |
import streamlit as st
|
2 |
from pytube import YouTube
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
}@keyframes rotate {
|
10 |
-
100%{
|
11 |
-
filter: hue-rotate(-360deg)
|
12 |
-
}
|
13 |
-
}</style><div class="m"></div>")
|
14 |
|
15 |
|
16 |
# Load Animation
|
|
|
1 |
import streamlit as st
|
2 |
from pytube import YouTube
|
3 |
+
|
4 |
+
with open('style.css') as f:
|
5 |
+
st.markdown(f'<style>{f.read()}</style>',unsafe_allow_html=True)
|
6 |
+
|
7 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
|
9 |
|
10 |
# Load Animation
|