_site-blocks.scss 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500
  1. .untree_co_slider {
  2. .slick-slide {
  3. margin: 0 5px;
  4. width: 20px;
  5. transform: scale(0.9);
  6. transition: .3s all ease;
  7. opacity: .4;
  8. &:active, &:focus {
  9. outline: none;
  10. }
  11. > img {
  12. }
  13. &.slick-center {
  14. opacity: 1;
  15. transform: scale(1.0);
  16. > img {
  17. box-shadow: 0 15px 30px 0 rgba($black, .2);
  18. }
  19. }
  20. }
  21. .slick-list {
  22. margin: 0 -5px;
  23. padding-bottom: 50px!important;
  24. }
  25. .item {
  26. position: relative;
  27. &:before {
  28. content: "";
  29. position: absolute;
  30. bottom: 0;
  31. left: 0;
  32. right: 0;
  33. top: 0;
  34. background: rgb(0,0,0);
  35. background: linear-gradient(0deg, rgba(0,0,0,.5) 0%, rgba(0,0,0,0) 100%);
  36. }
  37. }
  38. }
  39. .untree_co_slider-wrap {
  40. position: relative;
  41. background: $light url('../images/subtle_zebra_3d.png') repeat top left;
  42. padding: 7rem 0;
  43. .nav-direction {
  44. position: absolute;
  45. z-index: 2;
  46. height: 50px;
  47. top: 50%;
  48. width: 100%;
  49. transform: translateY(-50%);
  50. margin-top: -25px;
  51. .nav-left,
  52. .nav-right {
  53. font-size: 30px;
  54. width: 50px;
  55. height: 50px;
  56. line-height: 50px;
  57. border-radius: 50%;
  58. text-align: center;
  59. position: absolute;
  60. background: $primary;
  61. color: $white;
  62. > span {
  63. position: absolute;
  64. top: 50%;
  65. left: 50%;
  66. transform: translate(-50%, -50%);
  67. }
  68. &.slick-disabled {
  69. display: none!important;
  70. }
  71. }
  72. .nav-left {
  73. left: 14%;
  74. @include media-breakpoint-down(md) {
  75. left: 0%;
  76. }
  77. }
  78. .nav-right {
  79. right: 14%;
  80. @include media-breakpoint-down(md) {
  81. right: 0%;
  82. }
  83. }
  84. }
  85. .property-contents {
  86. position: absolute;
  87. bottom: 20px;
  88. right: 20px;
  89. margin-top: 0px;
  90. width: 300px;
  91. padding: 30px;
  92. z-index: 9;
  93. @include media-breakpoint-down(md) {
  94. position: absolute;
  95. background: none;
  96. color: $white;
  97. bottom: 20px;
  98. right: 20px;
  99. padding: 0;
  100. width: auto;
  101. padding-left: 10px;
  102. }
  103. .current-price {
  104. display: block;
  105. font-size: 30px;
  106. color: $white!important;
  107. }
  108. .old-price {
  109. text-decoration: line-through;
  110. color: rgba($white, .5);
  111. display: block;
  112. margin-bottom: 10px;
  113. @include media-breakpoint-down(md) {
  114. color: $white;
  115. }
  116. }
  117. h2 {
  118. font-size: 15px;
  119. font-weight: 400;
  120. margin: 0;
  121. a {
  122. color: $white;
  123. @include media-breakpoint-down(md) {
  124. color: $white;
  125. }
  126. }
  127. }
  128. strong {
  129. color: $black;
  130. @include media-breakpoint-down(md) {
  131. color: $white!important;
  132. }
  133. }
  134. }
  135. .specs {
  136. li {
  137. padding-right: 20px;
  138. }
  139. .icon-wrap {
  140. font-size: 25px;
  141. margin-right: 10px;
  142. }
  143. }
  144. .property_details {
  145. position: absolute;
  146. bottom: 0;
  147. z-index: 9;
  148. left: 0;
  149. right: 0;
  150. color: $white;
  151. padding: 30px 30px 15px 30px;
  152. div {
  153. .caption {
  154. color: $white;
  155. font-size: 12px;
  156. }
  157. .number {
  158. font-size: 18px;
  159. }
  160. .icon {
  161. font-size: 20px;
  162. margin-right: 10px;
  163. span {
  164. font-size: 20px;
  165. }
  166. }
  167. }
  168. .detail {
  169. position: relative;
  170. &:after {
  171. content: "";
  172. position: absolute;
  173. height: 20px;
  174. right: 20%;
  175. background: rgba($white, .5);
  176. width: 1px;
  177. top: 50%;
  178. transform: translateY(-50%);
  179. }
  180. &:last-child {
  181. &:after {
  182. display: none;
  183. }
  184. }
  185. }
  186. }
  187. }
  188. .untree_co-section {
  189. padding: 70px 0;
  190. .heading {
  191. font-size: 20px;
  192. }
  193. .heading-2 {
  194. font-size: 30px;
  195. color: $primary;
  196. @include media-breakpoint-down(md) {
  197. font-size: 30px;
  198. }
  199. }
  200. }
  201. .service {
  202. text-align: center;
  203. .icon-wrap {
  204. position: relative;
  205. margin-bottom: 20px;
  206. display: inline-block;
  207. span {
  208. font-size: 50px;
  209. color: $secondary;
  210. }
  211. &:before {
  212. top: 0;
  213. left: -10px;
  214. width: 55px;
  215. height: 55px;
  216. position: absolute;
  217. content: "";
  218. background: rgba($secondary, .1);
  219. border-radius: 50%;
  220. }
  221. }
  222. h3 {
  223. font-size: 16px;
  224. a {
  225. color: $black;
  226. }
  227. }
  228. }
  229. .property-entry {
  230. margin-bottom: 30px;
  231. .price {
  232. font-size: 30px;
  233. display: block;
  234. color: $secondary;
  235. margin-bottom: 15px;
  236. }
  237. .specs {
  238. padding: 0;
  239. margin: 0 0 15px 0;
  240. li {
  241. display: inline-block;
  242. margin-right: 10px;
  243. .icon-wrap {
  244. font-size: 26px;
  245. margin-right: 5px;
  246. }
  247. }
  248. }
  249. .property-specs {
  250. position: relative;
  251. background: $white;
  252. padding: 30px;
  253. width: calc(100% - 0px);
  254. margin-left: 0px;
  255. margin-right: 0px;
  256. margin-top: -15px;
  257. // box-shadow: 0 15px 30px 0 rgba($black, .05);
  258. strong {
  259. color: $black;
  260. }
  261. }
  262. .location {
  263. h3 {
  264. font-size: 15px;
  265. a {
  266. color: $black;
  267. }
  268. }
  269. }
  270. .more {
  271. position: relative;
  272. > a {
  273. position: relative;
  274. display: inline-block;
  275. width: 45px;
  276. height: 40px;
  277. background: $secondary;
  278. border-radius: 4px;
  279. span {
  280. color: $white;
  281. font-size: 20px;
  282. display: inline-block;
  283. transform: translate(-50%, -50%) rotate(180deg);
  284. position: absolute;
  285. top: 50%;
  286. left: 50%;
  287. }
  288. }
  289. }
  290. }
  291. .list-icons {
  292. li {
  293. margin-bottom: 30px;
  294. a {
  295. > .icon-wrap {
  296. display: inline-block;
  297. width:60px;
  298. height: 60px;
  299. flex: 0 0 60px;
  300. border-radius: 50%;
  301. background: $white;
  302. position: relative;
  303. margin-right: 20px;
  304. box-shadow: 0 15px 30px 0 rgba($black, .05);
  305. > span {
  306. position: absolute;
  307. top: 50%;
  308. left: 50%;
  309. color: $primary;
  310. font-size: 30px;
  311. transform: translate(-50%, -50%)
  312. }
  313. }
  314. > .text {
  315. color: $black;
  316. font-size: 16px;
  317. line-height: 1.5;
  318. }
  319. }
  320. }
  321. }
  322. .margin-left-offset {
  323. margin-left: -70px;
  324. position: relative;
  325. @include media-breakpoint-down(md) {
  326. margin-left: 0px;
  327. }
  328. }
  329. .subtitle {
  330. font-weight: 700;
  331. color: $secondary;
  332. display: block;
  333. font-size: 16px;
  334. font-weight: 400;
  335. }
  336. .untree_co-testimonial {
  337. padding: 30px 30px 30px 30px;
  338. background: darken($light, 5%);
  339. border-radius: 4px;
  340. color: $black;
  341. position: relative;
  342. blockquote {
  343. font-size: 16px;
  344. margin-bottom: 30px;
  345. font-style: italic;
  346. }
  347. .author {
  348. .author-name {
  349. strong {
  350. color: $primary;
  351. }
  352. span {
  353. color: darken($light, 55%);
  354. }
  355. }
  356. .author-picture {
  357. flex: 0 0 50px;
  358. > img {
  359. width: 50px;
  360. border-radius: 50%;
  361. }
  362. }
  363. }
  364. }
  365. .owl-nav {
  366. display: none;
  367. }
  368. .owl-3-slider {
  369. .owl-carousel {
  370. .owl-stage-outer {
  371. padding-bottom: 40px;
  372. }
  373. }
  374. }
  375. .properties-nav-direction {
  376. > a {
  377. display: inline-block;
  378. width: 40px;
  379. height: 40px;
  380. border-radius: 4px;
  381. background: $secondary;
  382. color: $white;
  383. position: relative;
  384. > span {
  385. position: absolute;
  386. top: 50%;
  387. left: 50%;
  388. transform: translate(-50%, -50%);
  389. font-size: 20px;
  390. }
  391. &.next {
  392. position: relative;
  393. transform: rotate(-180deg);
  394. }
  395. &:hover {
  396. background: $primary;
  397. }
  398. }
  399. }
  400. .feature-v2 {
  401. padding: 40px;
  402. border: 1px solid darken($light, 5%);
  403. &:hover {
  404. border: 1px solid transparent;
  405. box-shadow: 0 15px 30px 0 rgba($black, .05);
  406. }
  407. .icon-wrap {
  408. width: 50px;
  409. height: 50px;
  410. position: relative;
  411. background: $primary;
  412. border-radius: 4px;
  413. flex: 0 0 50px;
  414. margin-right: 40px;
  415. > span {
  416. color: $white;
  417. position: absolute;
  418. top: 50%;
  419. left: 50%;
  420. transform: translate(-50%, -50%);
  421. font-size: 20px;
  422. }
  423. }
  424. .text {
  425. // padding: 0 50px;
  426. }
  427. .heading {
  428. font-size: 18px;
  429. color: $black;
  430. }
  431. p {
  432. color: #999;
  433. }
  434. }
  435. .untree_co-pagination {
  436. text-align: center;
  437. li {
  438. display: inline-block;
  439. a, span {
  440. width: 40px;
  441. height: 40px;
  442. line-height: 40px;
  443. display: inline-block;
  444. border-radius: 4px;
  445. font-size: 18px;
  446. }
  447. span {
  448. background: $primary;
  449. color: $white;
  450. box-shadow: 0 5px 10px 0 rgba($black, .2)
  451. }
  452. }
  453. }
  454. .team {
  455. img {
  456. margin-bottom: 10px;
  457. }
  458. h3 {
  459. font-size: 16px!important;
  460. margin-bottom: 0;
  461. }
  462. p {
  463. font-size: 14px;
  464. }
  465. }