Spaces:
Sleeping
Sleeping
File size: 705 Bytes
e4a4298 |
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 |
.gradio-container {
background-color:#0b1c31 !important;
max-width: 100%!important;
}
footer {
visibility: hidden
}
.gradio-container div, .gradio-container button, .gradio-container input {
border-radius:2px !important
}
.gradio-container .container, .gradio-container .contain {
background-color: transparent!important;
max-width: 100%!important;
}
::-webkit-scrollbar {
width: 6px;
height: 8px;
}
/* Track */
::-webkit-scrollbar-track {
background: #222323;
border-radius: 2px;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #686e76;
border-radius: 2px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #79818b;
}
|