Spaces:
Sleeping
Sleeping
Sathwikchowdary
commited on
Update pages/Data_Collection.py
Browse files- pages/Data_Collection.py +26 -0
pages/Data_Collection.py
CHANGED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
import pandas as pd
|
3 |
+
import numpy as np
|
4 |
+
import streamlit as st
|
5 |
+
custom_css = """
|
6 |
+
<style>
|
7 |
+
html, body, [data-testid="stAppViewContainer"] {
|
8 |
+
background-image: linear-gradient(
|
9 |
+
rgba(0, 0, 0, 0.6),
|
10 |
+
rgba(0, 0, 0, 0.6)
|
11 |
+
),
|
12 |
+
url("https://www.istockphoto.com/photo/tech-or-space-background-abstract-3d-illustration-gm1367865109-437999705?utm_source=pixabay&utm_medium=affiliate&utm_campaign=SRP_photo_sponsored&utm_content=https%3A%2F%2Fpixabay.com%2Fphotos%2Fsearch%2Fbackground%2520datascience%2F&utm_term=background+datascience.jpg");
|
13 |
+
background-size: cover;
|
14 |
+
background-position: center;
|
15 |
+
background-repeat: no-repeat;
|
16 |
+
background-attachment: fixed;
|
17 |
+
color: white; /* Ensures all text is readable */
|
18 |
+
}
|
19 |
+
h2, h3 {
|
20 |
+
color: #FFD700; /* Gold color for headings */
|
21 |
+
}
|
22 |
+
p {
|
23 |
+
color: #FFFFFF; /* White text for paragraphs */
|
24 |
+
}
|
25 |
+
</style>
|
26 |
+
"""
|