deep-fun / style.css
pretzinger's picture
Enhance app.py with error handling and logging
aacdac0
/* style.css */
/* Set the background color to black */
body {
background-color: #000000;
color: #00FF00;
font-family: 'Courier New', Courier, monospace;
}
/* Style the header */
h1, h2, h3, h4, h5, h6 {
color: #00FF00;
}
/* Style the text input and buttons */
.stTextInput > div > div > input {
background-color: #000000;
color: #00FF00;
border: 2px solid #00FF00;
border-radius: 5px;
}
.stButton > button {
background-color: #00FF00;
color: #000000;
border: 2px solid #00FF00;
border-radius: 5px;
}
.stButton > button:hover {
background-color: #00CC00;
color: #FFFFFF;
border: 2px solid #00CC00;
}
/* Style the spinner and success/error messages */
div[data-testid="stSpinner"] > div {
border-top-color: #00FF00;
}
.stAlert {
background-color: #000000;
color: #00FF00;
border: 2px solid #00FF00;
border-radius: 5px;
}
/* Remove Streamlit's default padding */
.css-18e3th9 {
padding-top: 1rem;
padding-bottom: 1rem;
}