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.

31 lines
466 B

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. display: inline-block;
  10. font-size: 2em;
  11. padding: 0.5em 0 0 0;
  12. margin: 0;
  13. }
  14. .options {
  15. display: inline-block;
  16. vertical-align: middle;
  17. a {
  18. display: inline-block;
  19. padding: 0.25em;
  20. margin: 0 0.25ch;
  21. opacity: 0.666;
  22. }
  23. a:hover {
  24. opacity: 1;
  25. color: white;
  26. }
  27. }
  28. }