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.

38 lines
567 B

6 years ago
6 years ago
6 years ago
6 years ago
  1. .menu {
  2. position: fixed;
  3. top: 6.5em;
  4. bottom: 0;
  5. width: 28ch;
  6. padding: 0.333em;
  7. padding-bottom: 1em;
  8. text-align: left;
  9. user-select: none;
  10. overflow-x: hidden;
  11. overflow-y: auto;
  12. .showhide {
  13. display: none;
  14. }
  15. }
  16. @media screen and (max-width: 700px) {
  17. .menu.disabled {
  18. .menu-link, .menu-header, .menu-blurb, .menu-gap {
  19. display: none;
  20. }
  21. }
  22. .showhide {
  23. display: block !important;
  24. }
  25. .menu {
  26. position: static;
  27. width: 100%;
  28. box-sizing: border-box;
  29. margin-left: -0.25ch;
  30. font-size: 1.25em;
  31. }
  32. }