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.

23 lines
425 B

  1. div.right-menu.filter-menu {
  2. input {
  3. background: none;
  4. border: none;
  5. outline: none;
  6. width: 95%;
  7. margin-top: 1em;
  8. margin-left: 2.5%;
  9. border: 1px solid rgba(119, 119, 119, 0.25);
  10. font-size: 1.1em;
  11. box-sizing: border-box;
  12. color: #999;
  13. }
  14. input:focus {
  15. color: #FC1;
  16. }
  17. div.filter-section {
  18. max-height: calc(25vh - 3em);
  19. overflow-y: auto;
  20. overflow-x: hidden;
  21. }
  22. }