| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- /*:root {
- --main-color: #EE0033;
- --background-color-1: #eef5fb;
- --star-color: #ffc911;
- }*/
- /*:root {
- --main-color: #F36F21;
- --background-color-1: #eef5fb;
- --star-color: #ffc911;
- }*/
- :root {
- --main-color: #FF3211;
- --background-color-1: #eef5fb;
- --star-color: #ffc911;
- }
- #loading {
- width: 100%;
- height: 100%;
- top: 0px;
- left: 0px;
- position: fixed;
- display: block;
- opacity: 0.9;
- background-color: transparent;
- z-index: 99;
- text-align: center;
- }
- #loading-content {
- position: absolute;
- top: 50%;
- left: calc(50% - 40px);
- text-align: center;
- z-index: 100;
- }
- .loader {
- border: 5px solid #f3f3f3; /* Light grey */
- border-top: 5px solid var(--main-color); /* Blue */
- border-radius: 50%;
- width: 80px;
- height: 80px;
- animation: spin 1s linear infinite;
- }
- @keyframes spin {
- 0% {
- transform: rotate(0deg);
- }
- 100% {
- transform: rotate(360deg);
- }
- }
- .hide {
- display: none !important;
- }
|