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.

39 lines
660 B

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% - 30ch);
  10. margin-right: 0;
  11. }
  12. a {
  13. text-decoration: none;
  14. }
  15. }
  16. /*
  17. * Less glaring chrome/ium scrollbars.
  18. */
  19. ::-webkit-scrollbar {
  20. width: 2px;
  21. /* for vertical scrollbars */
  22. height: 2px;
  23. /* for horizontal scrollbars */
  24. }
  25. ::-webkit-scrollbar-button {
  26. background-color: #555;
  27. color: 000;
  28. display: none;
  29. }
  30. ::-webkit-scrollbar-track {
  31. background-color: #222;
  32. }
  33. ::-webkit-scrollbar-thumb {
  34. background-color: #555;
  35. color: #000;
  36. }