_404.scss 476 B

1234567891011121314151617181920212223242526272829
  1. #page.error-404 {
  2. justify-content: center;
  3. align-items: center;
  4. }
  5. .banner-404 {
  6. font-size: 1.4rem;
  7. padding: 1em;
  8. line-height: normal;
  9. > h1 {
  10. font-size: 3em;
  11. margin: 0;
  12. }
  13. }
  14. .btn-404 {
  15. margin-bottom: 0;
  16. > a {
  17. display: inline-block;
  18. font-size: 1.25rem;
  19. border: 1px solid var(--c-txt-alt);
  20. padding: .3em .5em;
  21. margin-right: .5em;
  22. &:hover {
  23. border-color: $accent;
  24. }
  25. &:active {
  26. border-style: dashed;
  27. }
  28. }
  29. }