error.css 794 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /* #MARKER vars and shit */
  2. :root {
  3. --line-height: calc(100% + 4px);
  4. }
  5. .noselect {
  6. -webkit-touch-callout: none;
  7. -webkit-user-select: none;
  8. -khtml-user-select: none;
  9. -moz-user-select: none;
  10. -ms-user-select: none;
  11. user-select: none;
  12. }
  13. .mimica {
  14. cursor: pointer;
  15. }
  16. a:not(.noul), .mimica:not(.noul) {
  17. color: #8f9aff;
  18. text-decoration: none;
  19. }
  20. a:not(.noul):hover, .mimica:not(.noul):hover {
  21. color: #bcc2ff;
  22. text-decoration: underline;
  23. }
  24. /* #MARKER other */
  25. body {
  26. background-color: #282c34;
  27. font-family: "Roboto", "Segoe UI", "Arial", sans-serif;
  28. font-size: 22px;
  29. color: white;
  30. line-height: var(--line-height);
  31. text-align: center;
  32. }
  33. main {
  34. display: inline-block;
  35. margin-top: 30px;
  36. }
  37. h2#error {
  38. color: orangered;
  39. margin-bottom: 25px;
  40. }