The frontend/UI server, written in JS using the MarkoJS library
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.

53 lines
881 B

6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
  1. body {
  2. margin: 0;
  3. padding: 0;
  4. font-family: "Noto Sans", "Helvetica", sans-serif;
  5. background-color: black;
  6. color: white;
  7. main {
  8. margin-left: 30ch; // See side-menu
  9. width: calc(100% - 32ch);
  10. margin-right: 0;
  11. }
  12. @media screen and (min-width: 700px) {
  13. main.with-right {
  14. width: calc(100% - 60ch)
  15. }
  16. }
  17. a {
  18. text-decoration: none;
  19. }
  20. }
  21. @media screen and (max-width: 700px) {
  22. body {
  23. main {
  24. margin-left: 0.25ch;
  25. width: 100%;
  26. }
  27. }
  28. }
  29. /*
  30. * Less glaring chrome/ium scrollbars.
  31. */
  32. ::-webkit-scrollbar {
  33. width: 2px;
  34. /* for vertical scrollbars */
  35. height: 2px;
  36. /* for horizontal scrollbars */
  37. }
  38. ::-webkit-scrollbar-button {
  39. background-color: #555;
  40. color: 000;
  41. display: none;
  42. }
  43. ::-webkit-scrollbar-track {
  44. background-color: #222;
  45. }
  46. ::-webkit-scrollbar-thumb {
  47. background-color: #555;
  48. color: #000;
  49. }