Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2018
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.04 KB | None | 0 0
  1. <<<<<<< HEAD
  2.  
  3. .flip--back.animated {
  4. animation: flip-back 1000ms ease-in-out 1000ms;
  5. }
  6. .flip--back {
  7. line-height: 0;
  8. transform-origin: top;
  9. transform: rotateX(180deg);
  10. margin-top: 14px;
  11. border-radius:0;
  12. }
  13.  
  14. .flip--bottom {
  15. height: 50%;
  16. margin-top: 15px;
  17. border-radius: 0;
  18. border-top: none;
  19. line-height: 0;
  20. z-index: 1
  21. }
  22.  
  23.  
  24. @-webkit-keyframes flip {
  25. to {
  26. transform: rotateX(180deg);
  27. }
  28. }
  29.  
  30. @-webkit-keyframes flip-back {
  31. to {
  32. transform: rotateX(0deg);
  33. }
  34. }
  35.  
  36. .category-sleep {
  37. background: #61b5c1;
  38. }
  39. .category-food {
  40. background: #64fa3a;
  41. }
  42. .category-activity {
  43. background: #f05158;
  44. }
  45.  
  46. .venue-icon-modal {
  47. position: absolute;
  48. font-size: 40px;
  49. color: #414042;
  50. top: 7px;
  51. }
  52.  
  53.  
  54. .wg-location-header {
  55. text-align: center;
  56. padding: 20px 20px 0;
  57. }
  58. .wg-pin {
  59. width: 64px;
  60. height: 64px;
  61. padding: 8px;
  62. background: #272c42;
  63. border-radius: 50%;
  64. margin: 0 auto;
  65. }
  66. .wg-pin img {
  67. width: 50px;
  68. height: auto;
  69. }
  70.  
  71. .share-location-text {
  72. color: #000;
  73. font-size: 16px;
  74. padding: 20px;
  75. text-align: center;
  76. letter-spacing: 1px;
  77. }
  78. .share-location-buttons {
  79. border-top: 1px solid #8eccda;
  80. text-align: center;
  81. }
  82. .share-location-buttons a {
  83. color: #272c42;
  84. width: 49%;
  85. padding: 10px;
  86. display: inline-block;
  87. margin: 10px 0;
  88. }
  89. .share-location-buttons a:last-child {
  90. border-left: 1px solid #8eccda;
  91. }
  92.  
  93.  
  94. .hotel-prices {
  95. background: #272c42;
  96. color: #fff;
  97. position: absolute;
  98. top: 0;
  99. left: 0;
  100. right: 0;
  101. bottom: 0;
  102. padding-top: 40px;
  103. font-size: 14px;
  104. }
  105. .info-prices {
  106. border-bottom: 1px solid #4a5373;
  107. width: 60%;
  108. margin: 20px auto 5px;
  109. }
  110. .hotel-arrival {
  111. float: left;
  112. text-align: right;
  113. width: 50%;
  114. padding-right: 40px;
  115. border-right: 1px solid #4a5373;
  116. padding-bottom: 10px;
  117. }
  118. .hotel-departure {
  119. float: left;
  120. text-align: left;
  121. width: 50%;
  122. padding-left: 40px;
  123. }
  124. .arrival-date, .departure-date {
  125. font-size: 14px;
  126. /* color: #000; */
  127. line-height: 12px;
  128. }
  129. .info-price {
  130. font-size: 30px;
  131. /* color: #272c42; */
  132. font-weight: 700;
  133. padding-top: 50px;
  134. }
  135. .wg-button {
  136. background: #fff;
  137. border: none;
  138. padding: 10px 20px;
  139. border-radius: 5px;
  140. margin-top: 40px;
  141. color: #272c42;
  142. }
  143. .wg-button:hover {
  144. background: #272c42;
  145. color: #fff;
  146. border: 1px solid #8e8e93;
  147. }
  148. .arrival-text, .departure-text {
  149. color: #8e8e93;
  150. }
  151. @media (max-width: 485px){
  152.  
  153. .wg-button {
  154. background: #fff;
  155. border: none;
  156. padding: 10px 20px;
  157. border-radius: 5px;
  158. margin-top: 10px;
  159. color: #272c42;
  160. }
  161. .info-price {
  162. padding-top: 0px;
  163. }
  164. .hotel-prices {
  165. padding-top: 20px;
  166. }
  167. /* .arrival-date, .departure-date {
  168. font-size: 20px;
  169. line-height: 36px;
  170. } */
  171. .info-prices {
  172. border-bottom: 1px solid #4a5373;
  173. width: 80%;
  174. margin: 20px auto 5px;
  175. }
  176. .wg-flights-wrapper.perfect-scrollbar {
  177. overflow-y: auto;
  178. }
  179. }
  180.  
  181. .map-filters-container {
  182. position: absolute;
  183. bottom: 54px;
  184. left: 0;
  185. right: 0;
  186. z-index: 1100;
  187. background: #272c42;
  188. padding-top: 20px;
  189. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement