Spaces:
Running
Running
Upload style.css with huggingface_hub
Browse files
style.css
CHANGED
|
@@ -121,13 +121,64 @@ body {
|
|
| 121 |
transform: translateX(-50%);
|
| 122 |
width: 90%;
|
| 123 |
max-width: 600px;
|
| 124 |
-
padding: 20px;
|
| 125 |
background: rgba(30,30,30,0.9);
|
| 126 |
backdrop-filter: blur(30px);
|
| 127 |
-webkit-backdrop-filter: blur(30px);
|
| 128 |
border-radius: 16px;
|
| 129 |
border: 1px solid rgba(255,255,255,0.1);
|
| 130 |
z-index: 10;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 131 |
}
|
| 132 |
|
| 133 |
.primary-btn {
|
|
@@ -398,6 +449,10 @@ body {
|
|
| 398 |
width: calc(100% - 40px);
|
| 399 |
}
|
| 400 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 401 |
.live-caption {
|
| 402 |
bottom: 20px;
|
| 403 |
width: calc(100% - 40px);
|
|
|
|
| 121 |
transform: translateX(-50%);
|
| 122 |
width: 90%;
|
| 123 |
max-width: 600px;
|
|
|
|
| 124 |
background: rgba(30,30,30,0.9);
|
| 125 |
backdrop-filter: blur(30px);
|
| 126 |
-webkit-backdrop-filter: blur(30px);
|
| 127 |
border-radius: 16px;
|
| 128 |
border: 1px solid rgba(255,255,255,0.1);
|
| 129 |
z-index: 10;
|
| 130 |
+
transition: all 0.3s ease;
|
| 131 |
+
}
|
| 132 |
+
|
| 133 |
+
.controls.collapsed {
|
| 134 |
+
width: auto;
|
| 135 |
+
max-width: none;
|
| 136 |
+
background: rgba(30,30,30,0.7);
|
| 137 |
+
}
|
| 138 |
+
|
| 139 |
+
.controls.collapsed .controls-content {
|
| 140 |
+
display: none;
|
| 141 |
+
}
|
| 142 |
+
|
| 143 |
+
.controls.collapsed .controls-toggle {
|
| 144 |
+
transform: rotate(180deg);
|
| 145 |
+
}
|
| 146 |
+
|
| 147 |
+
.controls-toggle {
|
| 148 |
+
display: none;
|
| 149 |
+
width: 40px;
|
| 150 |
+
height: 40px;
|
| 151 |
+
background: transparent;
|
| 152 |
+
border: none;
|
| 153 |
+
color: rgba(255,255,255,0.8);
|
| 154 |
+
cursor: pointer;
|
| 155 |
+
transition: all 0.3s ease;
|
| 156 |
+
margin: 0 auto;
|
| 157 |
+
padding: 0;
|
| 158 |
+
}
|
| 159 |
+
|
| 160 |
+
.controls-toggle:hover {
|
| 161 |
+
color: white;
|
| 162 |
+
}
|
| 163 |
+
|
| 164 |
+
.controls-toggle svg {
|
| 165 |
+
width: 24px;
|
| 166 |
+
height: 24px;
|
| 167 |
+
}
|
| 168 |
+
|
| 169 |
+
.controls.collapsed .controls-toggle {
|
| 170 |
+
display: flex;
|
| 171 |
+
align-items: center;
|
| 172 |
+
justify-content: center;
|
| 173 |
+
padding: 10px;
|
| 174 |
+
}
|
| 175 |
+
|
| 176 |
+
.controls:not(.collapsed) .controls-toggle {
|
| 177 |
+
display: none;
|
| 178 |
+
}
|
| 179 |
+
|
| 180 |
+
.controls-content {
|
| 181 |
+
padding: 20px;
|
| 182 |
}
|
| 183 |
|
| 184 |
.primary-btn {
|
|
|
|
| 449 |
width: calc(100% - 40px);
|
| 450 |
}
|
| 451 |
|
| 452 |
+
.controls.collapsed {
|
| 453 |
+
width: auto;
|
| 454 |
+
}
|
| 455 |
+
|
| 456 |
.live-caption {
|
| 457 |
bottom: 20px;
|
| 458 |
width: calc(100% - 40px);
|