_filters.scss 940 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. .filters {
  2. margin: 0;
  3. display: flex;
  4. flex-wrap: wrap;
  5. font-family: Roboto;
  6. font-size: 0.83em;
  7. font-weight: bold;
  8. padding: 0 6pt 6pt !important;
  9. li {
  10. border-radius: 20pt;
  11. display: flex;
  12. padding: 0pt 0 0pt 8pt;
  13. margin: 3pt;
  14. align-items: center;
  15. background: #009ee0;
  16. color: rgba(255, 255, 255, 0.8);
  17. label {
  18. cursor: pointer;
  19. strong {
  20. color: rgba(255, 255, 255, 1);
  21. }
  22. }
  23. &.not {
  24. background: #dc0067;
  25. }
  26. button {
  27. box-shadow: none;
  28. margin: 2pt;
  29. padding: 0;
  30. width: 18pt;
  31. height: 18pt;
  32. background: rgba(255, 255, 255, 0.0);
  33. font-size: 12pt;
  34. vertical-align: middle;
  35. color: rgba(255, 255, 255, 0.8);
  36. &:hover {
  37. box-shadow: none !important;
  38. color: #dc0067;
  39. background: rgba(255, 255, 255, 0.9);
  40. }
  41. &:active {
  42. box-shadow: none;
  43. }
  44. }
  45. }
  46. }