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.

40 lines
665 B

6 years ago
6 years ago
6 years ago
  1. body {
  2. margin: 0;
  3. padding: 0;
  4. font-family: Aneliza, sans-serif;
  5. font-display: swap;
  6. background-color: black;
  7. color: white;
  8. main {
  9. margin-left: 30ch; // See side-menu
  10. width: calc(100% - 30ch);
  11. margin-right: 0;
  12. }
  13. a {
  14. text-decoration: none;
  15. }
  16. }
  17. /*
  18. * Less glaring chrome/ium scrollbars.
  19. */
  20. ::-webkit-scrollbar {
  21. width: 2px;
  22. /* for vertical scrollbars */
  23. height: 2px;
  24. /* for horizontal scrollbars */
  25. }
  26. ::-webkit-scrollbar-button {
  27. background-color: #555;
  28. color: 000;
  29. display: none;
  30. }
  31. ::-webkit-scrollbar-track {
  32. background-color: #222;
  33. }
  34. ::-webkit-scrollbar-thumb {
  35. background-color: #555;
  36. color: #000;
  37. }