Spaces:
Runtime error
Runtime error
| body { | |
| font-family: 'Segoe UI', sans-serif; | |
| background-color: #888888; /* Changed to grey background */ | |
| color: #cccccc; /* Changed text color to grey tone */ | |
| margin: 0; | |
| padding: 20px; | |
| } | |
| .container { | |
| max-width: 800px; | |
| background: #000; /* Changed to black */ | |
| margin: 20px auto; | |
| box-shadow: 0 2px 4px rgba(0,0,0,0.2); | |
| padding: 20px; | |
| border-radius: 8px; | |
| border: 2px solid #007bff; /* Added blue border */ | |
| } | |
| h1, h2, h3, h4 { | |
| color: #cccccc; /* Changed heading color to grey tone */ | |
| } | |
| .markdown { | |
| line-height: 1.6; | |
| color: #cccccc; /* Ensured markdown text is also grey tone */ | |
| } | |
| /* Styles for Gradio interface elements */ | |
| .audio, .image, .textbox, .button { | |
| margin-bottom: 20px; | |
| background: #000; /* Background black for inputs and outputs */ | |
| border: 1px solid #007bff; /* Blue border for inputs and outputs */ | |
| color: #cccccc; /* Grey tone text for inputs and outputs */ | |
| } | |
| /* Modified input boxes, buttons, and outputs for better visibility */ | |
| .audio input, .textbox input, .button, .gradio-output { | |
| width: 100%; | |
| padding: 10px; | |
| margin-top: 5px; | |
| box-sizing: border-box; | |
| border-radius: 5px; | |
| border: 1px solid #007bff; /* Blue border */ | |
| background: #000; /* Background black */ | |
| color: #cccccc; /* Text grey tone */ | |
| } | |
| .button { | |
| background-color: #0056b3; | |
| color: white; | |
| cursor: pointer; | |
| } | |
| .button:hover { | |
| background-color: #003d82; | |
| } | |
| /* Aligning visual elements (waveform, spectrogram) horizontally */ | |
| .gr-row > div { | |
| flex: 1; | |
| } | |
| /* Specific styles for images to ensure they are visible */ | |
| .image img { | |
| max-width: 100%; | |
| height: auto; | |
| display: block; | |
| margin: auto; | |
| border-radius: 5px; | |
| } | |