Update frontend/css/style.css
Browse files- frontend/css/style.css +19 -0
frontend/css/style.css
CHANGED
|
@@ -447,6 +447,25 @@ html {
|
|
| 447 |
-moz-osx-font-smoothing: grayscale;
|
| 448 |
}
|
| 449 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 450 |
::selection {
|
| 451 |
background: rgba(59, 130, 246, 0.3);
|
| 452 |
color: white;
|
|
|
|
| 447 |
-moz-osx-font-smoothing: grayscale;
|
| 448 |
}
|
| 449 |
|
| 450 |
+
|
| 451 |
+
/* ============================================
|
| 452 |
+
ACCESSIBILITY & POLISH
|
| 453 |
+
============================================ */
|
| 454 |
+
.loading-spinner {
|
| 455 |
+
display: inline-block;
|
| 456 |
+
width: 50px;
|
| 457 |
+
height: 50px;
|
| 458 |
+
border: 5px solid rgba(255, 255, 255, 0.3);
|
| 459 |
+
border-top-color: #78C841;
|
| 460 |
+
border-radius: 50%;
|
| 461 |
+
animation: spin 1s linear infinite;
|
| 462 |
+
}
|
| 463 |
+
|
| 464 |
+
@keyframes spin {
|
| 465 |
+
to { transform: rotate(360deg); }
|
| 466 |
+
}
|
| 467 |
+
|
| 468 |
+
|
| 469 |
::selection {
|
| 470 |
background: rgba(59, 130, 246, 0.3);
|
| 471 |
color: white;
|