Spaces:
Sleeping
Sleeping
/* stylish_button.css */ | |
/* Body styling for dark theme */ | |
body { | |
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; | |
background-color: #000000; | |
color: #000000; | |
} | |
/* Title styling */ | |
h1 { | |
color: #1DB954; | |
text-align: center; | |
} | |
/* File uploader styling */ | |
div.stFileUploader { | |
margin-top: 20px; | |
color: #ffffff; | |
text-align: center; | |
} | |
/* Text input styling */ | |
div.stTextInput { | |
margin-top: 20px; | |
} | |
/* Button styling */ | |
div.stButton>button { | |
background-color: #4CAF50 ; /* Darker green */ | |
color: #ffffff ; | |
border-radius: 5px ; | |
padding: 10px 20px ; | |
font-size: 16px ; | |
border: none; | |
cursor: pointer; | |
transition: background-color 0.3s; | |
text-align: center; | |
} | |
/* Download button text styling */ | |
div.stButton>button>span { | |
font-weight: bold ; | |
} | |
/* Download button hover effect */ | |
div.stButton>button:hover { | |
background-color: #45a049 ; /* Darker green on hover */ | |
} | |
/* Error message styling */ | |
p.errorMessage { | |
color: #ff0000; | |
text-align: center; | |
} | |
/* Audio player styling */ | |
div.stAudio { | |
margin-top: 20px; | |
} | |
/* Download button styling */ | |
div.stDownloadButton>button { | |
background-color: #4CAF50 ; /* Darker green */ | |
color: #ffffff ; | |
border-radius: 5px ; | |
padding: 10px 20px ; | |
font-size: 16px ; | |
border: none; | |
cursor: pointer; | |
transition: background-color 0.3s; | |
text-align: center; | |
} | |
/* Download button text styling */ | |
div.stDownloadButton>button>span { | |
font-weight: bold ; | |
} | |
/* Download button hover effect */ | |
div.stDownloadButton>button:hover { | |
background-color: #45a049 ; /* Darker green on hover */ | |
} | |