Spaces:
Running
Running
File size: 494 Bytes
e2fe450 832c690 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
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)
|