You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
633 B

  1. body {
  2. display: flex;
  3. align-items: center;
  4. min-height: 100vh;
  5. width: 100vw;
  6. padding: 25px 0;
  7. margin: 0;
  8. color: #FFF;
  9. &.is-notexist {
  10. background-color: mc('blue-grey', '900');
  11. }
  12. &.is-forbidden {
  13. background-color: darken(mc('blue-grey', '900'), 5%);
  14. }
  15. &.is-error {
  16. background-color: darken(mc('blue-grey', '900'), 10%);
  17. }
  18. }
  19. .container {
  20. text-align: center;
  21. h1 {
  22. margin-top: 30px;
  23. }
  24. h2 {
  25. margin-bottom: 50px;
  26. }
  27. a.button {
  28. margin: 0 5px;
  29. }
  30. h3 {
  31. text-align: left;
  32. margin-top: 50px;
  33. }
  34. pre {
  35. margin-top: 10px;
  36. text-align: left;
  37. color: mc('blue-grey', '200');
  38. font-size: 12px;
  39. }
  40. }