Text-to-Voice / style.css
ruslanmv's picture
Update style.css
a479ddf
/* Custom CSS for Streamlit App */
/* Header Style */
header {
background-color: #5072A7; /* A soothing shade of blue */
color: white; /* Ensuring the text on the header is white for contrast */
}
/* Main Body Style */
body {
font-family: Arial, sans-serif; /* Using a standard, readable font */
color: #333333; /* Dark grey color for the main text */
}
/* Titles and Headings */
h1, h2, h3 {
color: #e8ff1a; /* A darker shade of blue for headings */
}
/* Buttons */
button {
background-color: #4CAF50; /* A green color for buttons */
color: white;
padding: 10px 20px;
margin: 10px 0;
border: none;
cursor: pointer;
border-radius: 5px;
}
button:hover {
background-color: #45a049;
}
/* Footer Style */
footer {
background-color: #333333; /* Dark footer for contrast */
color: white;
text-align: center;
padding: 10px;
position: fixed;
left: 0;
bottom: 0;
width: 100%;
}