File size: 1,384 Bytes
7d82b61 |
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 |
body {
font-family: Arial, sans-serif;
color: #000; /* Set default text color to black */
}
.gradio-container {
background-color: #1a3e63; /* Background color similar to the image */
}
.gradio-block, .gradio-column, .gradio-row {
background-color: #fff; /* White background for blocks */
border-radius: 10px; /* Rounded corners */
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
margin: 10px;
padding: 20px;
}
.gradio-markdown {
color: #000; /* Text color set to black */
}
.gradio-button {
background-color: #4CAF50; /* Button color */
color: white; /* Button text color */
border: none;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 5px; /* Rounded corners */
}
.gradio-checkbox-group, .gradio-checkbox {
color: #000; /* Text color set to black */
}
.gradio-textbox {
color: #000; /* Text color set to black */
}
.gradio-header {
color: #000; /* Text color set to black */
}
.gradio-container p, .gradio-container h1, .gradio-container h2, .gradio-container h3, .gradio-container h4, .gradio-container h5, .gradio-container h6 {
color: #000; /* Ensure all header and paragraph texts are black */
}
|