style.scss 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413
  1. * {
  2. font-family: 微軟正黑體;
  3. }
  4. $Font-color: #fff;
  5. $title-color: #4b515e;
  6. $toggle: #9c857b;
  7. $process: #6f645a;
  8. @font-face {
  9. font-family: 追奇手寫體;
  10. src: url(./drechifont-proportional.ttf);
  11. font-weight: 900;
  12. }
  13. $destop: 1025px;
  14. body {
  15. .btn {
  16. width: 96vw;
  17. margin: 0 auto;
  18. .btn-main {
  19. box-shadow: 0 10px 9px rgba(0, 0, 0, 0.5);
  20. border: none;
  21. padding: 15px;
  22. background: rgb(64, 72, 84);
  23. color: $Font-color;
  24. font-size: 16px;
  25. font-weight: 600;
  26. width: 280px;
  27. border-radius: 30px;
  28. transition: 0.3s;
  29. &:hover {
  30. background-color: $toggle;
  31. width: 285px;
  32. font-size: 17px;
  33. }
  34. }
  35. }
  36. .title {
  37. font-weight: bolder;
  38. font-family: "Times New Roman", Times, serif;
  39. padding: 15px;
  40. font-size: 45px;
  41. color: $title-color;
  42. padding-left: 10vw;
  43. }
  44. .arrow {
  45. position: fixed;
  46. right: 30px;
  47. bottom: 30px;
  48. width: 30px;
  49. z-index: 10;
  50. }
  51. }
  52. .banner {
  53. width: 100vw;
  54. position: relative;
  55. #text {
  56. text-align: center;
  57. .banner-slider {
  58. margin: 0 !important;
  59. padding: 0 !important;
  60. .banner1,
  61. .banner2,
  62. .banner3 {
  63. height: 100vh;
  64. background-size: cover;
  65. background-repeat: no-repeat;
  66. background-position: center;
  67. padding-right: 0 !important;
  68. .process-box {
  69. padding-top: 20vw;
  70. display: grid;
  71. grid-template-columns: repeat(4, 1fr);
  72. width: 55vw;
  73. margin: auto;
  74. .box-text {
  75. font-family: 微軟正黑體;
  76. text-align: center;
  77. font-size: 18px;
  78. font-weight: 900;
  79. padding-right: 3vw;
  80. color: $Font-color;
  81. }
  82. img {
  83. width: 180px;
  84. height: 180px;
  85. }
  86. }
  87. }
  88. .banner1 {
  89. background-image: url(./img/banner/001.webp) ;
  90. }
  91. .banner2 {
  92. background-image: url(./img/banner/002.webp);
  93. }
  94. .banner3 {
  95. background-image: url(./img/banner/003.webp);
  96. }
  97. }
  98. h1 {
  99. padding: 15px;
  100. color: $Font-color;
  101. font-family: 追奇手寫體;
  102. font-size: 72px;
  103. }
  104. .btn-main {
  105. box-shadow: 0 10px 9px rgba(0, 0, 0, 0.5);
  106. border: none;
  107. padding: 15px;
  108. background: rgb(64, 72, 84);
  109. color: $Font-color;
  110. font-size: 16px;
  111. font-weight: 600;
  112. width: 280px;
  113. border-radius: 30px;
  114. transition: 0.3s;
  115. &:hover {
  116. background-color: #9c857b;
  117. width: 285px;
  118. font-size: 17px;
  119. }
  120. }
  121. }
  122. .Navigation {
  123. width: 90vw;
  124. position: absolute;
  125. margin: 0 auto;
  126. top: 5px;
  127. z-index: 5;
  128. display: grid;
  129. grid-template-columns: 2fr 4fr;
  130. .logo {
  131. padding-top: 1.5vw;
  132. padding-left: 12vw;
  133. img {
  134. width: 120px;
  135. }
  136. }
  137. .link {
  138. text-align: right;
  139. padding: 30px;
  140. img{
  141. width: 1.5vw;
  142. filter: invert(100%) sepia(0%) saturate(10%) hue-rotate(238deg) brightness(104%) contrast(103%);
  143. transition: 0.3s;
  144. &:hover{
  145. filter:none;
  146. }
  147. }
  148. a {
  149. display: inline-block;
  150. text-decoration: none;
  151. color: $Font-color;
  152. // padding-right: 35px;
  153. letter-spacing: 1px;
  154. font-size: 0.9rem;
  155. font-weight: 600;
  156. cursor: pointer;
  157. padding: 15px;
  158. position: relative;
  159. }
  160. }
  161. }
  162. hr {
  163. width: 85vw;
  164. position: absolute;
  165. top: 80px;
  166. left: 100px;
  167. height: 1px;
  168. z-index: 5;
  169. }
  170. }
  171. #contact-us {
  172. margin: 0 auto;
  173. width: 100vw;
  174. background: #eee;
  175. position: relative;
  176. .contact-text {
  177. margin: 0 auto;
  178. width: 68vw;
  179. .text-p {
  180. font-size: 16px;
  181. font-weight: 600;
  182. }
  183. }
  184. .form-title {
  185. width: 70vw;
  186. margin: 0 auto;
  187. padding-top: 100px;
  188. margin-bottom: 120px;
  189. color: #5c5248;
  190. h1 {
  191. text-align: center;
  192. font-size: 32px;
  193. font-weight: 900;
  194. }
  195. }
  196. #contact-form {
  197. width: 75vw;
  198. display: grid;
  199. grid-template-columns: repeat(2, 1fr);
  200. margin-top: 10px;
  201. margin: 0 auto;
  202. position: relative;
  203. hr {
  204. position: absolute;
  205. width: 34vw;
  206. transform: rotate(90deg);
  207. left: 20vw;
  208. top: 19vw;
  209. }
  210. #location,
  211. #type,
  212. #modal,
  213. #budget,
  214. #square,
  215. #style,
  216. #date,
  217. #email,
  218. #name,
  219. #phone,
  220. #gender {
  221. width: 100%;
  222. height: 50px;
  223. margin: 10px 0;
  224. padding-left: 10px;
  225. border: 1px solid rgba(0, 0, 0, 0.3);
  226. padding: 10px 15px;
  227. font-size: 16px;
  228. border-radius: 3px;
  229. appearance: none;
  230. background: url(./img/icondown.webp) 95% 50% no-repeat scroll transparent;
  231. background-size: 10px 10px;
  232. background-color: #fff;
  233. }
  234. #form-left {
  235. width: 28vw;
  236. margin-left: 3vw;
  237. #rooms,
  238. #livingroom,
  239. #bathroom {
  240. width: 28.5%;
  241. border: 1px solid rgba(0, 0, 0, 0.3);
  242. height: 50px;
  243. margin: 15px 0;
  244. padding-right: 50px;
  245. padding: 10px 15px;
  246. font-size: 16px;
  247. border-radius: 3px;
  248. appearance: none;
  249. background: url(./img/icondown.webp) 85% 50% no-repeat scroll transparent;
  250. background-size: 10px 10px;
  251. background-color: #fff;
  252. }
  253. #square,
  254. #date {
  255. background: none;
  256. background-color: #fff;
  257. }
  258. }
  259. #form-right {
  260. width: 29vw;
  261. margin-left: 5vw;
  262. #facebook {
  263. margin-top: 12px;
  264. width: 29vw;
  265. height: 50px;
  266. border: 1px solid #3b5998;
  267. text-align: right;
  268. padding-right: 50px;
  269. line-height: 50px;
  270. // background: url(./img/facebook.png) 10% 50% no-repeat scroll transparent;
  271. // background-size: 32px 32px;
  272. background-color: #fff;
  273. transition: 0.3s;
  274. position: relative;
  275. img {
  276. position: absolute;
  277. left: 50px;
  278. top: 7px;
  279. width: 32px;
  280. height: 32px;
  281. }
  282. &:hover {
  283. background-color: #2a4f91;
  284. color: #fff;
  285. img {
  286. filter: invert(100%) sepia(100%) saturate(19%) hue-rotate(334deg) brightness(106%)
  287. contrast(106%);
  288. }
  289. }
  290. }
  291. a {
  292. text-decoration: none;
  293. color: #ee751b;
  294. font-weight: 900;
  295. }
  296. #checkbox {
  297. margin: 15px;
  298. }
  299. #email,
  300. #name,
  301. #phone {
  302. background: none;
  303. background-color: #fff;
  304. }
  305. }
  306. }
  307. .btn {
  308. margin: 50px auto;
  309. border: none;
  310. padding: 15px;
  311. background: #edbc96;
  312. color: #4b515e;
  313. font-size: 20px;
  314. width: 450px;
  315. border-radius: 10px;
  316. &:hover {
  317. color: #fff;
  318. background-color: #745c54;
  319. }
  320. }
  321. .form-btn {
  322. text-align: center;
  323. position: relative;
  324. width: 75vw;
  325. margin: 0 auto;
  326. #phone {
  327. position: absolute;
  328. left: 500px;
  329. }
  330. }
  331. }
  332. #feedback {
  333. width: 100vw;
  334. padding-bottom: 200px;
  335. h1 {
  336. margin-top: 50px;
  337. margin-bottom: 50px;
  338. }
  339. #feedback-box {
  340. width: 80vw;
  341. margin: 0 auto;
  342. display: grid;
  343. grid-template-columns: repeat(3, 1fr);
  344. .box {
  345. width: 25vw;
  346. transition: 0.5s;
  347. text-align: center;
  348. padding-bottom: 1vw;
  349. position: relative;
  350. .play {
  351. position: absolute;
  352. left: 12vw !important;
  353. top: 5vw !important;
  354. width: 3vw;
  355. height: 3vw;
  356. opacity: 0.8;
  357. z-index: 10;
  358. }
  359. img {
  360. width: 25vw;
  361. margin: 0 auto;
  362. object-fit: cover;
  363. transition: 0.5s;
  364. // &:hover {
  365. // width: 400px;
  366. // height: 200px;
  367. // }
  368. }
  369. p {
  370. text-align: center;
  371. font-size: 18px;
  372. font-weight: 600;
  373. margin: 10px;
  374. }
  375. }
  376. }
  377. }
  378. #footer {
  379. width: 100vw;
  380. background-color: #ebe6e2;
  381. color: #9f5000;
  382. text-align: center;
  383. font-size: 18px;
  384. line-height: 130px;
  385. a {
  386. text-decoration: none;
  387. color: #9f5000;
  388. }
  389. p {
  390. display: inline;
  391. }
  392. }