styles.css 583 B

123456789101112131415161718192021222324252627282930313233
  1. .search-icon {
  2. background-image: var(--ifm-navbar-search-input-icon);
  3. height: auto;
  4. width: 24px;
  5. cursor: pointer;
  6. padding: 8px;
  7. line-height: 32px;
  8. background-repeat: no-repeat;
  9. background-position: center;
  10. display: none;
  11. }
  12. .search-icon-hidden {
  13. visibility: hidden;
  14. }
  15. @media (max-width: 360px) {
  16. .search-bar {
  17. width: 0 !important;
  18. background: none !important;
  19. padding: 0 !important;
  20. transition: none !important;
  21. }
  22. .search-bar-expanded {
  23. width: 9rem !important;
  24. }
  25. .search-icon {
  26. display: inline;
  27. vertical-align: sub;
  28. }
  29. }