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.

48 lines
777 B

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. a {
  13. text-decoration: none;
  14. }
  15. }
  16. @media screen and (max-width: 700px) {
  17. body {
  18. main {
  19. margin-left: 0.25ch;
  20. width: 100%;
  21. }
  22. }
  23. }
  24. /*
  25. * Less glaring chrome/ium scrollbars.
  26. */
  27. ::-webkit-scrollbar {
  28. width: 2px;
  29. /* for vertical scrollbars */
  30. height: 2px;
  31. /* for horizontal scrollbars */
  32. }
  33. ::-webkit-scrollbar-button {
  34. background-color: #555;
  35. color: 000;
  36. display: none;
  37. }
  38. ::-webkit-scrollbar-track {
  39. background-color: #222;
  40. }
  41. ::-webkit-scrollbar-thumb {
  42. background-color: #555;
  43. color: #000;
  44. }