Spaces:
Running
Running
File size: 2,154 Bytes
2319518 |
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 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 |
#warning {background-color: #FFCCCB}
.rec {
font-size: 16px !important;
text-align:left}
.title {
font-size: 30px !important;
text-align:center}
.desc {
font-size: 16px !important;
text-align:center}
.div_tmp {
height: 190px;
border-radius: 5px
}
.div_rec {
height: 300px;
border-radius: 5px
}
.bt_small_font{
font-size: 6px;
}
.bt_small{
width: 30px;
}
.md_tmp {
height: calc(100dvh - 380px);
border-radius: 5px
}
.add_scrollbar {
overflow-y: scroll;
}
.content {
height: calc(100% - 50px);
overflow-y: scroll;
}
.custom-checkbox {
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
width: 10px;
height: 10px;
border-radius: 50%;
border: 2px solid #ccc;
outline: none;
cursor: pointer;
}
.custom-checkbox:checked {
background-color: rgb(100, 239, 144);
}
.dark svg {
fill: white;
}
.dark a {
color: white !important;
}
.textbox_default textarea {
height: calc(100dvh - 200px);
}
.textbox_default_output textarea {
height: calc(100dvh - 200px);
}
.textbox textarea {
height: calc(100dvh - 200px);
}
.textbox_default textarea,
.textbox_default_output textarea,
.textbox textarea
{
font-size: 16px !important;
color: #46464A !important;
}
.dark textarea {
color: #efefef !important;
}
@media screen and (max-width: 711px) {
.textbox_default textarea {
height: calc(100dvh - 271px);
}
div .default-token-counter {
top: calc( 0.5 * (100dvh - 245px) ) !important;
}
}
/* Hide the gradio footer*/
footer {
display: none !important;
}
button {
font-size: 14px !important;
}
.token-counter {
position: absolute !important;
top: calc( 0.5 * (100dvh - 215px) ) !important;
right: 2px;
z-index: 100;
background: var(--input-background-fill) !important;
min-height: 0 !important;
}
.default-token-counter {
top: calc( 0.5 * (100dvh - 255px) ) !important;
}
.token-counter span {
padding: 1px;
box-shadow: 0 0 0 0.3em rgba(192,192,192,0.15), inset 0 0 0.6em rgba(192,192,192,0.075);
border: 2px solid rgba(192,192,192,0.4) !important;
border-radius: 0.4em;
}
|