Advertisement
Guest User

Untitled

a guest
Aug 3rd, 2015
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. .basic-filters {
  2. list-style: none;
  3. padding:0;
  4. margin: 5px 0 0 0;
  5.  
  6. .basic-filter-section {
  7. display: block;
  8. color: palette(blue, base);
  9. margin-bottom: $margin-xs;
  10. margin-top: $margin-l;
  11. @include type-style($font-sans, 12);
  12. font-weight: bold;
  13.  
  14. @include respond-to(650) {
  15. display:none;
  16. }
  17. }
  18.  
  19. .filter-item {
  20. background-color: palette(grey, light);
  21. display: inline-block;
  22. padding: 10px 25px 10px 25px;
  23. @include type-style($font-sans, 10);
  24. color: palette(grey, dark);
  25. cursor: pointer;
  26. }
  27.  
  28. .filter-item:hover {
  29. background-color: palette(blue, base);
  30. color: palette(white);
  31. }
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement