Spaces:
Sleeping
Sleeping
File size: 1,014 Bytes
aacdac0 |
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 |
/* 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;
} |