autoML / pages /classification_pages /1_info_about_dataset.py
Sreeja6600's picture
Update pages/classification_pages/1_info_about_dataset.py
832c690 verified
raw
history blame contribute delete
494 Bytes
import streamlit as st
import pandas as pd
custom_css = """
<style>
html, body, [data-testid="stAppViewContainer"] {
background:url('https://images.pexels.com/photos/1435752/pexels-photo-1435752.jpeg?auto=compress&cs=tinysrgb&w=600') no-repeat center center fixed;
background-size: cover; /* Cover the entire screen */
font-family: Arial, sans-serif;
color: #333333;
}
</style>"""
# Apply custom CSS
st.markdown(custom_css, unsafe_allow_html=True)