Spaces:
Runtime error
Runtime error
File size: 1,649 Bytes
96808ee |
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 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 |
/* temporary fix to load default gradio font in frontend instead of backend */
:root, .dark{
--checkbox-label-gap: 0.25em 0.1em;
--section-header-text-size: 12pt;
--block-background-fill: transparent;
width: 50%;
min-width: 1024px;
justify-self: center;
align-items: center;
}
.block.padded:not(.gradio-accordion) {
padding: 0 !important;
}
div.gradio-container{
max-width: unset !important;
}
.hidden{
display: none !important;
}
.compact{
background: transparent !important;
padding: 0 !important;
}
div.form{
border-width: 0;
box-shadow: none;
background: transparent;
overflow: visible;
gap: 0.5em;
}
div.gradio-group, div.styler{
border-width: 0 !important;
background: none;
}
.gap.compact{
padding: 0;
gap: 0.2em 0;
}
div.compact{
gap: 1em;
}
.block.gradio-dropdown,
.block.gradio-slider,
.block.gradio-textbox,
.block.gradio-number {
border-width: 0 !important;
box-shadow: none !important;
}
.gradio-slider input[type="number"]{
width: 6em;
}
.gradio-slider{
margin-top: 0.75em;
}
/* .gradio-dropdown label span:not(.has-info),
.gradio-textbox label span:not(.has-info),
.gradio-number label span:not(.has-info)
{
margin-bottom: 0;
} */
/*
.gradio-dropdown label span,
.gradio-textbox label span,
.gradio-number label span
{
margin-bottom: 0 !important;
} */
.gradio-button{
max-width: 2.2em;
min-width: 2.2em !important;
height: 2.4em;
align-self: end;
line-height: 1em;
border-radius: 0.5em;
}
|