index.html 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1" />
  6. <title>Success!</title>
  7. <style>
  8. body {
  9. background-color: #f5f5f5;
  10. margin-top: 8%;
  11. color: #5d5d5d;
  12. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial,
  13. "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
  14. "Noto Color Emoji";
  15. text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.75);
  16. text-align: center;
  17. }
  18. h1 {
  19. font-size: 2.45em;
  20. font-weight: 700;
  21. color: #5d5d5d;
  22. letter-spacing: -0.02em;
  23. margin-bottom: 30px;
  24. margin-top: 30px;
  25. }
  26. .container {
  27. width: 100%;
  28. margin-right: auto;
  29. margin-left: auto;
  30. }
  31. .animate__animated {
  32. animation-duration: 1s;
  33. animation-fill-mode: both;
  34. }
  35. .animate__fadeIn {
  36. animation-name: fadeIn;
  37. }
  38. .info {
  39. color: #5594cf;
  40. fill: #5594cf;
  41. }
  42. .error {
  43. color: #c92127;
  44. fill: #c92127;
  45. }
  46. .warning {
  47. color: #ffcc33;
  48. fill: #ffcc33;
  49. }
  50. .success {
  51. color: #5aba47;
  52. fill: #5aba47;
  53. }
  54. .icon-large {
  55. height: 132px;
  56. width: 132px;
  57. }
  58. .description-text {
  59. color: #707070;
  60. letter-spacing: -0.01em;
  61. font-size: 1.25em;
  62. line-height: 20px;
  63. }
  64. .footer {
  65. margin-top: 40px;
  66. font-size: 0.7em;
  67. }
  68. .animate__delay-1s {
  69. animation-delay: 1s;
  70. }
  71. @keyframes fadeIn {
  72. from {
  73. opacity: 0;
  74. }
  75. to {
  76. opacity: 1;
  77. }
  78. }
  79. </style>
  80. </head>
  81. <body>
  82. <div class="container">
  83. <div class="row">
  84. <div class="col">
  85. <div class="animate__animated animate__fadeIn">
  86. <i class="success">
  87. <svg
  88. class="success icon-large fa-check-circle"
  89. xmlns="http://www.w3.org/2000/svg"
  90. viewBox="0 0 512 512"
  91. >
  92. <path
  93. d="M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z"
  94. ></path>
  95. </svg>
  96. </i>
  97. </div>
  98. <h1 class="animate__animated animate__fadeIn">Success!</h1>
  99. <div class="description-text animate__animated animate__fadeIn animate__delay-1s">
  100. <p>Your new web server is ready to use.</p>
  101. </div>
  102. </div>
  103. </div>
  104. </div>
  105. </body>
  106. </html>