holding-page-503.css 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. html,
  2. body {
  3. height: 100%;
  4. width: 100%;
  5. margin: 0;
  6. }
  7. *,
  8. *::before,
  9. *::after {
  10. box-sizing: border-box;
  11. }
  12. .overlay {
  13. position: absolute;
  14. background: linear-gradient(180deg, #00b44d 0%, #005123 100%);
  15. height: 100%;
  16. width: 100%;
  17. }
  18. .content-container {
  19. display: flex;
  20. align-items: center;
  21. justify-content: center;
  22. position: absolute;
  23. top: 40%;
  24. left: 50%;
  25. transform: translate(-50%, -50%);
  26. display: flex;
  27. }
  28. .logo-container {
  29. margin-top: 24px;
  30. }
  31. .content {
  32. margin-left: 48px;
  33. }
  34. .header {
  35. font-style: normal;
  36. font-weight: 700;
  37. font-size: 36px;
  38. line-height: 40px;
  39. display: flex;
  40. align-items: center;
  41. color: #ffffff;
  42. white-space: nowrap;
  43. }
  44. .info {
  45. width: 444px;
  46. font-style: normal;
  47. font-weight: 400;
  48. font-size: 16px;
  49. line-height: 20px;
  50. display: flex;
  51. align-items: center;
  52. color: #ffffff;
  53. }
  54. .buttons {
  55. display: flex;
  56. margin-top: 48px;
  57. }
  58. .button {
  59. display: flex;
  60. flex-direction: row;
  61. justify-content: center;
  62. align-items: center;
  63. gap: 8px;
  64. padding: 12px 0px;
  65. width: 168px;
  66. height: 40px;
  67. border-radius: 4px;
  68. color: #ffffff;
  69. font-size: 14px;
  70. text-decoration: none;
  71. font-weight: 600;
  72. cursor: pointer;
  73. }
  74. .button:hover {
  75. opacity: 0.8;
  76. }
  77. .button-reload {
  78. background: transparent;
  79. border: 1px solid #ffffff;
  80. }
  81. .button-status {
  82. margin-left: 24px;
  83. background: #00ab44;
  84. }