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.

43 lines
643 B

6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
  1. nav.layout-navbar {
  2. position: fixed;
  3. top: 0;
  4. bottom: 0;
  5. width: 30ch;
  6. text-align: center;
  7. user-select: none;
  8. h1 {
  9. font-weight: 100;
  10. display: inline-block;
  11. font-size: 2.25em;
  12. padding: 0.5em 0 0 0;
  13. margin: 0;
  14. }
  15. .options {
  16. display: inline-block;
  17. vertical-align: middle;
  18. a {
  19. display: inline-block;
  20. padding: 0.25em;
  21. margin: 0 0.25ch;
  22. opacity: 0.666;
  23. }
  24. a:hover {
  25. opacity: 1;
  26. color: white;
  27. }
  28. }
  29. }
  30. @media screen and (max-width: 700px) {
  31. nav.layout-navbar {
  32. position: static;
  33. margin-left: 0;
  34. width: 100%;
  35. font-size: 1.25em;
  36. }
  37. }