File size: 1,899 Bytes
a6ab12b 0f8252d a6ab12b 394749d 28d51d7 a6ab12b 28d51d7 a6ab12b 28d51d7 394749d a6ab12b 28d51d7 a6ab12b 394749d 28d51d7 a6ab12b 28d51d7 a6ab12b 394749d 28d51d7 0f8252d 28d51d7 a6ab12b 28d51d7 0f8252d a6ab12b 28d51d7 a6ab12b 394749d 0f8252d 394749d 28d51d7 5b215f0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 |
import streamlit as st
import pandas as pd
import numpy as np
import random
import requests
# Apply custom CSS with stronger selectors
st.markdown("""
<style>
/* Force background color */
html, body, .stApp {
background-color: #0A192F !important;
color: #FFFFFF !important;
}
/* Title and headers styling */
.stApp h1 {
color: #00FFFF !important;
font-family: 'Roboto', sans-serif;
font-weight: 700 !important;
text-align: center !important;
}
.stApp h2 {
color: #FFCD00 !important;
font-family: 'Roboto', sans-serif;
font-weight: 600 !important;
text-align: center !important;
}
/* Improve sidebar styling */
section[data-testid="stSidebar"] {
background-color: #1C1C1C !important;
color: white !important;
padding: 20px !important;
border-radius: 10px !important;
}
section[data-testid="stSidebar"] h1,
section[data-testid="stSidebar"] h2,
section[data-testid="stSidebar"] h3,
section[data-testid="stSidebar"] p {
color: white !important;
}
/* Force paragraph and text colors */
.stMarkdown p, .stApp p {
font-family: 'Georgia', serif !important;
font-size: 16px !important;
color: #EAEAEA !important; /* Light grey for better visibility */
line-height: 1.8 !important;
}
/* Button styling */
.stButton>button {
background-color: #007BFF !important;
color: white !important;
border-radius: 8px !important;
padding: 10px 20px !important;
font-weight: bold !important;
}
/* Fix text inside widgets */
.stTextInput>div>div>input {
background-color: #1E1E1E !important;
color: white !important;
}
</style>
""", unsafe_allow_html=True)
# Title
st.title("AUTO ML")
|