Next.js template
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

_error-page.scss 823B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. .c-error-page {
  2. margin-top: pxToRem(120px);
  3. @include media-below($bp-md) {
  4. margin-top: pxToRemMd(120px);
  5. .c-error-page__title {
  6. font-size: pxToRemMd(160px);
  7. margin-bottom: pxToRemMd(27px);
  8. }
  9. .c-error-page__text {
  10. margin-bottom: pxToRem(24px);
  11. }
  12. }
  13. }
  14. .c-error-page__content-container {
  15. @include flex-center;
  16. }
  17. .c-error-page__content {
  18. @include flex-column;
  19. align-items: center;
  20. padding: 0 pxToRem(32px);
  21. }
  22. .c-error-page__title {
  23. font-size: pxToRem(160px);
  24. line-height: 1.35;
  25. color: $dark-blue;
  26. margin-bottom: pxToRem(32px);
  27. color: $color-primary;
  28. font-weight: bold;
  29. }
  30. .c-error-page__text {
  31. font-weight: 600;
  32. margin-bottom: pxToRem(24px);
  33. text-align: center;
  34. }
  35. .c-error-page__button {
  36. margin-bottom: pxToRem(16px);
  37. min-width: pxToRem(250px);
  38. }