Spaces:
Running
Running
Update style.css
Browse files
style.css
CHANGED
|
@@ -264,4 +264,57 @@ h3 i {
|
|
| 264 |
.curve-container {
|
| 265 |
min-width: 100%;
|
| 266 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 267 |
}
|
|
|
|
| 264 |
.curve-container {
|
| 265 |
min-width: 100%;
|
| 266 |
}
|
| 267 |
+
}
|
| 268 |
+
.loading-overlay {
|
| 269 |
+
position: fixed;
|
| 270 |
+
top: 0;
|
| 271 |
+
left: 0;
|
| 272 |
+
width: 100%;
|
| 273 |
+
height: 100%;
|
| 274 |
+
background-color: rgba(0, 0, 0, 0.7);
|
| 275 |
+
display: flex;
|
| 276 |
+
flex-direction: column;
|
| 277 |
+
justify-content: center;
|
| 278 |
+
align-items: center;
|
| 279 |
+
z-index: 1000;
|
| 280 |
+
display: none;
|
| 281 |
+
}
|
| 282 |
+
|
| 283 |
+
.loading-spinner {
|
| 284 |
+
border: 5px solid #f3f3f3;
|
| 285 |
+
border-top: 5px solid var(--primary-color);
|
| 286 |
+
border-radius: 50%;
|
| 287 |
+
width: 50px;
|
| 288 |
+
height: 50px;
|
| 289 |
+
animation: spin 1s linear infinite;
|
| 290 |
+
margin-bottom: 15px;
|
| 291 |
+
}
|
| 292 |
+
|
| 293 |
+
.loading-text {
|
| 294 |
+
color: white;
|
| 295 |
+
font-size: 1.2em;
|
| 296 |
+
}
|
| 297 |
+
|
| 298 |
+
@keyframes spin {
|
| 299 |
+
0% { transform: rotate(0deg); }
|
| 300 |
+
100% { transform: rotate(360deg); }
|
| 301 |
+
}
|
| 302 |
+
|
| 303 |
+
/* 適用ボタンのスタイルを微調整 */
|
| 304 |
+
#apply-btn {
|
| 305 |
+
background-color: #28a745;
|
| 306 |
+
}
|
| 307 |
+
|
| 308 |
+
#apply-btn:hover {
|
| 309 |
+
background-color: #218838;
|
| 310 |
+
}
|
| 311 |
+
|
| 312 |
+
/* ダウンロードボタンのスタイル調整 */
|
| 313 |
+
#download-btn {
|
| 314 |
+
background-color: var(--secondary-color);
|
| 315 |
+
color: white;
|
| 316 |
+
}
|
| 317 |
+
|
| 318 |
+
#download-btn:hover {
|
| 319 |
+
background-color: #5a6268;
|
| 320 |
}
|