File size: 1,732 Bytes
129ee36
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
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;
}