redirect.css 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. body {
  2. padding-top: 50px;
  3. text-align: center;
  4. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  5. font-size: 18px;
  6. color: #222;
  7. }
  8. a {
  9. color: #eb6864;
  10. text-decoration: none;
  11. }
  12. a:hover {
  13. color: #e22620;
  14. text-decoration: underline;
  15. }
  16. p {
  17. max-width: 600px;
  18. margin-left: auto;
  19. margin-right: auto;
  20. }
  21. .small {
  22. font-size: 14px;
  23. color: #bbb;
  24. }
  25. .small a {
  26. color: #f2a297;
  27. }
  28. .small a:hover {
  29. color: #ef897f;
  30. }
  31. @-webkit-keyframes flip {
  32. from {
  33. -webkit-transform: rotateY(0deg) scale(1);
  34. }
  35. 50% {
  36. -webkit-transform: rotateY(180deg) scale(1);
  37. -webkit-animation-timing-function: linear;
  38. }
  39. to {
  40. -webkit-transform: rotateY(360deg) scale(1);
  41. }
  42. }
  43. @-webkit-keyframes unflip {
  44. from {
  45. -webkit-transform: rotateY(360deg);
  46. }
  47. to {
  48. -webkit-transform: rotateY(0deg);
  49. }
  50. }
  51. img.logo {
  52. -webkit-animation-duration: 0.8s;
  53. -webkit-animation-name: unflip;
  54. -webkit-perspective: 800px;
  55. }
  56. img.logo:hover {
  57. -webkit-animation-duration: 0.7s;
  58. -webkit-animation-name: flip;
  59. -webkit-perspective: 800px;
  60. -webkit-animation-timing-function: ease-in-out;
  61. }