404.vue 945 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <template>
  2. <div class="page-404">
  3. <div class="flex-center position-ref full-height">
  4. <div class="code">404</div>
  5. <div class="message">Not Found</div>
  6. </div>
  7. </div>
  8. </template>
  9. <style lang="scss" scoped>
  10. .page-404 {
  11. background-color: #fff;
  12. color: #636b6f;
  13. font-weight: 400;
  14. height: 100vh;
  15. margin: 0;
  16. .full-height {
  17. height: 100vh;
  18. }
  19. .flex-center {
  20. align-items: center;
  21. display: flex;
  22. justify-content: center;
  23. }
  24. .position-ref {
  25. position: relative;
  26. }
  27. .code {
  28. border-right: 2px solid;
  29. font-size: 26px;
  30. padding: 0 15px 0 15px;
  31. text-align: center;
  32. }
  33. .message {
  34. font-size: 18px;
  35. padding: 10px;
  36. text-align: center;
  37. }
  38. }
  39. </style>