The version of vichan running on lainchan.org
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.

1580 lines
23KB

  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 fadeInDownBig {
  462. from {
  463. opacity: 0;
  464. transform: translate3d(0, -2000px, 0);
  465. }
  466. to {
  467. opacity: 1;
  468. transform: none;
  469. }
  470. }
  471. .fadeInDownBig {
  472. animation-name: fadeInDownBig;
  473. }
  474. @keyframes fadeInLeft {
  475. from {
  476. opacity: 0;
  477. transform: translate3d(-100%, 0, 0);
  478. }
  479. to {
  480. opacity: 1;
  481. transform: none;
  482. }
  483. }
  484. .fadeInLeft {
  485. animation-name: fadeInLeft;
  486. }
  487. @keyframes fadeInLeftBig {
  488. from {
  489. opacity: 0;
  490. transform: translate3d(-2000px, 0, 0);
  491. }
  492. to {
  493. opacity: 1;
  494. transform: none;
  495. }
  496. }
  497. .fadeInLeftBig {
  498. animation-name: fadeInLeftBig;
  499. }
  500. @keyframes fadeInRight {
  501. from {
  502. opacity: 0;
  503. transform: translate3d(100%, 0, 0);
  504. }
  505. to {
  506. opacity: 1;
  507. transform: none;
  508. }
  509. }
  510. .fadeInRight {
  511. animation-name: fadeInRight;
  512. }
  513. @keyframes fadeInRightBig {
  514. from {
  515. opacity: 0;
  516. transform: translate3d(2000px, 0, 0);
  517. }
  518. to {
  519. opacity: 1;
  520. transform: none;
  521. }
  522. }
  523. .fadeInRightBig {
  524. animation-name: fadeInRightBig;
  525. }
  526. @keyframes fadeInUp {
  527. from {
  528. opacity: 0;
  529. transform: translate3d(0, 100%, 0);
  530. }
  531. to {
  532. opacity: 1;
  533. transform: none;
  534. }
  535. }
  536. .fadeInUp {
  537. animation-name: fadeInUp;
  538. }
  539. @keyframes fadeInUpBig {
  540. from {
  541. opacity: 0;
  542. transform: translate3d(0, 2000px, 0);
  543. }
  544. to {
  545. opacity: 1;
  546. transform: none;
  547. }
  548. }
  549. .fadeInUpBig {
  550. animation-name: fadeInUpBig;
  551. }
  552. @keyframes fadeOut {
  553. from {
  554. opacity: 1;
  555. }
  556. to {
  557. opacity: 0;
  558. }
  559. }
  560. .fadeOut {
  561. animation-name: fadeOut;
  562. }
  563. @keyframes fadeOutDown {
  564. from {
  565. opacity: 1;
  566. }
  567. to {
  568. opacity: 0;
  569. transform: translate3d(0, 100%, 0);
  570. }
  571. }
  572. .fadeOutDown {
  573. animation-name: fadeOutDown;
  574. }
  575. @keyframes fadeOutDownBig {
  576. from {
  577. opacity: 1;
  578. }
  579. to {
  580. opacity: 0;
  581. transform: translate3d(0, 2000px, 0);
  582. }
  583. }
  584. .fadeOutDownBig {
  585. animation-name: fadeOutDownBig;
  586. }
  587. @keyframes fadeOutLeft {
  588. from {
  589. opacity: 1;
  590. }
  591. to {
  592. opacity: 0;
  593. transform: translate3d(-100%, 0, 0);
  594. }
  595. }
  596. .fadeOutLeft {
  597. animation-name: fadeOutLeft;
  598. }
  599. @keyframes fadeOutLeftBig {
  600. from {
  601. opacity: 1;
  602. }
  603. to {
  604. opacity: 0;
  605. transform: translate3d(-2000px, 0, 0);
  606. }
  607. }
  608. .fadeOutLeftBig {
  609. animation-name: fadeOutLeftBig;
  610. }
  611. @keyframes fadeOutRight {
  612. from {
  613. opacity: 1;
  614. }
  615. to {
  616. opacity: 0;
  617. transform: translate3d(100%, 0, 0);
  618. }
  619. }
  620. .fadeOutRight {
  621. animation-name: fadeOutRight;
  622. }
  623. @keyframes fadeOutRightBig {
  624. from {
  625. opacity: 1;
  626. }
  627. to {
  628. opacity: 0;
  629. transform: translate3d(2000px, 0, 0);
  630. }
  631. }
  632. .fadeOutRightBig {
  633. animation-name: fadeOutRightBig;
  634. }
  635. @keyframes fadeOutUp {
  636. from {
  637. opacity: 1;
  638. }
  639. to {
  640. opacity: 0;
  641. transform: translate3d(0, -100%, 0);
  642. }
  643. }
  644. .fadeOutUp {
  645. animation-name: fadeOutUp;
  646. }
  647. @keyframes fadeOutUpBig {
  648. from {
  649. opacity: 1;
  650. }
  651. to {
  652. opacity: 0;
  653. transform: translate3d(0, -2000px, 0);
  654. }
  655. }
  656. .fadeOutUpBig {
  657. animation-name: fadeOutUpBig;
  658. }
  659. @keyframes flip {
  660. from {
  661. transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
  662. animation-timing-function: ease-out;
  663. }
  664. 40% {
  665. transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
  666. animation-timing-function: ease-out;
  667. }
  668. 50% {
  669. transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
  670. animation-timing-function: ease-in;
  671. }
  672. 80% {
  673. transform: perspective(400px) scale3d(.95, .95, .95);
  674. animation-timing-function: ease-in;
  675. }
  676. to {
  677. transform: perspective(400px);
  678. animation-timing-function: ease-in;
  679. }
  680. }
  681. .animated.flip {
  682. -webkit-backface-visibility: visible;
  683. backface-visibility: visible;
  684. animation-name: flip;
  685. }
  686. @keyframes flipInX {
  687. from {
  688. transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
  689. animation-timing-function: ease-in;
  690. opacity: 0;
  691. }
  692. 40% {
  693. transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
  694. animation-timing-function: ease-in;
  695. }
  696. 60% {
  697. transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
  698. opacity: 1;
  699. }
  700. 80% {
  701. transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  702. }
  703. to {
  704. transform: perspective(400px);
  705. }
  706. }
  707. .flipInX {
  708. -webkit-backface-visibility: visible !important;
  709. backface-visibility: visible !important;
  710. animation-name: flipInX;
  711. }
  712. @keyframes flipInY {
  713. from {
  714. transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
  715. animation-timing-function: ease-in;
  716. opacity: 0;
  717. }
  718. 40% {
  719. transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
  720. animation-timing-function: ease-in;
  721. }
  722. 60% {
  723. transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
  724. opacity: 1;
  725. }
  726. 80% {
  727. transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  728. }
  729. to {
  730. transform: perspective(400px);
  731. }
  732. }
  733. .flipInY {
  734. -webkit-backface-visibility: visible !important;
  735. backface-visibility: visible !important;
  736. animation-name: flipInY;
  737. }
  738. @keyframes flipOutX {
  739. from {
  740. transform: perspective(400px);
  741. }
  742. 30% {
  743. transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
  744. opacity: 1;
  745. }
  746. to {
  747. transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
  748. opacity: 0;
  749. }
  750. }
  751. .flipOutX {
  752. animation-name: flipOutX;
  753. -webkit-backface-visibility: visible !important;
  754. backface-visibility: visible !important;
  755. }
  756. @keyframes flipOutY {
  757. from {
  758. transform: perspective(400px);
  759. }
  760. 30% {
  761. transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
  762. opacity: 1;
  763. }
  764. to {
  765. transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
  766. opacity: 0;
  767. }
  768. }
  769. .flipOutY {
  770. -webkit-backface-visibility: visible !important;
  771. backface-visibility: visible !important;
  772. animation-name: flipOutY;
  773. }
  774. @keyframes lightSpeedIn {
  775. from {
  776. transform: translate3d(100%, 0, 0) skewX(-30deg);
  777. opacity: 0;
  778. }
  779. 60% {
  780. transform: skewX(20deg);
  781. opacity: 1;
  782. }
  783. 80% {
  784. transform: skewX(-5deg);
  785. opacity: 1;
  786. }
  787. to {
  788. transform: none;
  789. opacity: 1;
  790. }
  791. }
  792. .lightSpeedIn {
  793. animation-name: lightSpeedIn;
  794. animation-timing-function: ease-out;
  795. }
  796. @keyframes lightSpeedOut {
  797. from {
  798. opacity: 1;
  799. }
  800. to {
  801. transform: translate3d(100%, 0, 0) skewX(30deg);
  802. opacity: 0;
  803. }
  804. }
  805. .lightSpeedOut {
  806. animation-name: lightSpeedOut;
  807. animation-timing-function: ease-in;
  808. }
  809. @keyframes rotateIn {
  810. from {
  811. transform-origin: center;
  812. transform: rotate3d(0, 0, 1, -200deg);
  813. opacity: 0;
  814. }
  815. to {
  816. transform-origin: center;
  817. transform: none;
  818. opacity: 1;
  819. }
  820. }
  821. .rotateIn {
  822. animation-name: rotateIn;
  823. }
  824. @keyframes rotateInDownLeft {
  825. from {
  826. transform-origin: left bottom;
  827. transform: rotate3d(0, 0, 1, -45deg);
  828. opacity: 0;
  829. }
  830. to {
  831. transform-origin: left bottom;
  832. transform: none;
  833. opacity: 1;
  834. }
  835. }
  836. .rotateInDownLeft {
  837. animation-name: rotateInDownLeft;
  838. }
  839. @keyframes rotateInDownRight {
  840. from {
  841. transform-origin: right bottom;
  842. transform: rotate3d(0, 0, 1, 45deg);
  843. opacity: 0;
  844. }
  845. to {
  846. transform-origin: right bottom;
  847. transform: none;
  848. opacity: 1;
  849. }
  850. }
  851. .rotateInDownRight {
  852. animation-name: rotateInDownRight;
  853. }
  854. @keyframes rotateInUpLeft {
  855. from {
  856. transform-origin: left bottom;
  857. transform: rotate3d(0, 0, 1, 45deg);
  858. opacity: 0;
  859. }
  860. to {
  861. transform-origin: left bottom;
  862. transform: none;
  863. opacity: 1;
  864. }
  865. }
  866. .rotateInUpLeft {
  867. animation-name: rotateInUpLeft;
  868. }
  869. @keyframes rotateInUpRight {
  870. from {
  871. transform-origin: right bottom;
  872. transform: rotate3d(0, 0, 1, -90deg);
  873. opacity: 0;
  874. }
  875. to {
  876. transform-origin: right bottom;
  877. transform: none;
  878. opacity: 1;
  879. }
  880. }
  881. .rotateInUpRight {
  882. animation-name: rotateInUpRight;
  883. }
  884. @keyframes rotateOut {
  885. from {
  886. transform-origin: center;
  887. opacity: 1;
  888. }
  889. to {
  890. transform-origin: center;
  891. transform: rotate3d(0, 0, 1, 200deg);
  892. opacity: 0;
  893. }
  894. }
  895. .rotateOut {
  896. animation-name: rotateOut;
  897. }
  898. @keyframes rotateOutDownLeft {
  899. from {
  900. transform-origin: left bottom;
  901. opacity: 1;
  902. }
  903. to {
  904. transform-origin: left bottom;
  905. transform: rotate3d(0, 0, 1, 45deg);
  906. opacity: 0;
  907. }
  908. }
  909. .rotateOutDownLeft {
  910. animation-name: rotateOutDownLeft;
  911. }
  912. @keyframes rotateOutDownRight {
  913. from {
  914. transform-origin: right bottom;
  915. opacity: 1;
  916. }
  917. to {
  918. transform-origin: right bottom;
  919. transform: rotate3d(0, 0, 1, -45deg);
  920. opacity: 0;
  921. }
  922. }
  923. .rotateOutDownRight {
  924. animation-name: rotateOutDownRight;
  925. }
  926. @keyframes rotateOutUpLeft {
  927. from {
  928. transform-origin: left bottom;
  929. opacity: 1;
  930. }
  931. to {
  932. transform-origin: left bottom;
  933. transform: rotate3d(0, 0, 1, -45deg);
  934. opacity: 0;
  935. }
  936. }
  937. .rotateOutUpLeft {
  938. animation-name: rotateOutUpLeft;
  939. }
  940. @keyframes rotateOutUpRight {
  941. from {
  942. transform-origin: right bottom;
  943. opacity: 1;
  944. }
  945. to {
  946. transform-origin: right bottom;
  947. transform: rotate3d(0, 0, 1, 90deg);
  948. opacity: 0;
  949. }
  950. }
  951. .rotateOutUpRight {
  952. animation-name: rotateOutUpRight;
  953. }
  954. @keyframes hinge {
  955. 0% {
  956. transform-origin: top left;
  957. animation-timing-function: ease-in-out;
  958. }
  959. 20%, 60% {
  960. transform: rotate3d(0, 0, 1, 80deg);
  961. transform-origin: top left;
  962. animation-timing-function: ease-in-out;
  963. }
  964. 40%, 80% {
  965. transform: rotate3d(0, 0, 1, 60deg);
  966. transform-origin: top left;
  967. animation-timing-function: ease-in-out;
  968. opacity: 1;
  969. }
  970. to {
  971. transform: translate3d(0, 700px, 0);
  972. opacity: 0;
  973. }
  974. }
  975. .hinge {
  976. animation-name: hinge;
  977. }
  978. @keyframes jackInTheBox {
  979. from {
  980. opacity: 0;
  981. transform: scale(0.1) rotate(30deg);
  982. transform-origin: center bottom;
  983. }
  984. 50% {
  985. transform: rotate(-10deg);
  986. }
  987. 70% {
  988. transform: rotate(3deg);
  989. }
  990. to {
  991. opacity: 1;
  992. transform: scale(1);
  993. }
  994. }
  995. .jackInTheBox {
  996. animation-name: jackInTheBox;
  997. }
  998. /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
  999. @keyframes rollIn {
  1000. from {
  1001. opacity: 0;
  1002. transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  1003. }
  1004. to {
  1005. opacity: 1;
  1006. transform: none;
  1007. }
  1008. }
  1009. .rollIn {
  1010. animation-name: rollIn;
  1011. }
  1012. /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
  1013. @keyframes rollOut {
  1014. from {
  1015. opacity: 1;
  1016. }
  1017. to {
  1018. opacity: 0;
  1019. transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  1020. }
  1021. }
  1022. .rollOut {
  1023. animation-name: rollOut;
  1024. }
  1025. @keyframes zoomIn {
  1026. from {
  1027. opacity: 0;
  1028. transform: scale3d(.3, .3, .3);
  1029. }
  1030. 50% {
  1031. opacity: 1;
  1032. }
  1033. }
  1034. .zoomIn {
  1035. animation-name: zoomIn;
  1036. }
  1037. @keyframes zoomInDown {
  1038. from {
  1039. opacity: 0;
  1040. transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
  1041. animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  1042. }
  1043. 60% {
  1044. opacity: 1;
  1045. transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
  1046. animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  1047. }
  1048. }
  1049. .zoomInDown {
  1050. animation-name: zoomInDown;
  1051. }
  1052. @keyframes zoomInLeft {
  1053. from {
  1054. opacity: 0;
  1055. transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
  1056. animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  1057. }
  1058. 60% {
  1059. opacity: 1;
  1060. transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
  1061. animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  1062. }
  1063. }
  1064. .zoomInLeft {
  1065. animation-name: zoomInLeft;
  1066. }
  1067. @keyframes zoomInRight {
  1068. from {
  1069. opacity: 0;
  1070. transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
  1071. animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  1072. }
  1073. 60% {
  1074. opacity: 1;
  1075. transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
  1076. animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  1077. }
  1078. }
  1079. .zoomInRight {
  1080. animation-name: zoomInRight;
  1081. }
  1082. @keyframes zoomInUp {
  1083. from {
  1084. opacity: 0;
  1085. transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
  1086. animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  1087. }
  1088. 60% {
  1089. opacity: 1;
  1090. transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
  1091. animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  1092. }
  1093. }
  1094. .zoomInUp {
  1095. animation-name: zoomInUp;
  1096. }
  1097. @keyframes zoomOut {
  1098. from {
  1099. opacity: 1;
  1100. }
  1101. 50% {
  1102. opacity: 0;
  1103. transform: scale3d(.3, .3, .3);
  1104. }
  1105. to {
  1106. opacity: 0;
  1107. }
  1108. }
  1109. .zoomOut {
  1110. animation-name: zoomOut;
  1111. }
  1112. @keyframes zoomOutDown {
  1113. 40% {
  1114. opacity: 1;
  1115. transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
  1116. animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  1117. }
  1118. to {
  1119. opacity: 0;
  1120. transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
  1121. transform-origin: center bottom;
  1122. animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  1123. }
  1124. }
  1125. .zoomOutDown {
  1126. animation-name: zoomOutDown;
  1127. }
  1128. @keyframes zoomOutLeft {
  1129. 40% {
  1130. opacity: 1;
  1131. transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  1132. }
  1133. to {
  1134. opacity: 0;
  1135. transform: scale(.1) translate3d(-2000px, 0, 0);
  1136. transform-origin: left center;
  1137. }
  1138. }
  1139. .zoomOutLeft {
  1140. animation-name: zoomOutLeft;
  1141. }
  1142. @keyframes zoomOutRight {
  1143. 40% {
  1144. opacity: 1;
  1145. transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  1146. }
  1147. to {
  1148. opacity: 0;
  1149. transform: scale(.1) translate3d(2000px, 0, 0);
  1150. transform-origin: right center;
  1151. }
  1152. }
  1153. .zoomOutRight {
  1154. animation-name: zoomOutRight;
  1155. }
  1156. @keyframes zoomOutUp {
  1157. 40% {
  1158. opacity: 1;
  1159. transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
  1160. animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  1161. }
  1162. to {
  1163. opacity: 0;
  1164. transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
  1165. transform-origin: center bottom;
  1166. animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  1167. }
  1168. }
  1169. .zoomOutUp {
  1170. animation-name: zoomOutUp;
  1171. }
  1172. @keyframes slideInDown {
  1173. from {
  1174. transform: translate3d(0, -100%, 0);
  1175. visibility: visible;
  1176. }
  1177. to {
  1178. transform: translate3d(0, 0, 0);
  1179. }
  1180. }
  1181. .slideInDown {
  1182. animation-name: slideInDown;
  1183. }
  1184. @keyframes slideInLeft {
  1185. from {
  1186. transform: translate3d(-100%, 0, 0);
  1187. visibility: visible;
  1188. }
  1189. to {
  1190. transform: translate3d(0, 0, 0);
  1191. }
  1192. }
  1193. .slideInLeft {
  1194. animation-name: slideInLeft;
  1195. }
  1196. @keyframes slideInRight {
  1197. from {
  1198. transform: translate3d(100%, 0, 0);
  1199. visibility: visible;
  1200. }
  1201. to {
  1202. transform: translate3d(0, 0, 0);
  1203. }
  1204. }
  1205. .slideInRight {
  1206. animation-name: slideInRight;
  1207. }
  1208. @keyframes slideInUp {
  1209. from {
  1210. transform: translate3d(0, 100%, 0);
  1211. visibility: visible;
  1212. }
  1213. to {
  1214. transform: translate3d(0, 0, 0);
  1215. }
  1216. }
  1217. .slideInUp {
  1218. animation-name: slideInUp;
  1219. }
  1220. @keyframes slideOutDown {
  1221. from {
  1222. transform: translate3d(0, 0, 0);
  1223. }
  1224. to {
  1225. visibility: hidden;
  1226. transform: translate3d(0, 100%, 0);
  1227. }
  1228. }
  1229. .slideOutDown {
  1230. animation-name: slideOutDown;
  1231. }
  1232. @keyframes slideOutLeft {
  1233. from {
  1234. transform: translate3d(0, 0, 0);
  1235. }
  1236. to {
  1237. visibility: hidden;
  1238. transform: translate3d(-100%, 0, 0);
  1239. }
  1240. }
  1241. .slideOutLeft {
  1242. animation-name: slideOutLeft;
  1243. }
  1244. @keyframes slideOutRight {
  1245. from {
  1246. transform: translate3d(0, 0, 0);
  1247. }
  1248. to {
  1249. visibility: hidden;
  1250. transform: translate3d(100%, 0, 0);
  1251. }
  1252. }
  1253. .slideOutRight {
  1254. animation-name: slideOutRight;
  1255. }
  1256. @keyframes slideOutUp {
  1257. from {
  1258. transform: translate3d(0, 0, 0);
  1259. }
  1260. to {
  1261. visibility: hidden;
  1262. transform: translate3d(0, -100%, 0);
  1263. }
  1264. }
  1265. .slideOutUp {
  1266. animation-name: slideOutUp;
  1267. }