Spaces:
Runtime error
Runtime error
File size: 1,611 Bytes
e9cd033 |
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 |
/* Apply background color to the button */
#generate_button {
background: #FF822D !important;
color: white !important;
padding: 20px 20px !important;
border: none !important;
cursor: pointer !important;
transition: background-color 0.3s !important;
}
/* Apply hover effect on the button */
#generate_button:hover {
background: #FF822D !important;
}
/* Apply custom appearance when the checkbox is checked */
#negative_prompt_checkbox input[type="checkbox"]:checked {
background-color: #FF822D !important;
color: white !important;
border-color: #FF822D !important;
}
#website_button,
#youtube_button {
border: var(--button-border-width) solid var(--button-secondary-border-color);
background: var(--button-secondary-background-fill);
color: var(--button-secondary-text-color);
border-radius: var(--button-large-radius);
font-weight: var(--button-large-text-weight);
font-size: var(--button-large-text-size);
flex: 1 1 0%;
flex-wrap: wrap;
min-width: min(160px, 100%);
display: inline-flex;
justify-content: center;
align-items: center;
transition: var(--button-transition);
box-shadow: var(--button-shadow);
padding: var(--size-0-5) var(--size-2);
text-align: center;
cursor: pointer;
}
#website_button:hover,
#youtube_button:hover {
background: #FF822D !important;
}
#input_header,
#output_header {
font-weight: bold;
}
.gradio-column .dropdown-arrow.svelte-p5edak {
fill: #FF822D;
margin-right: var(--size-2);
width: var(--size-5);
}
hr.rounded {
margin-bottom: 5vh;
} |