Spaces:
Runtime error
Runtime error
File size: 2,384 Bytes
c21c77f |
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 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 |
.gr-box, .gr-form {
background: none !important;
border: none !important;
}
.gr-input {
background: #131d26 !important;
box-shadow: inset 0 0 0 1px #293139 !important;
border-radius: 2px !important;
padding: .5rem .75rem !important;
font-size: 1rem !important;
line-height: 1.5rem !important;
}
.gr-input:hover {
box-shadow: inset 0 0 0 2px #293139 !important;
}
input::-webkit-slider-runnable-track {
background: #131d26 !important;
box-shadow: inset 0 0 0 1px #293139 !important;
border-radius: 2px !important;
}
body {
overflow: overlay;
}
::-webkit-scrollbar {
width: .25rem;
height: .25rem;
}
:hover::-webkit-scrollbar {
width: .5rem;
height: .5rem;
}
::-webkit-scrollbar-corner {
background-color: #293139;
}
::-webkit-scrollbar-track {
background-color: transparent;
}
::-webkit-scrollbar-thumb {
background-color: #293139;
border-radius: 2px;
}
label > .z-40 {
font-size: 1rem !important;
padding: 0 0.75rem !important;
}
.gr-button:active, .gr-button:active, {
border: none !important;
outline: none !important;
}
.gr-button:hover, .gr-button:focus, .gr-button:active {
background: rgba( 255, 255, 255, .1 ) !important;
border: none !important;
}
.gr-button {
color: #6699cc !important;
border: none !important;
font-weight: normal !important;
background: transparent !important;
border-radius: 2px !important;
padding: .5rem .75rem !important;
min-width: auto !important;
white-space: nowrap !important;
align-self: center !important;
}
#translate {
margin-top: 2.5rem !important;
align-self: flex-start !important;
}
.output-markdown {
margin: .5rem .75rem !important;
}
body, .gradio-container {
font: 1rem/1.5rem 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}
.container {
max-width: none !important;
background: #15202a !important;
padding: .75rem !important;
}
footer {
display: none !important;
}
#longs-fillers {
min-width: auto !important;
}
#longs-fillers .gr-button {
justify-content: flex-start !important;
}
.gap-4 {
gap: 0 !important;
}
#paints > * {
margin: .75rem !important;
}
#paints > * > .border {
box-shadow: 0 0 0 1px rgba( 255, 255, 255, .1 ) !important;
background: rgba(0,0,0,.1) !important;
border-radius: 2px !important;
overflow: hidden !important;
}
#paints > * > .border > .absolute {
display: none !important;
}
|