_filters.scss 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. }
  20. strong {
  21. color: rgba(255, 255, 255, 1);
  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: 1.41em;
  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. input {
  47. background: transparent;
  48. border-bottom: 2pt solid rgba(255, 255, 255, 0.5);
  49. padding: 2pt 0;
  50. outline: 0;
  51. color: #fff;
  52. font-weight: bold;
  53. font-size: 1em;
  54. border: none;
  55. &:focus {
  56. background: rgba(255, 255, 255, 0.15);
  57. }
  58. }
  59. strong.input {
  60. cursor: text;
  61. }
  62. }