search.css 577 B

1234567891011121314151617181920212223242526272829303132
  1. .search-module {
  2. position: relative;
  3. width: 100%;
  4. display: flex;
  5. align-items: center;
  6. justify-content: center;
  7. }
  8. .search-module > .search-icon {
  9. position: absolute;
  10. background: url(/img/search.svg);
  11. width: 25px;
  12. height: 25px;
  13. background-size: cover;
  14. opacity: 0.5;
  15. left: 2px;
  16. }
  17. .search-module > .search-input {
  18. width: 100%;
  19. font-family: 'Play', monospace, sans-serif;
  20. font-size: 16px;
  21. padding: 2px 5px 2px 25px;
  22. }
  23. .search-module > .search-input:focus {
  24. outline: none;
  25. outline-width: 0;
  26. box-shadow: none;
  27. -moz-box-shadow: none;
  28. -webkit-box-shadow: none;
  29. }