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.

96 lines
1.8 KiB

1 month ago
  1. body {
  2. background-color: #2F3242;
  3. }
  4. svg {
  5. position: absolute;
  6. top: 50%;
  7. left: 50%;
  8. margin-top: -250px;
  9. margin-left: -400px;
  10. }
  11. .message-box {
  12. height: 200px;
  13. width: 380px;
  14. position: absolute;
  15. top: 50%;
  16. left: 50%;
  17. margin-top: -100px;
  18. margin-left: 50px;
  19. color: #FFF;
  20. font-family: Roboto;
  21. font-weight: 300;
  22. }
  23. .message-box h1 {
  24. font-size: 60px;
  25. line-height: 46px;
  26. margin-bottom: 40px;
  27. }
  28. .buttons-con .action-link-wrap {
  29. margin-top: 40px;
  30. }
  31. .buttons-con .action-link-wrap a {
  32. background: #68c950;
  33. padding: 8px 25px;
  34. border-radius: 4px;
  35. color: #FFF;
  36. font-weight: bold;
  37. font-size: 14px;
  38. transition: all 0.3s linear;
  39. cursor: pointer;
  40. text-decoration: none;
  41. margin-right: 10px
  42. }
  43. .buttons-con .action-link-wrap a:hover {
  44. background: #5A5C6C;
  45. color: #fff;
  46. }
  47. #Polygon-1 , #Polygon-2 , #Polygon-3 , #Polygon-4 , #Polygon-4, #Polygon-5 {
  48. -webkit-animation: float 1s infinite ease-in-out alternate;
  49. animation: float 1s infinite ease-in-out alternate;
  50. }
  51. #Polygon-2 {
  52. -webkit-animation-delay: .2s;
  53. animation-delay: .2s;
  54. }
  55. #Polygon-3 {
  56. -webkit-animation-delay: .4s;
  57. animation-delay: .4s;
  58. }
  59. #Polygon-4 {
  60. -webkit-animation-delay: .6s;
  61. animation-delay: .6s;
  62. }
  63. #Polygon-5 {
  64. -webkit-animation-delay: .8s;
  65. animation-delay: .8s;
  66. }
  67. @-webkit-keyframes float {
  68. 100% {
  69. -webkit-transform: translateY(20px);
  70. transform: translateY(20px);
  71. }
  72. }
  73. @keyframes float {
  74. 100% {
  75. -webkit-transform: translateY(20px);
  76. transform: translateY(20px);
  77. }
  78. }
  79. @media (max-width: 450px) {
  80. svg {
  81. position: absolute;
  82. top: 50%;
  83. left: 50%;
  84. margin-top: -250px;
  85. margin-left: -190px;
  86. }
  87. .message-box {
  88. top: 50%;
  89. left: 50%;
  90. margin-top: -100px;
  91. margin-left: -190px;
  92. text-align: center;
  93. }
  94. }