Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. .response-autocomplete {
  2. position: absolute;
  3. left: 0;
  4. top: 100%;
  5. background-color: #fff;
  6. z-index: 2;
  7. padding: rem-calc(10) 0;
  8. transform-origin: top;
  9. transition: .3s ease-in-out;
  10. border-top: 1px solid #f9f9f9;
  11. box-shadow: 0 14px 40px -14px rgba(0, 0, 0, 0.5);
  12. min-width: 300px;
  13. @include breakpoint(phone down) {
  14. min-width: 100%;
  15. }
  16. &.hidden {
  17. transform: scaleY(0);
  18. opacity: 0;
  19. box-shadow: none;
  20. }
  21. &__item {
  22. &__link {
  23. transition: .3s ease-in-out;
  24. @include font(13, 15, 0);
  25. display: block;
  26. padding: rem-calc(5) rem-calc(15);
  27. cursor: pointer;
  28. @include on-event() {
  29. background-color: $theme;
  30. color: #fff;
  31. }
  32. @include breakpoint(small down) {
  33. @include font(12, 15, 0);
  34. }
  35. &.category {
  36. padding-left: rem-calc(40);
  37. }
  38. }
  39. }
  40. }
  41.  
  42. .autocomplete--helper {
  43. position: relative;
  44. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement