Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,4 +1,19 @@
|
|
| 1 |
import streamlit as st
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
st.markdown(
|
| 3 |
"<h1 style='text-align: center;'>ZERO TO HERO IN MACHINE LEARNING..!</h1>",
|
| 4 |
unsafe_allow_html=True
|
|
|
|
| 1 |
import streamlit as st
|
| 2 |
+
custom_css = """
|
| 3 |
+
<style>
|
| 4 |
+
html, body, [data-testid="stAppViewContainer"] {
|
| 5 |
+
background: linear-gradient(
|
| 6 |
+
rgba(255, 255, 255, 0.8), /* Semi-transparent white overlay */
|
| 7 |
+
rgba(200, 200, 255, 0.8)
|
| 8 |
+
),
|
| 9 |
+
url('https://i.imgur.com/vIszbgs.jpeg') no-repeat center center fixed;
|
| 10 |
+
background-size: cover; /* Cover the entire screen */
|
| 11 |
+
font-family: Arial, sans-serif;
|
| 12 |
+
color: #333333;
|
| 13 |
+
}
|
| 14 |
+
</style>"""
|
| 15 |
+
|
| 16 |
+
|
| 17 |
st.markdown(
|
| 18 |
"<h1 style='text-align: center;'>ZERO TO HERO IN MACHINE LEARNING..!</h1>",
|
| 19 |
unsafe_allow_html=True
|