You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1614 lines
24 KiB

2 years ago
  1. @charset "UTF-8";
  2. /*!
  3. * animate.css -http://daneden.me/animate
  4. * Version - 3.5.2
  5. * Licensed under the MIT license - http://opensource.org/licenses/MIT
  6. *
  7. * Copyright (c) 2017 Daniel Eden
  8. */
  9. .animated {
  10. animation-duration: 1s;
  11. animation-fill-mode: both;
  12. }
  13. .animated.infinite {
  14. animation-iteration-count: infinite;
  15. }
  16. .animated.hinge {
  17. animation-duration: 2s;
  18. }
  19. .animated.flipOutX,
  20. .animated.flipOutY,
  21. .animated.bounceIn,
  22. .animated.bounceOut {
  23. animation-duration: .75s;
  24. }
  25. @keyframes bounce {
  26. from, 20%, 53%, 80%, to {
  27. animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  28. transform: translate3d(0,0,0);
  29. }
  30. 40%, 43% {
  31. animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
  32. transform: translate3d(0, -30px, 0);
  33. }
  34. 70% {
  35. animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
  36. transform: translate3d(0, -15px, 0);
  37. }
  38. 90% {
  39. transform: translate3d(0,-4px,0);
  40. }
  41. }
  42. .bounce {
  43. animation-name: bounce;
  44. transform-origin: center bottom;
  45. }
  46. @keyframes flash {
  47. from, 50%, to {
  48. opacity: 1;
  49. }
  50. 25%, 75% {
  51. opacity: 0;
  52. }
  53. }
  54. .flash {
  55. animation-name: flash;
  56. }
  57. /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
  58. @keyframes pulse {
  59. from {
  60. transform: scale3d(1, 1, 1);
  61. }
  62. 50% {
  63. transform: scale3d(1.05, 1.05, 1.05);
  64. }
  65. to {
  66. transform: scale3d(1, 1, 1);
  67. }
  68. }
  69. .pulse {
  70. animation-name: pulse;
  71. }
  72. @keyframes rubberBand {
  73. from {
  74. transform: scale3d(1, 1, 1);
  75. }
  76. 30% {
  77. transform: scale3d(1.25, 0.75, 1);
  78. }
  79. 40% {
  80. transform: scale3d(0.75, 1.25, 1);
  81. }
  82. 50% {
  83. transform: scale3d(1.15, 0.85, 1);
  84. }
  85. 65% {
  86. transform: scale3d(.95, 1.05, 1);
  87. }
  88. 75% {
  89. transform: scale3d(1.05, .95, 1);
  90. }
  91. to {
  92. transform: scale3d(1, 1, 1);
  93. }
  94. }
  95. .rubberBand {
  96. animation-name: rubberBand;
  97. }
  98. @keyframes shake {
  99. from, to {
  100. transform: translate3d(0, 0, 0);
  101. }
  102. 10%, 30%, 50%, 70%, 90% {
  103. transform: translate3d(-10px, 0, 0);
  104. }
  105. 20%, 40%, 60%, 80% {
  106. transform: translate3d(10px, 0, 0);
  107. }
  108. }
  109. .shake {
  110. animation-name: shake;
  111. }
  112. @keyframes headShake {
  113. 0% {
  114. transform: translateX(0);
  115. }
  116. 6.5% {
  117. transform: translateX(-6px) rotateY(-9deg);
  118. }
  119. 18.5% {
  120. transform: translateX(5px) rotateY(7deg);
  121. }
  122. 31.5% {
  123. transform: translateX(-3px) rotateY(-5deg);
  124. }
  125. 43.5% {
  126. transform: translateX(2px) rotateY(3deg);
  127. }
  128. 50% {
  129. transform: translateX(0);
  130. }
  131. }
  132. .headShake {
  133. animation-timing-function: ease-in-out;
  134. animation-name: headShake;
  135. }
  136. @keyframes swing {
  137. 20% {
  138. transform: rotate3d(0, 0, 1, 15deg);
  139. }
  140. 40% {
  141. transform: rotate3d(0, 0, 1, -10deg);
  142. }
  143. 60% {
  144. transform: rotate3d(0, 0, 1, 5deg);
  145. }
  146. 80% {
  147. transform: rotate3d(0, 0, 1, -5deg);
  148. }
  149. to {
  150. transform: rotate3d(0, 0, 1, 0deg);
  151. }
  152. }
  153. .swing {
  154. transform-origin: top center;
  155. animation-name: swing;
  156. }
  157. @keyframes tada {
  158. from {
  159. transform: scale3d(1, 1, 1);
  160. }
  161. 10%, 20% {
  162. transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  163. }
  164. 30%, 50%, 70%, 90% {
  165. transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  166. }
  167. 40%, 60%, 80% {
  168. transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  169. }
  170. to {
  171. transform: scale3d(1, 1, 1);
  172. }
  173. }
  174. .tada {
  175. animation-name: tada;
  176. }
  177. /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
  178. @keyframes wobble {
  179. from {
  180. transform: none;
  181. }
  182. 15% {
  183. transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  184. }
  185. 30% {
  186. transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  187. }
  188. 45% {
  189. transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  190. }
  191. 60% {
  192. transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  193. }
  194. 75% {
  195. transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  196. }
  197. to {
  198. transform: none;
  199. }
  200. }
  201. .wobble {
  202. animation-name: wobble;
  203. }
  204. @keyframes jello {
  205. from, 11.1%, to {
  206. transform: none;
  207. }
  208. 22.2% {
  209. transform: skewX(-12.5deg) skewY(-12.5deg);
  210. }
  211. 33.3% {
  212. transform: skewX(6.25deg) skewY(6.25deg);
  213. }
  214. 44.4% {
  215. transform: skewX(-3.125deg) skewY(-3.125deg);
  216. }
  217. 55.5% {
  218. transform: skewX(1.5625deg) skewY(1.5625deg);
  219. }
  220. 66.6% {
  221. transform: skewX(-0.78125deg) skewY(-0.78125deg);
  222. }
  223. 77.7% {
  224. transform: skewX(0.390625deg) skewY(0.390625deg);
  225. }
  226. 88.8% {
  227. transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  228. }
  229. }
  230. .jello {
  231. animation-name: jello;
  232. transform-origin: center;
  233. }
  234. @keyframes bounceIn {
  235. from, 20%, 40%, 60%, 80%, to {
  236. animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  237. }
  238. 0% {
  239. opacity: 0;
  240. transform: scale3d(.3, .3, .3);
  241. }
  242. 20% {
  243. transform: scale3d(1.1, 1.1, 1.1);
  244. }
  245. 40% {
  246. transform: scale3d(.9, .9, .9);
  247. }
  248. 60% {
  249. opacity: 1;
  250. transform: scale3d(1.03, 1.03, 1.03);
  251. }
  252. 80% {
  253. transform: scale3d(.97, .97, .97);
  254. }
  255. to {
  256. opacity: 1;
  257. transform: scale3d(1, 1, 1);
  258. }
  259. }
  260. .bounceIn {
  261. animation-name: bounceIn;
  262. }
  263. @keyframes bounceInDown {
  264. from, 60%, 75%, 90%, to {
  265. animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  266. }
  267. 0% {
  268. opacity: 0;
  269. transform: translate3d(0, -3000px, 0);
  270. }
  271. 60% {
  272. opacity: 1;
  273. transform: translate3d(0, 25px, 0);
  274. }
  275. 75% {
  276. transform: translate3d(0, -10px, 0);
  277. }
  278. 90% {
  279. transform: translate3d(0, 5px, 0);
  280. }
  281. to {
  282. transform: none;
  283. }
  284. }
  285. .bounceInDown {
  286. animation-name: bounceInDown;
  287. }
  288. @keyframes bounceInLeft {
  289. from, 60%, 75%, 90%, to {
  290. animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  291. }
  292. 0% {
  293. opacity: 0;
  294. transform: translate3d(-3000px, 0, 0);
  295. }
  296. 60% {
  297. opacity: 1;
  298. transform: translate3d(25px, 0, 0);
  299. }
  300. 75% {
  301. transform: translate3d(-10px, 0, 0);
  302. }
  303. 90% {
  304. transform: translate3d(5px, 0, 0);
  305. }
  306. to {
  307. transform: none;
  308. }
  309. }
  310. .bounceInLeft {
  311. animation-name: bounceInLeft;
  312. }
  313. @keyframes bounceInRight {
  314. from, 60%, 75%, 90%, to {
  315. animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  316. }
  317. from {
  318. opacity: 0;
  319. transform: translate3d(3000px, 0, 0);
  320. }
  321. 60% {
  322. opacity: 1;
  323. transform: translate3d(-25px, 0, 0);
  324. }
  325. 75% {
  326. transform: translate3d(10px, 0, 0);
  327. }
  328. 90% {
  329. transform: translate3d(-5px, 0, 0);
  330. }
  331. to {
  332. transform: none;
  333. }
  334. }
  335. .bounceInRight {
  336. animation-name: bounceInRight;
  337. }
  338. @keyframes bounceInUp {
  339. from, 60%, 75%, 90%, to {
  340. animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  341. }
  342. from {
  343. opacity: 0;
  344. transform: translate3d(0, 3000px, 0);
  345. }
  346. 60% {
  347. opacity: 1;
  348. transform: translate3d(0, -20px, 0);
  349. }
  350. 75% {
  351. transform: translate3d(0, 10px, 0);
  352. }
  353. 90% {
  354. transform: translate3d(0, -5px, 0);
  355. }
  356. to {
  357. transform: translate3d(0, 0, 0);
  358. }
  359. }
  360. .bounceInUp {
  361. animation-name: bounceInUp;
  362. }
  363. @keyframes bounceOut {
  364. 20% {
  365. transform: scale3d(.9, .9, .9);
  366. }
  367. 50%, 55% {
  368. opacity: 1;
  369. transform: scale3d(1.1, 1.1, 1.1);
  370. }
  371. to {
  372. opacity: 0;
  373. transform: scale3d(.3, .3, .3);
  374. }
  375. }
  376. .bounceOut {
  377. animation-name: bounceOut;
  378. }
  379. @keyframes bounceOutDown {
  380. 20% {
  381. transform: translate3d(0, 10px, 0);
  382. }
  383. 40%, 45% {
  384. opacity: 1;
  385. transform: translate3d(0, -20px, 0);
  386. }
  387. to {
  388. opacity: 0;
  389. transform: translate3d(0, 2000px, 0);
  390. }
  391. }
  392. .bounceOutDown {
  393. animation-name: bounceOutDown;
  394. }
  395. @keyframes bounceOutLeft {
  396. 20% {
  397. opacity: 1;
  398. transform: translate3d(20px, 0, 0);
  399. }
  400. to {
  401. opacity: 0;
  402. transform: translate3d(-2000px, 0, 0);
  403. }
  404. }
  405. .bounceOutLeft {
  406. animation-name: bounceOutLeft;
  407. }
  408. @keyframes bounceOutRight {
  409. 20% {
  410. opacity: 1;
  411. transform: translate3d(-20px, 0, 0);
  412. }
  413. to {
  414. opacity: 0;
  415. transform: translate3d(2000px, 0, 0);
  416. }
  417. }
  418. .bounceOutRight {
  419. animation-name: bounceOutRight;
  420. }
  421. @keyframes bounceOutUp {
  422. 20% {
  423. transform: translate3d(0, -10px, 0);
  424. }
  425. 40%, 45% {
  426. opacity: 1;
  427. transform: translate3d(0, 20px, 0);
  428. }
  429. to {
  430. opacity: 0;
  431. transform: translate3d(0, -2000px, 0);
  432. }
  433. }
  434. .bounceOutUp {
  435. animation-name: bounceOutUp;
  436. }
  437. @keyframes fadeIn {
  438. from {
  439. opacity: 0;
  440. }
  441. to {
  442. opacity: 1;
  443. }
  444. }
  445. .fadeIn {
  446. animation-name: fadeIn;
  447. }
  448. @keyframes fadeInDown {
  449. from {
  450. opacity: 0;
  451. transform: translate3d(0, -100%, 0);
  452. }
  453. to {
  454. opacity: 1;
  455. transform: none;
  456. }
  457. }
  458. .fadeInDown {
  459. animation-name: fadeInDown;
  460. }
  461. @keyframes fadeInDownSm {
  462. from {
  463. opacity: 0;
  464. transform: translate3d(0, -40%, 0);
  465. }
  466. to {
  467. opacity: 1;
  468. transform: none;
  469. }
  470. }
  471. .fadeInDownSm {
  472. animation-name: fadeInDownSm;
  473. }
  474. @keyframes fadeInDownBig {
  475. from {
  476. opacity: 0;
  477. transform: translate3d(0, -2000px, 0);
  478. }
  479. to {
  480. opacity: 1;
  481. transform: none;
  482. }
  483. }
  484. .fadeInDownBig {
  485. animation-name: fadeInDownBig;
  486. }
  487. @keyframes fadeInLeft {
  488. from {
  489. opacity: 0;
  490. transform: translate3d(-100%, 0, 0);
  491. }
  492. to {
  493. opacity: 1;
  494. transform: none;
  495. }
  496. }
  497. .fadeInLeft {
  498. animation-name: fadeInLeft;
  499. }
  500. @keyframes fadeInLeftBig {
  501. from {
  502. opacity: 0;
  503. transform: translate3d(-2000px, 0, 0);
  504. }
  505. to {
  506. opacity: 1;
  507. transform: none;
  508. }
  509. }
  510. .fadeInLeftBig {
  511. animation-name: fadeInLeftBig;
  512. }
  513. @keyframes fadeInRight {
  514. from {
  515. opacity: 0;
  516. transform: translate3d(100%, 0, 0);
  517. }
  518. to {
  519. opacity: 1;
  520. transform: none;
  521. }
  522. }
  523. .fadeInRight {
  524. animation-name: fadeInRight;
  525. }
  526. @keyframes fadeInRightBig {
  527. from {
  528. opacity: 0;
  529. transform: translate3d(2000px, 0, 0);
  530. }
  531. to {
  532. opacity: 1;
  533. transform: none;
  534. }
  535. }
  536. .fadeInRightBig {
  537. animation-name: fadeInRightBig;
  538. }
  539. @keyframes fadeInUp {
  540. from {
  541. opacity: 0;
  542. transform: translate3d(0, 100%, 0);
  543. }
  544. to {
  545. opacity: 1;
  546. transform: none;
  547. }
  548. }
  549. .fadeInUp {
  550. animation-name: fadeInUp;
  551. }
  552. @keyframes fadeInUpSm {
  553. from {
  554. opacity: 0;
  555. transform: translate3d(0, 30%, 0);
  556. }
  557. to {
  558. opacity: 1;
  559. transform: none;
  560. }
  561. }
  562. .fadeInUpSm {
  563. animation-name: fadeInUpSm;
  564. }
  565. @keyframes fadeInUpBig {
  566. from {
  567. opacity: 0;
  568. transform: translate3d(0, 2000px, 0);
  569. }
  570. to {
  571. opacity: 1;
  572. transform: none;
  573. }
  574. }
  575. .fadeInUpBig {
  576. animation-name: fadeInUpBig;
  577. }
  578. @keyframes fadeOut {
  579. from {
  580. opacity: 1;
  581. }
  582. to {
  583. opacity: 0;
  584. }
  585. }
  586. .fadeOut {
  587. animation-name: fadeOut;
  588. }
  589. @keyframes fadeOutDown {
  590. from {
  591. opacity: 1;
  592. }
  593. to {
  594. opacity: 0;
  595. transform: translate3d(0, 100%, 0);
  596. }
  597. }
  598. .fadeOutDown {
  599. animation-name: fadeOutDown;
  600. }
  601. @keyframes fadeOutDownBig {
  602. from {
  603. opacity: 1;
  604. }
  605. to {
  606. opacity: 0;
  607. transform: translate3d(0, 2000px, 0);
  608. }
  609. }
  610. .fadeOutDownBig {
  611. animation-name: fadeOutDownBig;
  612. }
  613. @keyframes fadeOutLeft {
  614. from {
  615. opacity: 1;
  616. }
  617. to {
  618. opacity: 0;
  619. transform: translate3d(-100%, 0, 0);
  620. }
  621. }
  622. .fadeOutLeft {
  623. animation-name: fadeOutLeft;
  624. }
  625. @keyframes fadeOutLeftBig {
  626. from {
  627. opacity: 1;
  628. }
  629. to {
  630. opacity: 0;
  631. transform: translate3d(-2000px, 0, 0);
  632. }
  633. }
  634. .fadeOutLeftBig {
  635. animation-name: fadeOutLeftBig;
  636. }
  637. @keyframes fadeOutRight {
  638. from {
  639. opacity: 1;
  640. }
  641. to {
  642. opacity: 0;
  643. transform: translate3d(100%, 0, 0);
  644. }
  645. }
  646. .fadeOutRight {
  647. animation-name: fadeOutRight;
  648. }
  649. @keyframes fadeOutRightBig {
  650. from {
  651. opacity: 1;
  652. }
  653. to {
  654. opacity: 0;
  655. transform: translate3d(2000px, 0, 0);
  656. }
  657. }
  658. .fadeOutRightBig {
  659. animation-name: fadeOutRightBig;
  660. }
  661. @keyframes fadeOutUp {
  662. from {
  663. opacity: 1;
  664. }
  665. to {
  666. opacity: 0;
  667. transform: translate3d(0, -100%, 0);
  668. }
  669. }
  670. .fadeOutUp {
  671. animation-name: fadeOutUp;
  672. }
  673. @keyframes fadeOutUpBig {
  674. from {
  675. opacity: 1;
  676. }
  677. to {
  678. opacity: 0;
  679. transform: translate3d(0, -2000px, 0);
  680. }
  681. }
  682. .fadeOutUpBig {
  683. animation-name: fadeOutUpBig;
  684. }
  685. @keyframes flip {
  686. from {
  687. transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
  688. animation-timing-function: ease-out;
  689. }
  690. 40% {
  691. transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
  692. animation-timing-function: ease-out;
  693. }
  694. 50% {
  695. transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
  696. animation-timing-function: ease-in;
  697. }
  698. 80% {
  699. transform: perspective(400px) scale3d(.95, .95, .95);
  700. animation-timing-function: ease-in;
  701. }
  702. to {
  703. transform: perspective(400px);
  704. animation-timing-function: ease-in;
  705. }
  706. }
  707. .animated.flip {
  708. -webkit-backface-visibility: visible;
  709. backface-visibility: visible;
  710. animation-name: flip;
  711. }
  712. @keyframes flipInX {
  713. from {
  714. transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
  715. animation-timing-function: ease-in;
  716. opacity: 0;
  717. }
  718. 40% {
  719. transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
  720. animation-timing-function: ease-in;
  721. }
  722. 60% {
  723. transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
  724. opacity: 1;
  725. }
  726. 80% {
  727. transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  728. }
  729. to {
  730. transform: perspective(400px);
  731. }
  732. }
  733. .flipInX {
  734. -webkit-backface-visibility: visible !important;
  735. backface-visibility: visible !important;
  736. animation-name: flipInX;
  737. }
  738. @keyframes flipInY {
  739. from {
  740. transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
  741. animation-timing-function: ease-in;
  742. opacity: 0;
  743. }
  744. 40% {
  745. transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
  746. animation-timing-function: ease-in;
  747. }
  748. 60% {
  749. transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
  750. opacity: 1;
  751. }
  752. 80% {
  753. transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  754. }
  755. to {
  756. transform: perspective(400px);
  757. }
  758. }
  759. .flipInY {
  760. -webkit-backface-visibility: visible !important;
  761. backface-visibility: visible !important;
  762. animation-name: flipInY;
  763. }
  764. @keyframes flipOutX {
  765. from {
  766. transform: perspective(400px);
  767. }
  768. 30% {
  769. transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
  770. opacity: 1;
  771. }
  772. to {
  773. transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
  774. opacity: 0;
  775. }
  776. }
  777. .flipOutX {
  778. animation-name: flipOutX;
  779. -webkit-backface-visibility: visible !important;
  780. backface-visibility: visible !important;
  781. }
  782. @keyframes flipOutY {
  783. from {
  784. transform: perspective(400px);
  785. }
  786. 30% {
  787. transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
  788. opacity: 1;
  789. }
  790. to {
  791. transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
  792. opacity: 0;
  793. }
  794. }
  795. .flipOutY {
  796. -webkit-backface-visibility: visible !important;
  797. backface-visibility: visible !important;
  798. animation-name: flipOutY;
  799. }
  800. @keyframes lightSpeedIn {
  801. from {
  802. transform: translate3d(100%, 0, 0) skewX(-30deg);
  803. opacity: 0;
  804. }
  805. 60% {
  806. transform: skewX(20deg);
  807. opacity: 1;
  808. }
  809. 80% {
  810. transform: skewX(-5deg);
  811. opacity: 1;
  812. }
  813. to {
  814. transform: none;
  815. opacity: 1;
  816. }
  817. }
  818. .lightSpeedIn {
  819. animation-name: lightSpeedIn;
  820. animation-timing-function: ease-out;
  821. }
  822. @keyframes lightSpeedOut {
  823. from {
  824. opacity: 1;
  825. }
  826. to {
  827. transform: translate3d(100%, 0, 0) skewX(30deg);
  828. opacity: 0;
  829. }
  830. }
  831. .lightSpeedOut {
  832. animation-name: lightSpeedOut;
  833. animation-timing-function: ease-in;
  834. }
  835. @keyframes rotateIn {
  836. from {
  837. transform-origin: center;
  838. transform: rotate3d(0, 0, 1, -200deg);
  839. opacity: 0;
  840. }
  841. to {
  842. transform-origin: center;
  843. transform: none;
  844. opacity: 1;
  845. }
  846. }
  847. .rotateIn {
  848. animation-name: rotateIn;
  849. }
  850. @keyframes rotateInDownLeft {
  851. from {
  852. transform-origin: left bottom;
  853. transform: rotate3d(0, 0, 1, -45deg);
  854. opacity: 0;
  855. }
  856. to {
  857. transform-origin: left bottom;
  858. transform: none;
  859. opacity: 1;
  860. }
  861. }
  862. .rotateInDownLeft {
  863. animation-name: rotateInDownLeft;
  864. }
  865. @keyframes rotateInDownRight {
  866. from {
  867. transform-origin: right bottom;
  868. transform: rotate3d(0, 0, 1, 45deg);
  869. opacity: 0;
  870. }
  871. to {
  872. transform-origin: right bottom;
  873. transform: none;
  874. opacity: 1;
  875. }
  876. }
  877. .rotateInDownRight {
  878. animation-name: rotateInDownRight;
  879. }
  880. @keyframes rotateInUpLeft {
  881. from {
  882. transform-origin: left bottom;
  883. transform: rotate3d(0, 0, 1, 45deg);
  884. opacity: 0;
  885. }
  886. to {
  887. transform-origin: left bottom;
  888. transform: none;
  889. opacity: 1;
  890. }
  891. }
  892. .rotateInUpLeft {
  893. animation-name: rotateInUpLeft;
  894. }
  895. @keyframes rotateInUpRight {
  896. from {
  897. transform-origin: right bottom;
  898. transform: rotate3d(0, 0, 1, -90deg);
  899. opacity: 0;
  900. }
  901. to {
  902. transform-origin: right bottom;
  903. transform: none;
  904. opacity: 1;
  905. }
  906. }
  907. .rotateInUpRight {
  908. animation-name: rotateInUpRight;
  909. }
  910. @keyframes rotateOut {
  911. from {
  912. transform-origin: center;
  913. opacity: 1;
  914. }
  915. to {
  916. transform-origin: center;
  917. transform: rotate3d(0, 0, 1, 200deg);
  918. opacity: 0;
  919. }
  920. }
  921. .rotateOut {
  922. animation-name: rotateOut;
  923. }
  924. @keyframes rotateOutDownLeft {
  925. from {
  926. transform-origin: left bottom;
  927. opacity: 1;
  928. }
  929. to {
  930. transform-origin: left bottom;
  931. transform: rotate3d(0, 0, 1, 45deg);
  932. opacity: 0;
  933. }
  934. }
  935. .rotateOutDownLeft {
  936. animation-name: rotateOutDownLeft;
  937. }
  938. @keyframes rotateOutDownRight {
  939. from {
  940. transform-origin: right bottom;
  941. opacity: 1;
  942. }
  943. to {
  944. transform-origin: right bottom;
  945. transform: rotate3d(0, 0, 1, -45deg);
  946. opacity: 0;
  947. }
  948. }
  949. .rotateOutDownRight {
  950. animation-name: rotateOutDownRight;
  951. }
  952. @keyframes rotateOutUpLeft {
  953. from {
  954. transform-origin: left bottom;
  955. opacity: 1;
  956. }
  957. to {
  958. transform-origin: left bottom;
  959. transform: rotate3d(0, 0, 1, -45deg);
  960. opacity: 0;
  961. }
  962. }
  963. .rotateOutUpLeft {
  964. animation-name: rotateOutUpLeft;
  965. }
  966. @keyframes rotateOutUpRight {
  967. from {
  968. transform-origin: right bottom;
  969. opacity: 1;
  970. }
  971. to {
  972. transform-origin: right bottom;
  973. transform: rotate3d(0, 0, 1, 90deg);
  974. opacity: 0;
  975. }
  976. }
  977. .rotateOutUpRight {
  978. animation-name: rotateOutUpRight;
  979. }
  980. @keyframes hinge {
  981. 0% {
  982. transform-origin: top left;
  983. animation-timing-function: ease-in-out;
  984. }
  985. 20%, 60% {
  986. transform: rotate3d(0, 0, 1, 80deg);
  987. transform-origin: top left;
  988. animation-timing-function: ease-in-out;
  989. }
  990. 40%, 80% {
  991. transform: rotate3d(0, 0, 1, 60deg);
  992. transform-origin: top left;
  993. animation-timing-function: ease-in-out;
  994. opacity: 1;
  995. }
  996. to {
  997. transform: translate3d(0, 700px, 0);
  998. opacity: 0;
  999. }
  1000. }
  1001. .hinge {
  1002. animation-name: hinge;
  1003. }
  1004. @keyframes jackInTheBox {
  1005. from {
  1006. opacity: 0;
  1007. transform: scale(0.1) rotate(30deg);
  1008. transform-origin: center bottom;
  1009. }
  1010. 50% {
  1011. transform: rotate(-10deg);
  1012. }
  1013. 70% {
  1014. transform: rotate(3deg);
  1015. }
  1016. to {
  1017. opacity: 1;
  1018. transform: scale(1);
  1019. }
  1020. }
  1021. .jackInTheBox {
  1022. animation-name: jackInTheBox;
  1023. }
  1024. /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
  1025. @keyframes rollIn {
  1026. from {
  1027. opacity: 0;
  1028. transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  1029. }
  1030. to {
  1031. opacity: 1;
  1032. transform: none;
  1033. }
  1034. }
  1035. .rollIn {
  1036. animation-name: rollIn;
  1037. }
  1038. /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
  1039. @keyframes rollOut {
  1040. from {
  1041. opacity: 1;
  1042. }
  1043. to {
  1044. opacity: 0;
  1045. transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  1046. }
  1047. }
  1048. .rollOut {
  1049. animation-name: rollOut;
  1050. }
  1051. @keyframes zoomIn {
  1052. from {
  1053. opacity: 0;
  1054. transform: scale3d(.3, .3, .3);
  1055. }
  1056. 50% {
  1057. opacity: 1;
  1058. }
  1059. }
  1060. .zoomIn {
  1061. animation-name: zoomIn;
  1062. }
  1063. @keyframes zoomInDown {
  1064. from {
  1065. opacity: 0;
  1066. transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
  1067. animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  1068. }
  1069. 60% {
  1070. opacity: 1;
  1071. transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
  1072. animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  1073. }
  1074. }
  1075. .zoomInDown {
  1076. animation-name: zoomInDown;
  1077. }
  1078. @keyframes zoomInLeft {
  1079. from {
  1080. opacity: 0;
  1081. transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
  1082. animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  1083. }
  1084. 60% {
  1085. opacity: 1;
  1086. transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
  1087. animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  1088. }
  1089. }
  1090. .zoomInLeft {
  1091. animation-name: zoomInLeft;
  1092. }
  1093. @keyframes zoomInRight {
  1094. from {
  1095. opacity: 0;
  1096. transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
  1097. animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  1098. }
  1099. 60% {
  1100. opacity: 1;
  1101. transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
  1102. animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  1103. }
  1104. }
  1105. .zoomInRight {
  1106. animation-name: zoomInRight;
  1107. }
  1108. @keyframes zoomInUp {
  1109. from {
  1110. opacity: 0;
  1111. transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
  1112. animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  1113. }
  1114. 60% {
  1115. opacity: 1;
  1116. transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
  1117. animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  1118. }
  1119. }
  1120. .zoomInUp {
  1121. animation-name: zoomInUp;
  1122. }
  1123. @keyframes zoomOut {
  1124. from {
  1125. opacity: 1;
  1126. }
  1127. 50% {
  1128. opacity: 0;
  1129. transform: scale3d(.3, .3, .3);
  1130. }
  1131. to {
  1132. opacity: 0;
  1133. }
  1134. }
  1135. .zoomOut {
  1136. animation-name: zoomOut;
  1137. }
  1138. @keyframes zoomOutDown {
  1139. 40% {
  1140. opacity: 1;
  1141. transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
  1142. animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  1143. }
  1144. to {
  1145. opacity: 0;
  1146. transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
  1147. transform-origin: center bottom;
  1148. animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  1149. }
  1150. }
  1151. .zoomOutDown {
  1152. animation-name: zoomOutDown;
  1153. }
  1154. @keyframes zoomOutLeft {
  1155. 40% {
  1156. opacity: 1;
  1157. transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  1158. }
  1159. to {
  1160. opacity: 0;
  1161. transform: scale(.1) translate3d(-2000px, 0, 0);
  1162. transform-origin: left center;
  1163. }
  1164. }
  1165. .zoomOutLeft {
  1166. animation-name: zoomOutLeft;
  1167. }
  1168. @keyframes zoomOutRight {
  1169. 40% {
  1170. opacity: 1;
  1171. transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  1172. }
  1173. to {
  1174. opacity: 0;
  1175. transform: scale(.1) translate3d(2000px, 0, 0);
  1176. transform-origin: right center;
  1177. }
  1178. }
  1179. .zoomOutRight {
  1180. animation-name: zoomOutRight;
  1181. }
  1182. @keyframes zoomOutUp {
  1183. 40% {
  1184. opacity: 1;
  1185. transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
  1186. animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  1187. }
  1188. to {
  1189. opacity: 0;
  1190. transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
  1191. transform-origin: center bottom;
  1192. animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  1193. }
  1194. }
  1195. .zoomOutUp {
  1196. animation-name: zoomOutUp;
  1197. }
  1198. @keyframes slideInDown {
  1199. from {
  1200. transform: translate3d(0, -100%, 0);
  1201. visibility: visible;
  1202. }
  1203. to {
  1204. transform: translate3d(0, 0, 0);
  1205. }
  1206. }
  1207. .slideInDown {
  1208. animation-name: slideInDown;
  1209. }
  1210. @keyframes slideInLeft {
  1211. from {
  1212. transform: translate3d(-100%, 0, 0);
  1213. visibility: visible;
  1214. }
  1215. to {
  1216. transform: translate3d(0, 0, 0);
  1217. }
  1218. }
  1219. .slideInLeft {
  1220. animation-name: slideInLeft;
  1221. }
  1222. @keyframes slideInRight {
  1223. from {
  1224. transform: translate3d(100%, 0, 0);
  1225. visibility: visible;
  1226. }
  1227. to {
  1228. transform: translate3d(0, 0, 0);
  1229. }
  1230. }
  1231. .slideInRight {
  1232. animation-name: slideInRight;
  1233. }
  1234. @keyframes slideInUp {
  1235. from {
  1236. transform: translate3d(0, 100%, 0);
  1237. visibility: visible;
  1238. }
  1239. to {
  1240. transform: translate3d(0, 0, 0);
  1241. }
  1242. }
  1243. .slideInUp {
  1244. animation-name: slideInUp;
  1245. }
  1246. @keyframes slideOutDown {
  1247. from {
  1248. transform: translate3d(0, 0, 0);
  1249. }
  1250. to {
  1251. visibility: hidden;
  1252. transform: translate3d(0, 100%, 0);
  1253. }
  1254. }
  1255. .slideOutDown {
  1256. animation-name: slideOutDown;
  1257. }
  1258. @keyframes slideOutLeft {
  1259. from {
  1260. transform: translate3d(0, 0, 0);
  1261. }
  1262. to {
  1263. visibility: hidden;
  1264. transform: translate3d(-100%, 0, 0);
  1265. }
  1266. }
  1267. .slideOutLeft {
  1268. animation-name: slideOutLeft;
  1269. }
  1270. @keyframes slideOutRight {
  1271. from {
  1272. transform: translate3d(0, 0, 0);
  1273. }
  1274. to {
  1275. visibility: hidden;
  1276. transform: translate3d(100%, 0, 0);
  1277. }
  1278. }
  1279. .slideOutRight {
  1280. animation-name: slideOutRight;
  1281. }
  1282. @keyframes slideOutUp {
  1283. from {
  1284. transform: translate3d(0, 0, 0);
  1285. }
  1286. to {
  1287. visibility: hidden;
  1288. transform: translate3d(0, -100%, 0);
  1289. }
  1290. }
  1291. .slideOutUp {
  1292. animation-name: slideOutUp;
  1293. }