style.scss 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /*
  2. * Copyright 2022 Pnoker All Rights Reserved
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * https://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. .error {
  17. height: 100%;
  18. display: flex;
  19. flex-direction: column;
  20. align-items: center;
  21. justify-content: center;
  22. .img {
  23. height: 360px;
  24. width: 100%;
  25. max-width: 430px;
  26. background-repeat: no-repeat;
  27. background-position: 50% 50%;
  28. background-size: contain;
  29. }
  30. .content {
  31. text-align: center;
  32. h1 {
  33. color: #1296DB;
  34. font-size: 72px;
  35. font-weight: 600;
  36. line-height: 72px;
  37. margin-bottom: 24px;
  38. }
  39. .desc {
  40. color: black;
  41. font-size: 15px;
  42. line-height: 28px;
  43. margin-bottom: 16px;
  44. }
  45. }
  46. }