error.module.scss 707 B

123456789101112131415161718192021222324252627282930313233
  1. .page {
  2. height: calc(100vh - 57px);
  3. background: no-repeat center #000;
  4. background-size: cover;
  5. color: #fff;
  6. &.bg-1 {
  7. background-image: url("/images/bg/1.jpg");
  8. }
  9. &.bg-2 {
  10. background-image: url("/images/bg/2.jpg");
  11. }
  12. &.bg-3 {
  13. background-image: url("/images/bg/3.jpg");
  14. }
  15. &.bg-4 {
  16. background-image: url("/images/bg/4.jpg");
  17. }
  18. &.bg-5 {
  19. background-image: url("/images/bg/5.jpg");
  20. }
  21. .main {
  22. @apply w-full h-full flex flex-col justify-center items-center bg-gradient-to-r from-black/40 to-black/50;
  23. h1 {
  24. @apply text-9xl font-black mb-5 font-sans;
  25. }
  26. h2 {
  27. @apply text-5xl font-black my-5;
  28. }
  29. .btn {
  30. @apply mt-5;
  31. }
  32. }
  33. }