Guest User

Untitled

a guest
Oct 10th, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.01 KB | None | 0 0
  1.  
  2. /* Booking Widget
  3. ------------------------------------- */
  4. .booking-widget { z-index: 100; }
  5.  
  6. .booking-widget .panel-dropdown .panel-dropdown-content {
  7. border: none;
  8. overflow: visible;
  9. padding: 20px;
  10. box-shadow: 0 1px 6px 0px rgba(0, 0, 0, 0.1);
  11. }
  12.  
  13. .booking-widget .panel-dropdown { width: 100%; }
  14.  
  15. .booking-widget .panel-dropdown .panel-dropdown-content:before {
  16. content: "";
  17. height: 10px;
  18. position: absolute;
  19. width: 100%;
  20. top: -3px;
  21. background-color: #fff;
  22. left: 0;
  23. opacity: 0;
  24. visibility: hidden;
  25. transition: all 0.3s;
  26. border-bottom: 1px solid #eee;
  27. }
  28.  
  29. .booking-widget .panel-dropdown.active .panel-dropdown-content:before {
  30. opacity: 1;
  31. visibility: visible;
  32. }
  33.  
  34. .booking-widget .panel-dropdown a {
  35. border: none;
  36. cursor: pointer;
  37. border-radius: 5px;
  38. box-shadow: 0 1px 6px 0px rgba(0, 0, 0, 0.1);
  39. font-size: 16px;
  40. font-weight: 600;
  41. height: auto;
  42. padding: 10px 16px;
  43. line-height: 30px;
  44. margin: 0 0 15px 0;
  45. position: relative;
  46. background-color: #fff;
  47. text-align: left;
  48. color: #888;
  49. display: block;
  50. width: 100%;
  51.  
  52. transition: color 0.3s;
  53. }
  54.  
  55. .booking-widget .panel-dropdown a:hover {
  56. color: #444;
  57. }
  58.  
  59. .booking-widget .panel-dropdown a:after {
  60. font-size: 20px;
  61. color: #c0c0c0;
  62. margin-left: 0;
  63. position: absolute;
  64. right: 20px;
  65. }
  66.  
  67.  
  68. /* Quantity Buttons for Booking Widget*/
  69. .qtyButtons {
  70. display: flex;
  71. margin: 0 0 13px 0;
  72. }
  73.  
  74. @media (min-width: 992px) and (max-width: 1366px) {
  75. .qtyButtons {
  76. display: block;
  77. }
  78. }
  79.  
  80. .panel-dropdown-content .qtyButtons:first-child { margin-top: 8px; }
  81. .panel-dropdown-content .qtyButtons:last-child { margin-bottom: 3px; }
  82.  
  83. .qtyButtons input {
  84. font-family: "Open Sans", sans-serif;
  85. outline: 0;
  86. font-size: 20px;
  87. text-align: center;
  88. width: 50px;
  89. height: 36px;
  90. color: #333;
  91. line-height: 36px;
  92. margin: 0 !important;
  93. padding: 0 5px;
  94. border: none;
  95. box-shadow: none;
  96. pointer-events: none;
  97. display: inline-block;
  98. }
  99.  
  100. .qtyTitle {
  101. font-size: 16px;
  102. font-weight: 600;
  103. line-height: 36px;
  104. padding-right: 15px;
  105. display: block;
  106. flex: 1;
  107. }
  108.  
  109. .qtyInc,
  110. .qtyDec {
  111. width: 36px;
  112. height: 36px;
  113. line-height: 36px;
  114. font-size: 14px;
  115. background-color: #f2f2f2;
  116. -webkit-text-stroke: 1px #f2f2f2;
  117. color: #333;
  118. display: inline-block;
  119. text-align: center;
  120. border-radius: 50%;
  121. cursor: pointer;
  122. font-family: "FontAwesome";
  123. }
  124.  
  125. .qtyInc:before { content: "\f067"; }
  126. .qtyDec:before { content: "\f068"; }
  127.  
  128. .qtyTotal {
  129. background-color: #66676b;
  130. border-radius: 50%;
  131. color: #fff;
  132. display: inline-block;
  133. font-size: 11px;
  134. font-weight: 600;
  135. font-family: "Open Sans", sans-serif;
  136. line-height: 18px;
  137. text-align: center;
  138. position: relative;
  139. top: -2px;
  140. left: 2px;
  141. height: 18px;
  142. width: 18px;
  143. }
  144.  
  145. .rotate-x {
  146. animation-duration: .5s;
  147. animation-name: rotate-x;
  148. }
  149.  
  150. @keyframes rotate-x {
  151. from {
  152. transform: rotateY(0deg);
  153. }
  154. to {
  155. transform: rotateY(360deg);
  156. }
  157. }
Advertisement
Add Comment
Please, Sign In to add comment