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.

29 lines
546 B

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