| 1 |
/* Quiz default */ |
| 2 |
|
| 3 |
.lds-ellipsis { |
| 4 |
display: inline-block; |
| 5 |
position: relative; |
| 6 |
width: 64px; |
| 7 |
height: 64px; |
| 8 |
} |
| 9 |
.lds-ellipsis div { |
| 10 |
position: absolute; |
| 11 |
top: 27px; |
| 12 |
width: 11px; |
| 13 |
height: 11px; |
| 14 |
border-radius: 50%; |
| 15 |
background: #000; |
| 16 |
animation-timing-function: cubic-bezier(0, 1, 1, 0); |
| 17 |
} |
| 18 |
.lds-ellipsis div:nth-child(1) { |
| 19 |
left: 8px; |
| 20 |
animation: lds-ellipsis1 0.6s infinite; |
| 21 |
} |
| 22 |
.lds-ellipsis div:nth-child(2) { |
| 23 |
left: 8px; |
| 24 |
animation: lds-ellipsis2 0.6s infinite; |
| 25 |
} |
| 26 |
.lds-ellipsis div:nth-child(3) { |
| 27 |
left: 32px; |
| 28 |
animation: lds-ellipsis2 0.6s infinite; |
| 29 |
} |
| 30 |
.lds-ellipsis div:nth-child(4) { |
| 31 |
left: 56px; |
| 32 |
animation: lds-ellipsis3 0.6s infinite; |
| 33 |
} |
| 34 |
@keyframes lds-ellipsis1 { |
| 35 |
0% { |
| 36 |
transform: scale(0); |
| 37 |
} |
| 38 |
100% { |
| 39 |
transform: scale(1); |
| 40 |
} |
| 41 |
} |
| 42 |
@keyframes lds-ellipsis3 { |
| 43 |
0% { |
| 44 |
transform: scale(1); |
| 45 |
} |
| 46 |
100% { |
| 47 |
transform: scale(0); |
| 48 |
} |
| 49 |
} |
| 50 |
@keyframes lds-ellipsis2 { |
| 51 |
0% { |
| 52 |
transform: translate(0, 0); |
| 53 |
} |
| 54 |
100% { |
| 55 |
transform: translate(24px, 0); |
| 56 |
} |
| 57 |
} |
| 58 |
|
| 59 |
|
| 60 |
|
| 61 |
/* Quiz loader klor */ |
| 62 |
|
| 63 |
.lds-default { |
| 64 |
display: inline-block; |
| 65 |
position: relative; |
| 66 |
width: 64px; |
| 67 |
height: 64px; |
| 68 |
} |
| 69 |
.lds-default div { |
| 70 |
position: absolute; |
| 71 |
width: 6px; |
| 72 |
height: 6px; |
| 73 |
background: #000; |
| 74 |
border-radius: 50%; |
| 75 |
animation: lds-default 1.2s linear infinite; |
| 76 |
} |
| 77 |
.lds-default div:nth-child(1) { |
| 78 |
animation-delay: 0s; |
| 79 |
top: 37px; |
| 80 |
left: 66px; |
| 81 |
} |
| 82 |
.lds-default div:nth-child(2) { |
| 83 |
animation-delay: -0.1s; |
| 84 |
top: 22px; |
| 85 |
left: 62px; |
| 86 |
} |
| 87 |
.lds-default div:nth-child(3) { |
| 88 |
animation-delay: -0.2s; |
| 89 |
top: 11px; |
| 90 |
left: 52px; |
| 91 |
} |
| 92 |
.lds-default div:nth-child(4) { |
| 93 |
animation-delay: -0.3s; |
| 94 |
top: 7px; |
| 95 |
left: 37px; |
| 96 |
} |
| 97 |
.lds-default div:nth-child(5) { |
| 98 |
animation-delay: -0.4s; |
| 99 |
top: 11px; |
| 100 |
left: 22px; |
| 101 |
} |
| 102 |
.lds-default div:nth-child(6) { |
| 103 |
animation-delay: -0.5s; |
| 104 |
top: 22px; |
| 105 |
left: 11px; |
| 106 |
} |
| 107 |
.lds-default div:nth-child(7) { |
| 108 |
animation-delay: -0.6s; |
| 109 |
top: 37px; |
| 110 |
left: 7px; |
| 111 |
} |
| 112 |
.lds-default div:nth-child(8) { |
| 113 |
animation-delay: -0.7s; |
| 114 |
top: 52px; |
| 115 |
left: 11px; |
| 116 |
} |
| 117 |
.lds-default div:nth-child(9) { |
| 118 |
animation-delay: -0.8s; |
| 119 |
top: 62px; |
| 120 |
left: 22px; |
| 121 |
} |
| 122 |
.lds-default div:nth-child(10) { |
| 123 |
animation-delay: -0.9s; |
| 124 |
top: 66px; |
| 125 |
left: 37px; |
| 126 |
} |
| 127 |
.lds-default div:nth-child(11) { |
| 128 |
animation-delay: -1s; |
| 129 |
top: 62px; |
| 130 |
left: 52px; |
| 131 |
} |
| 132 |
.lds-default div:nth-child(12) { |
| 133 |
animation-delay: -1.1s; |
| 134 |
top: 52px; |
| 135 |
left: 52px; |
| 136 |
} |
| 137 |
@keyframes lds-default { |
| 138 |
0%, 20%, 80%, 100% { |
| 139 |
transform: scale(1); |
| 140 |
} |
| 141 |
50% { |
| 142 |
transform: scale(1.5); |
| 143 |
} |
| 144 |
} |
| 145 |
|
| 146 |
|
| 147 |
/* Quiz circle */ |
| 148 |
.lds-circle { |
| 149 |
display: inline-block; |
| 150 |
width: 52px; |
| 151 |
height: 52px; |
| 152 |
margin: 6px; |
| 153 |
border-radius: 50%; |
| 154 |
background: #000; |
| 155 |
animation: lds-circle 2.4s cubic-bezier(0, 0.2, 0.8, 1) infinite; |
| 156 |
} |
| 157 |
@keyframes lds-circle { |
| 158 |
0%, 100% { |
| 159 |
animation-timing-function: cubic-bezier(0.5, 0, 1, 0.5); |
| 160 |
} |
| 161 |
0% { |
| 162 |
transform: rotateY(0deg); |
| 163 |
} |
| 164 |
50% { |
| 165 |
transform: rotateY(1800deg); |
| 166 |
animation-timing-function: cubic-bezier(0, 0.5, 0.5, 1); |
| 167 |
} |
| 168 |
100% { |
| 169 |
transform: rotateY(3600deg); |
| 170 |
} |
| 171 |
} |
| 172 |
|
| 173 |
/* Quiz dual ring */ |
| 174 |
.lds-dual-ring { |
| 175 |
display: inline-block; |
| 176 |
width: 64px; |
| 177 |
height: 64px; |
| 178 |
} |
| 179 |
.lds-dual-ring:after { |
| 180 |
content: " "; |
| 181 |
display: block; |
| 182 |
width: 52px; |
| 183 |
height: 52px; |
| 184 |
margin: 8px; |
| 185 |
border-radius: 50%; |
| 186 |
border: 6px solid #000; |
| 187 |
border-color: #000 transparent #000 transparent; |
| 188 |
animation: lds-dual-ring 1.2s linear infinite; |
| 189 |
} |
| 190 |
@keyframes lds-dual-ring { |
| 191 |
0% { |
| 192 |
transform: rotate(0deg); |
| 193 |
} |
| 194 |
100% { |
| 195 |
transform: rotate(360deg); |
| 196 |
} |
| 197 |
} |
| 198 |
|
| 199 |
/* Quiz facebook */ |
| 200 |
|
| 201 |
.lds-facebook { |
| 202 |
display: inline-block; |
| 203 |
position: relative; |
| 204 |
width: 64px; |
| 205 |
height: 64px; |
| 206 |
} |
| 207 |
.lds-facebook div { |
| 208 |
display: inline-block; |
| 209 |
position: absolute; |
| 210 |
left: 6px; |
| 211 |
width: 12px; |
| 212 |
background: #000; |
| 213 |
animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite; |
| 214 |
} |
| 215 |
.lds-facebook div:nth-child(1) { |
| 216 |
left: 6px; |
| 217 |
animation-delay: -0.24s; |
| 218 |
} |
| 219 |
.lds-facebook div:nth-child(2) { |
| 220 |
left: 26px; |
| 221 |
animation-delay: -0.12s; |
| 222 |
} |
| 223 |
.lds-facebook div:nth-child(3) { |
| 224 |
left: 46px; |
| 225 |
animation-delay: 0; |
| 226 |
} |
| 227 |
@keyframes lds-facebook { |
| 228 |
0% { |
| 229 |
top: 6px; |
| 230 |
height: 64px; |
| 231 |
} |
| 232 |
50%, 100% { |
| 233 |
top: 18px; |
| 234 |
height: 32px; |
| 235 |
} |
| 236 |
} |
| 237 |
|
| 238 |
|
| 239 |
/* Quiz grid */ |
| 240 |
|
| 241 |
.lds-grid { |
| 242 |
display: inline-block; |
| 243 |
position: relative; |
| 244 |
width: 80px; |
| 245 |
height: 80px; |
| 246 |
} |
| 247 |
.lds-grid div { |
| 248 |
position: absolute; |
| 249 |
width: 16px; |
| 250 |
height: 16px; |
| 251 |
border-radius: 50%; |
| 252 |
background: #000; |
| 253 |
animation: lds-grid 1.2s linear infinite; |
| 254 |
} |
| 255 |
.lds-grid div:nth-child(1) { |
| 256 |
top: 8px; |
| 257 |
left: 8px; |
| 258 |
animation-delay: 0s; |
| 259 |
} |
| 260 |
.lds-grid div:nth-child(2) { |
| 261 |
top: 8px; |
| 262 |
left: 32px; |
| 263 |
animation-delay: -0.4s; |
| 264 |
} |
| 265 |
.lds-grid div:nth-child(3) { |
| 266 |
top: 8px; |
| 267 |
left: 56px; |
| 268 |
animation-delay: -0.8s; |
| 269 |
} |
| 270 |
.lds-grid div:nth-child(4) { |
| 271 |
top: 32px; |
| 272 |
left: 8px; |
| 273 |
animation-delay: -0.4s; |
| 274 |
} |
| 275 |
.lds-grid div:nth-child(5) { |
| 276 |
top: 32px; |
| 277 |
left: 32px; |
| 278 |
animation-delay: -0.8s; |
| 279 |
} |
| 280 |
.lds-grid div:nth-child(6) { |
| 281 |
top: 32px; |
| 282 |
left: 56px; |
| 283 |
animation-delay: -1.2s; |
| 284 |
} |
| 285 |
.lds-grid div:nth-child(7) { |
| 286 |
top: 56px; |
| 287 |
left: 8px; |
| 288 |
animation-delay: -0.8s; |
| 289 |
} |
| 290 |
.lds-grid div:nth-child(8) { |
| 291 |
top: 56px; |
| 292 |
left: 32px; |
| 293 |
animation-delay: -1.2s; |
| 294 |
} |
| 295 |
.lds-grid div:nth-child(9) { |
| 296 |
top: 56px; |
| 297 |
left: 56px; |
| 298 |
animation-delay: -1.6s; |
| 299 |
} |
| 300 |
@keyframes lds-grid { |
| 301 |
0%, 100% { |
| 302 |
opacity: 1; |
| 303 |
} |
| 304 |
50% { |
| 305 |
opacity: 0.5; |
| 306 |
} |
| 307 |
} |
| 308 |
|
| 309 |
/* Quiz heart */ |
| 310 |
|
| 311 |
.lds-heart { |
| 312 |
display: inline-block; |
| 313 |
position: relative; |
| 314 |
width: 80px; |
| 315 |
height: 80px; |
| 316 |
transform: rotate(45deg); |
| 317 |
transform-origin: 40px 40px; |
| 318 |
} |
| 319 |
.lds-heart div { |
| 320 |
top: 32px; |
| 321 |
left: 32px; |
| 322 |
position: absolute; |
| 323 |
width: 32px; |
| 324 |
height: 32px; |
| 325 |
background: #000; |
| 326 |
animation: lds-heart 1.2s infinite cubic-bezier(0.215, 0.61, 0.355, 1); |
| 327 |
} |
| 328 |
.lds-heart div:after, |
| 329 |
.lds-heart div:before { |
| 330 |
content: " "; |
| 331 |
position: absolute; |
| 332 |
display: block; |
| 333 |
width: 32px; |
| 334 |
height: 32px; |
| 335 |
background: #000; |
| 336 |
} |
| 337 |
.lds-heart div:before { |
| 338 |
left: -24px; |
| 339 |
border-radius: 50% 0 0 50%; |
| 340 |
} |
| 341 |
.lds-heart div:after { |
| 342 |
top: -24px; |
| 343 |
border-radius: 50% 50% 0 0; |
| 344 |
} |
| 345 |
@keyframes lds-heart { |
| 346 |
0% { |
| 347 |
transform: scale(0.95); |
| 348 |
} |
| 349 |
5% { |
| 350 |
transform: scale(1.1); |
| 351 |
} |
| 352 |
39% { |
| 353 |
transform: scale(0.85); |
| 354 |
} |
| 355 |
45% { |
| 356 |
transform: scale(1); |
| 357 |
} |
| 358 |
60% { |
| 359 |
transform: scale(0.95); |
| 360 |
} |
| 361 |
100% { |
| 362 |
transform: scale(0.9); |
| 363 |
} |
| 364 |
} |
| 365 |
|
| 366 |
/* Quiz hourglass */ |
| 367 |
.lds-hourglass { |
| 368 |
display: inline-block; |
| 369 |
position: relative; |
| 370 |
width: 64px; |
| 371 |
height: 64px; |
| 372 |
} |
| 373 |
.lds-hourglass:after { |
| 374 |
content: " "; |
| 375 |
display: block; |
| 376 |
border-radius: 50%; |
| 377 |
width: 0; |
| 378 |
height: 0; |
| 379 |
margin: 8px; |
| 380 |
box-sizing: border-box; |
| 381 |
border: 24px solid #fff; |
| 382 |
border-color: #000 transparent #000 transparent; |
| 383 |
animation: lds-hourglass 1.2s infinite; |
| 384 |
} |
| 385 |
@keyframes lds-hourglass { |
| 386 |
0% { |
| 387 |
transform: rotate(0); |
| 388 |
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); |
| 389 |
} |
| 390 |
50% { |
| 391 |
transform: rotate(900deg); |
| 392 |
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); |
| 393 |
} |
| 394 |
100% { |
| 395 |
transform: rotate(1800deg); |
| 396 |
} |
| 397 |
} |
| 398 |
|
| 399 |
/* Quiz ring */ |
| 400 |
.lds-ring { |
| 401 |
display: inline-block; |
| 402 |
position: relative; |
| 403 |
width: 80px; |
| 404 |
height: 80px; |
| 405 |
} |
| 406 |
.lds-ring div { |
| 407 |
box-sizing: border-box; |
| 408 |
display: block; |
| 409 |
position: absolute; |
| 410 |
width: 64px; |
| 411 |
height: 64px; |
| 412 |
margin: 8px; |
| 413 |
border: 8px solid #000; |
| 414 |
border-radius: 50%; |
| 415 |
animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite; |
| 416 |
border-color: #000 transparent transparent transparent; |
| 417 |
} |
| 418 |
.lds-ring div:nth-child(1) { |
| 419 |
animation-delay: -0.45s; |
| 420 |
} |
| 421 |
.lds-ring div:nth-child(2) { |
| 422 |
animation-delay: -0.3s; |
| 423 |
} |
| 424 |
.lds-ring div:nth-child(3) { |
| 425 |
animation-delay: -0.15s; |
| 426 |
} |
| 427 |
@keyframes lds-ring { |
| 428 |
0% { |
| 429 |
transform: rotate(0deg); |
| 430 |
} |
| 431 |
100% { |
| 432 |
transform: rotate(360deg); |
| 433 |
} |
| 434 |
} |
| 435 |
|
| 436 |
|
| 437 |
|
| 438 |
/* Quiz ripple */ |
| 439 |
|
| 440 |
.lds-ripple { |
| 441 |
display: inline-block; |
| 442 |
position: relative; |
| 443 |
width: 64px; |
| 444 |
height: 64px; |
| 445 |
} |
| 446 |
.lds-ripple div { |
| 447 |
position: absolute; |
| 448 |
border: 4px solid #000; |
| 449 |
opacity: 1; |
| 450 |
border-radius: 50%; |
| 451 |
animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite; |
| 452 |
} |
| 453 |
.lds-ripple div:nth-child(2) { |
| 454 |
animation-delay: -0.5s; |
| 455 |
} |
| 456 |
@keyframes lds-ripple { |
| 457 |
0% { |
| 458 |
top: 32px; |
| 459 |
left: 32px; |
| 460 |
width: 0; |
| 461 |
height: 0; |
| 462 |
opacity: 1; |
| 463 |
} |
| 464 |
100% { |
| 465 |
top: 0px; |
| 466 |
left: 0px; |
| 467 |
width: 64px; |
| 468 |
height: 64px; |
| 469 |
opacity: 0; |
| 470 |
} |
| 471 |
} |
| 472 |
|
| 473 |
/* Quiz roller */ |
| 474 |
|
| 475 |
.lds-roller { |
| 476 |
display: inline-block; |
| 477 |
position: relative; |
| 478 |
width: 80px; |
| 479 |
height: 80px; |
| 480 |
} |
| 481 |
.lds-roller div { |
| 482 |
animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite; |
| 483 |
transform-origin: 40px 40px; |
| 484 |
} |
| 485 |
.lds-roller div:after { |
| 486 |
content: " "; |
| 487 |
display: block; |
| 488 |
position: absolute; |
| 489 |
width: 7px; |
| 490 |
height: 7px; |
| 491 |
border-radius: 50%; |
| 492 |
background: #000; |
| 493 |
margin: -4px 0 0 -4px; |
| 494 |
} |
| 495 |
.lds-roller div:nth-child(1) { |
| 496 |
animation-delay: -0.036s; |
| 497 |
} |
| 498 |
.lds-roller div:nth-child(1):after { |
| 499 |
top: 63px; |
| 500 |
left: 63px; |
| 501 |
} |
| 502 |
.lds-roller div:nth-child(2) { |
| 503 |
animation-delay: -0.072s; |
| 504 |
} |
| 505 |
.lds-roller div:nth-child(2):after { |
| 506 |
top: 68px; |
| 507 |
left: 56px; |
| 508 |
} |
| 509 |
.lds-roller div:nth-child(3) { |
| 510 |
animation-delay: -0.108s; |
| 511 |
} |
| 512 |
.lds-roller div:nth-child(3):after { |
| 513 |
top: 71px; |
| 514 |
left: 48px; |
| 515 |
} |
| 516 |
.lds-roller div:nth-child(4) { |
| 517 |
animation-delay: -0.144s; |
| 518 |
} |
| 519 |
.lds-roller div:nth-child(4):after { |
| 520 |
top: 72px; |
| 521 |
left: 40px; |
| 522 |
} |
| 523 |
.lds-roller div:nth-child(5) { |
| 524 |
animation-delay: -0.18s; |
| 525 |
} |
| 526 |
.lds-roller div:nth-child(5):after { |
| 527 |
top: 71px; |
| 528 |
left: 32px; |
| 529 |
} |
| 530 |
.lds-roller div:nth-child(6) { |
| 531 |
animation-delay: -0.216s; |
| 532 |
} |
| 533 |
.lds-roller div:nth-child(6):after { |
| 534 |
top: 68px; |
| 535 |
left: 24px; |
| 536 |
} |
| 537 |
.lds-roller div:nth-child(7) { |
| 538 |
animation-delay: -0.252s; |
| 539 |
} |
| 540 |
.lds-roller div:nth-child(7):after { |
| 541 |
top: 63px; |
| 542 |
left: 17px; |
| 543 |
} |
| 544 |
.lds-roller div:nth-child(8) { |
| 545 |
animation-delay: -0.288s; |
| 546 |
} |
| 547 |
.lds-roller div:nth-child(8):after { |
| 548 |
top: 56px; |
| 549 |
left: 12px; |
| 550 |
} |
| 551 |
@keyframes lds-roller { |
| 552 |
0% { |
| 553 |
transform: rotate(0deg); |
| 554 |
} |
| 555 |
100% { |
| 556 |
transform: rotate(360deg); |
| 557 |
} |
| 558 |
} |
| 559 |
|
| 560 |
/* Quiz spinner */ |
| 561 |
.lds-spinner { |
| 562 |
color: official; |
| 563 |
display: inline-block; |
| 564 |
position: relative; |
| 565 |
width: 64px; |
| 566 |
height: 64px; |
| 567 |
} |
| 568 |
.lds-spinner div { |
| 569 |
transform-origin: 30px 30px; |
| 570 |
animation: lds-spinner 1.2s linear infinite; |
| 571 |
} |
| 572 |
.lds-spinner div:after { |
| 573 |
content: " "; |
| 574 |
display: block; |
| 575 |
position: absolute; |
| 576 |
top: 3px; |
| 577 |
left: 27px; |
| 578 |
width: 5px; |
| 579 |
height: 13px; |
| 580 |
border-radius: 20%; |
| 581 |
background: #000; |
| 582 |
} |
| 583 |
.lds-spinner div:nth-child(1) { |
| 584 |
transform: rotate(0deg); |
| 585 |
animation-delay: -1.1s; |
| 586 |
} |
| 587 |
.lds-spinner div:nth-child(2) { |
| 588 |
transform: rotate(30deg); |
| 589 |
animation-delay: -1s; |
| 590 |
} |
| 591 |
.lds-spinner div:nth-child(3) { |
| 592 |
transform: rotate(60deg); |
| 593 |
animation-delay: -0.9s; |
| 594 |
} |
| 595 |
.lds-spinner div:nth-child(4) { |
| 596 |
transform: rotate(90deg); |
| 597 |
animation-delay: -0.8s; |
| 598 |
} |
| 599 |
.lds-spinner div:nth-child(5) { |
| 600 |
transform: rotate(120deg); |
| 601 |
animation-delay: -0.7s; |
| 602 |
} |
| 603 |
.lds-spinner div:nth-child(6) { |
| 604 |
transform: rotate(150deg); |
| 605 |
animation-delay: -0.6s; |
| 606 |
} |
| 607 |
.lds-spinner div:nth-child(7) { |
| 608 |
transform: rotate(180deg); |
| 609 |
animation-delay: -0.5s; |
| 610 |
} |
| 611 |
.lds-spinner div:nth-child(8) { |
| 612 |
transform: rotate(210deg); |
| 613 |
animation-delay: -0.4s; |
| 614 |
} |
| 615 |
.lds-spinner div:nth-child(9) { |
| 616 |
transform: rotate(240deg); |
| 617 |
animation-delay: -0.3s; |
| 618 |
} |
| 619 |
.lds-spinner div:nth-child(10) { |
| 620 |
transform: rotate(270deg); |
| 621 |
animation-delay: -0.2s; |
| 622 |
} |
| 623 |
.lds-spinner div:nth-child(11) { |
| 624 |
transform: rotate(300deg); |
| 625 |
animation-delay: -0.1s; |
| 626 |
} |
| 627 |
.lds-spinner div:nth-child(12) { |
| 628 |
transform: rotate(330deg); |
| 629 |
animation-delay: 0s; |
| 630 |
} |
| 631 |
@keyframes lds-spinner { |
| 632 |
0% { |
| 633 |
opacity: 1; |
| 634 |
} |
| 635 |
100% { |
| 636 |
opacity: 0; |
| 637 |
} |
| 638 |
} |