Spaces:
Running
Running
File size: 2,617 Bytes
4f6613a |
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 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 |
:root {
--my-200: #80eeee;
--my-50: #ecfdf5;
--water-width: 300px;
--water-heigh: 300px;
}
/* general styled components */
.tools {
align-items: center;
justify-content: center;
}
.gradio-button {
max-width: 2.2em;
min-width: 2.2em !important;
height: 2.4em;
align-self: end;
line-height: 1em;
border-radius: 0.5em;
}
.gradio-button.secondary-down, .gradio-button.secondary-down:hover{
box-shadow: 1px 1px 1px rgba(0,0,0,0.25) inset, 0px 0px 3px rgba(0,0,0,0.15) inset;
}
/* replace original footer with ours */
a{
font-weight: bold;
cursor: pointer;
color: #030C14 !important;
}
footer {
display: none !important;
}
#footer{
text-align: center;
}
#footer div{
display: inline-block;
}
#footer .versions{
font-size: 85%;
opacity: 0.85;
}
/*@keyframes moveBackground {*/
/* 0% {*/
/* background-position: 0 0;*/
/* }*/
/* 100% {*/
/* background-position: -100px 100px;*/
/* }*/
/*}*/
@keyframes moveJellyBackground {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
.gradio-container {
position: absolute;
z-index: 10;
}
.quan {
position: absolute;
bottom: 0;
width: var(--water-width);
height: var(--water-heigh);
border-radius: 0;
/*border: 3px solid rgb(246, 247, 248);*/
/*box-shadow: 0 0 0 3px rgb(41, 134, 196);*/
z-index: 0;
}
.quan:last-child {
margin-right: 0;
}
.shui {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgb(23, 106, 201);
border-radius: 0;
overflow: hidden;
z-index: 0;
}
.shui::after {
content: '';
position: absolute;
top: 20%;
left: 50%;
width: 150%;
height: 150%;
border-radius: 40%;
background-image: radial-gradient(circle at 0% 50%, #dcfcf1, var(--my-50) 50%);
animation: shi 5s linear infinite;
}
@keyframes shi {
0% {
transform: translate(-50%, -65%) rotate(0deg);
}
100% {
transform: translate(-50%, -65%) rotate(360deg);
}
}
.shui::before {
content: '';
position: absolute;
top: 20%;
left: 50%;
width: 150%;
height: 150%;
border-radius: 42%;
background-color: rgb(240, 228, 228, 0.2);
animation: xu 7s linear infinite;
}
@keyframes xu {
0% {
transform: translate(-50%, -60%) rotate(0deg);
}
100% {
transform: translate(-50%, -60%) rotate(360deg);
}
}
fieldset.data_src div.wrap label {
background: #f8bffee0 !important;
}
.scrollable-component {
max-height: 100px;
overflow-y: auto;
}
#file_accordion {
max-height: 220px !important;
}
|