Spaces:
Sleeping
Sleeping
Create app.py
Browse files
app.py
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import streamlit as st
|
| 2 |
+
import pandas as pd
|
| 3 |
+
|
| 4 |
+
st.markdown("""
|
| 5 |
+
<style>
|
| 6 |
+
/* Set full-page width and remove Streamlit default padding */
|
| 7 |
+
.stApp {
|
| 8 |
+
background-color: #d0e8ff;
|
| 9 |
+
}
|
| 10 |
+
.main .block-container {
|
| 11 |
+
padding-top: 2rem;
|
| 12 |
+
padding-right: 2rem;
|
| 13 |
+
padding-left: 2rem;
|
| 14 |
+
padding-bottom: 2rem;
|
| 15 |
+
max-width: 100%;
|
| 16 |
+
}
|
| 17 |
+
.about-author {
|
| 18 |
+
background-color: rgba(255, 255, 255, 0.8);
|
| 19 |
+
padding: 1.5rem;
|
| 20 |
+
border-radius: 15px;
|
| 21 |
+
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
|
| 22 |
+
}
|
| 23 |
+
.author-links a {
|
| 24 |
+
margin-right: 15px;
|
| 25 |
+
font-weight: bold;
|
| 26 |
+
color: #4b0082;
|
| 27 |
+
text-decoration: none;
|
| 28 |
+
}
|
| 29 |
+
.author-links a:hover {
|
| 30 |
+
text-decoration: underline;
|
| 31 |
+
}
|
| 32 |
+
</style>
|
| 33 |
+
""", unsafe_allow_html=True)
|
| 34 |
+
|
| 35 |
+
# Main Heading
|
| 36 |
+
|
| 37 |
+
st.markdown('<h2 style="text-align: center;"><span style="color:#003366;">Welcome to Image Augmentation </span></h2>', unsafe_allow_html=True)
|
| 38 |
+
|
| 39 |
+
st.markdown("<br>", unsafe_allow_html=True)
|