|
|
|
.container-box {
|
|
border: 1px solid var(--border-color-primary);
|
|
border-radius: 10px;
|
|
padding: 20px;
|
|
background-color: var(--background-fill-primary);
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
|
|
h1, h2, h3, label {
|
|
color: var(--body-text-color);
|
|
font-weight: bold;
|
|
font-size: 1.35rem;
|
|
}
|
|
|
|
|
|
.output-box ,.scroll-box {
|
|
background-color: var(--background-fill-primary) !important;
|
|
color: var(--body-text-color) !important;
|
|
border: 2px dashed var(--border-color-primary, #ccc) !important;
|
|
border-radius: 10px !important;
|
|
padding: 18px !important;
|
|
font-size: 1.1rem !important;
|
|
}
|
|
|
|
|
|
.output-box::after {
|
|
content: "";
|
|
display: none;
|
|
position: absolute;
|
|
top: 10px;
|
|
right: 20px;
|
|
border: 4px solid #f3f3f3;
|
|
border-top: 4px solid #1e88e5;
|
|
border-radius: 50%;
|
|
width: 20px;
|
|
height: 20px;
|
|
animation: spin 1s linear infinite;
|
|
}
|
|
@keyframes spin {
|
|
0% { transform: rotate(0deg); }
|
|
100% { transform: rotate(360deg); }
|
|
}
|
|
|
|
|
|
.button-primary {
|
|
background-color: #1e88e5 !important;
|
|
color: white !important;
|
|
border-radius: 8px !important;
|
|
font-size: 1.05rem !important;
|
|
}
|
|
.button-primary:hover {
|
|
background-color: #1565c0 !important;
|
|
}
|
|
|
|
.button-secondary {
|
|
background-color: #ef5350 !important;
|
|
color: white !important;
|
|
border-radius: 8px !important;
|
|
font-size: 1.05rem !important;
|
|
}
|
|
.button-secondary:hover {
|
|
background-color: #c62828 !important;
|
|
}
|
|
|
|
|
|
gradio-textbox,
|
|
gradio-dropdown,
|
|
gradio-slider {
|
|
background-color: var(--background-fill-primary) !important;
|
|
color: var(--body-text-color) !important;
|
|
font-size: 1.05rem !important;
|
|
}
|
|
|
|
|
|
.scroll-box::-webkit-scrollbar {
|
|
width: 6px;
|
|
}
|
|
.scroll-box::-webkit-scrollbar-thumb {
|
|
background: #888;
|
|
border-radius: 4px;
|
|
}
|
|
.scroll-box::-webkit-scrollbar-thumb:hover {
|
|
background: #555;
|
|
}
|
|
|