search.less 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. .search_categories, #categories {
  2. text-transform: capitalize;
  3. margin-bottom: 1.5rem;
  4. margin-top: 1.5rem;
  5. display: flex;
  6. flex-wrap: wrap;
  7. align-content: stretch;
  8. label, .input-group-addon {
  9. flex-grow: 1;
  10. flex-basis: auto;
  11. font-size: 1.3rem;
  12. font-weight: normal;
  13. background-color: white;
  14. border: #DDD 1px solid;
  15. border-right: none;
  16. color: #333;
  17. padding-bottom: 0.8rem;
  18. padding-top: 0.8rem;
  19. text-align: center;
  20. min-width: 50px;
  21. }
  22. label:last-child, .input-group-addon:last-child {
  23. border-right: #DDD 1px solid;
  24. }
  25. input[type="checkbox"]:checked + label{
  26. color: black;
  27. font-weight: bold;
  28. background-color: #EEE;
  29. }
  30. }
  31. .visually-hidden {
  32. position: absolute !important;
  33. height: 1px;
  34. width: 1px;
  35. overflow: hidden;
  36. clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  37. clip: rect(1px, 1px, 1px, 1px);
  38. white-space: nowrap; /* added line */
  39. }