Update app.py
Browse files
app.py
CHANGED
|
@@ -7,7 +7,25 @@ def local_css(file_name):
|
|
| 7 |
st.markdown(f"<style>{f.read()}</style>", unsafe_allow_html=True)
|
| 8 |
|
| 9 |
|
| 10 |
-
local_css("style.css")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
|
| 12 |
class YouTubeDownloader:
|
| 13 |
@staticmethod
|
|
|
|
| 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 = "❄"
|
| 14 |
+
|
| 15 |
+
st.markdown(
|
| 16 |
+
f"""
|
| 17 |
+
<div class="snowflake">{animation_symbol}</div>
|
| 18 |
+
<div class="snowflake">{animation_symbol}</div>
|
| 19 |
+
<div class="snowflake">{animation_symbol}</div>
|
| 20 |
+
<div class="snowflake">{animation_symbol}</div>
|
| 21 |
+
<div class="snowflake">{animation_symbol}</div>
|
| 22 |
+
<div class="snowflake">{animation_symbol}</div>
|
| 23 |
+
<div class="snowflake">{animation_symbol}</div>
|
| 24 |
+
<div class="snowflake">{animation_symbol}</div>
|
| 25 |
+
<div class="snowflake">{animation_symbol}</div>
|
| 26 |
+
""",
|
| 27 |
+
unsafe_allow_html=True,
|
| 28 |
+
)
|
| 29 |
|
| 30 |
class YouTubeDownloader:
|
| 31 |
@staticmethod
|