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.

28 lines
526 B

  1. div.toggle {
  2. div.toggle-pill {
  3. display: inline-block;
  4. margin: 0 0.5em;
  5. a.toggle-option {
  6. padding: 0.125em 0.5ch;
  7. display: inline-block;
  8. width: 8ch;
  9. text-align: center;
  10. outline: 0.5px dotted;
  11. cursor: pointer;
  12. opacity: 0.75;
  13. }
  14. a.toggle-option.color-highlight-primary {
  15. outline: 1px solid;
  16. }
  17. a.toggle-option:hover {
  18. opacity: 1;
  19. }
  20. }
  21. div.toggle-content {
  22. display: inline-block;
  23. }
  24. }
  25. div.toggle:first-of-type {
  26. margin-top: 0.5ch;
  27. }