Guest User

Untitled

a guest
Oct 23rd, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.53 KB | None | 0 0
  1. .contact-us {
  2. color: theme-color("primary");
  3. background: $desert-storm;
  4. width: 100%;
  5.  
  6. .see-more:after,
  7. .see-more:before {
  8. display: none;
  9. }
  10. }
  11.  
  12. .contact-us__inner {
  13. @include make-container();
  14. @include make-container-max-widths();
  15. padding: 0;
  16. }
  17.  
  18. .contact-us__header {
  19. display: flex;
  20. justify-content: center;
  21. background: no-repeat center center;
  22. background-size: cover;
  23. min-height: rem-calc(456px);
  24. color: $white;
  25.  
  26. h1 {
  27. font-size: rem-calc(115px);
  28. font-weight: 300;
  29. letter-spacing: 2.88px;
  30. margin: auto;
  31. }
  32. }
  33.  
  34. .contact-us__content {
  35. padding: 0 rem-calc(80px);
  36. }
  37.  
  38. .contact-us__tabs {
  39. padding: rem-calc(45px) 0;
  40. display: flex;
  41. flex-direction: row;
  42. align-items: center;
  43.  
  44. span {
  45. color: #1d222c;
  46. font-size: rem-calc(10px);
  47. line-height: 14px;
  48. letter-spacing: 0.025em;
  49. }
  50. }
  51.  
  52. .contact-us__submit,
  53. .contact-us__tab {
  54. background-color: #1d222c;
  55. border: none;
  56. font-size: 12px;
  57. color: #fff;
  58. font-weight: 300;
  59. letter-spacing: 0.025em;
  60. padding: rem-calc(10px) rem-calc(30px);
  61. cursor: pointer;
  62. outline: none;
  63.  
  64. &:active,
  65. &:focus,
  66. &_active {
  67. background-color: #c8c8c8;
  68. outline: none;
  69. }
  70. }
  71.  
  72. .contact-us__inquiries-tab {
  73. margin-left: rem-calc(45px);
  74. }
  75.  
  76. .contact-us__contacts-tab {
  77. margin-left: rem-calc(10px);
  78. }
  79.  
  80. .contact-us__form {
  81. border-top: 1px solid #bfbebe;
  82. padding: rem-calc(50px) 0;
  83.  
  84. form {
  85. width: 100%;
  86. display: flex;
  87. }
  88.  
  89. &_left,
  90. &_right {
  91. width: 50%;
  92. }
  93.  
  94. &_left {
  95. margin: 0 rem-calc(40px) 0 rem-calc(60px);
  96. }
  97.  
  98. &_right {
  99. margin: 0 rem-calc(80px) 0 rem-calc(60px);
  100. }
  101.  
  102. label {
  103. font-size: 10px;
  104. font-weight: 400;
  105. color: #1d222c;
  106. }
  107.  
  108. textarea {
  109. background-color: #f6f6f5;
  110. border: 1px solid #bfbebe;
  111. min-height: rem-calc(175px);
  112. }
  113. }
  114.  
  115. .contact-us__submit {
  116. margin: rem-calc(35px) auto 0;
  117. display: block;
  118. }
  119.  
  120. /* Scion Hotels Contacts */
  121. .contact-us__contacts {
  122. border-top: 1px solid #bfbebe;
  123. color: #394956;
  124. padding: rem-calc(50px) 0 rem-calc(55px);
  125.  
  126. &__title {
  127. color: #394956;
  128. font-size: rem-calc(14px);
  129. font-weight: 500;
  130. }
  131.  
  132. &__separator {
  133. width: rem-calc(35px);
  134. height: rem-calc(1px);
  135. background-color: #1d222c;
  136. margin: rem-calc(35px) 0;
  137. border: 0;
  138. }
  139. }
  140.  
  141. .contact-us__countries {
  142. display: flex;
  143. flex-flow: row nowrap;
  144. align-items: flex-start;
  145. justify-content: space-between;
  146.  
  147. .contact-us__col {
  148. width: 20%;
  149. }
  150. .contact-us__col:last-child .contact-us__countries-title {
  151. margin: 0;
  152. }
  153. }
  154.  
  155. .contact-us__countries-title,
  156. .contact-us__country-name {
  157. color: #394956;
  158. font-weight: 500;
  159. text-transform: uppercase;
  160. }
  161.  
  162. .contact-us__countries-title {
  163. font-size: rem-calc(16px);
  164. letter-spacing: 0.0225em;
  165. }
  166.  
  167. .contact-us__country {
  168. &-name {
  169. font-size: rem-calc(14px);
  170. line-height: rem-calc(18px);
  171. letter-spacing: 0.025em;
  172. margin: rem-calc(30px) 0 0;
  173. }
  174.  
  175. &-phone {
  176. display: block;
  177. margin-bottom: rem-calc(30px);
  178. font-family: $font-family-serif;
  179. font-size: rem-calc(14px);
  180. font-weight: 400;
  181. letter-spacing: 0.0535em;
  182. line-height: rem-calc(18px);
  183. text-decoration: none;
  184. color: #394956;
  185. &:hover {
  186. text-decoration: underline;
  187. color: #394956;
  188. }
  189. }
  190. }
Add Comment
Please, Sign In to add comment