Spaces:
Running
Running
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) | |