Advertisement
Guest User

Untitled

a guest
Aug 21st, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.60 KB | None | 0 0
  1. @import "./dots.scss";
  2.  
  3. #formPersData{
  4. // new stuff for google autocompletion
  5. .w-75 {
  6. position: relative;
  7. }
  8.  
  9. .dropDownGoogleAutoComplete {
  10. position: absolute;
  11. width: 100%;
  12. max-height: 400px;
  13. margin-bottom: 23px;
  14. background: $white;
  15. border-radius: 3px;
  16. border-top-left-radius: 0px;
  17. border-top-right-radius: 0px;
  18. border: solid 1px #e9e9e9;
  19. box-shadow: $box-shadow;
  20. z-index: 1;
  21. left: 0px;
  22. transition: all .25s;
  23. display: none;
  24. opacity: 0;
  25. z-index: 800;
  26.  
  27. &.start {
  28. display: block;
  29. }
  30.  
  31. &.enter {
  32. opacity: 1;
  33. }
  34.  
  35. &.exit {
  36. opacity: 0;
  37. }
  38.  
  39. .inner {
  40. position: relative;
  41. }
  42.  
  43. .loader {
  44. position: absolute;
  45. top: 18px;
  46. right: 25px;
  47. transition: all .25s;
  48. transform: translate3d(0, 10px, 0);
  49. opacity: 0;
  50.  
  51. &.enter {
  52. opacity: 1;
  53. transform: translate3d(0, 0, 0);
  54. }
  55.  
  56. &.exit {
  57. opacity: 0;
  58. transform: translate3d(0, 10px, 0);
  59. }
  60. }
  61.  
  62.  
  63. li {
  64. height: 40px;
  65. border-bottom: solid 1px #e9e9e9;
  66. padding-top: 11px;
  67. padding-left: 11px;
  68. font-size: 14px;
  69.  
  70. &:hover{
  71. background: #ebebeb;
  72. cursor: pointer;
  73. }
  74. &:active{
  75. background: $grey-20;
  76. color: $white;
  77. }
  78.  
  79. &.entry {
  80. transition: all .25s;
  81. opacity: 0;
  82. transform: translate3d(-10px, 0, 0);
  83.  
  84. &.disabled {
  85. cursor: auto;
  86.  
  87. &:hover {
  88. background: transparent;
  89. cursor: auto;
  90. }
  91.  
  92. &:active {
  93. background: transparent;
  94. color: $grey-20;
  95. }
  96. }
  97.  
  98. &.focus {
  99. box-shadow: 0 0 3px 1px rgb(94, 158, 214);
  100. }
  101.  
  102. &.enter {
  103. opacity: 1;
  104. transform: translate3d(0, 0, 0);
  105. }
  106.  
  107. &.exit {
  108. opacity: 0;
  109. transform: translate3d(-10px, 0, 0);
  110. }
  111. }
  112.  
  113. .placeholder {
  114. color: $grey-20;
  115. font-size: 14px;
  116. }
  117. }
  118.  
  119. .powered-by-google{
  120. text-align: center;
  121. padding-top: 10px;
  122. padding-bottom: 10px;
  123. img {
  124. height: 15px;
  125. }
  126. }
  127.  
  128. }
  129. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement