main.scss 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032
  1. $main-family: 'Microsoft JhengHei', Helvetica, Noto Sans TC, Roboto, Arial, sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  2. $font-color: #707070;
  3. @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@700&display=swap');
  4. @font-face {
  5. font-family: drechifont;
  6. src: url(../drechifont-Proportional.woff);
  7. font-weight: 300;
  8. font-display: swap;
  9. }
  10. @font-face {
  11. font-family: 'Taipei Sans TC Beta';
  12. src: local('Taipei Sans TC Beta');
  13. font-weight: 300;
  14. }
  15. body {
  16. background-color: #F7F7F7;
  17. overflow-x: hidden !important;
  18. font-family: 'Taipei Sans TC Beta';
  19. }
  20. // <!--################# header #################-->
  21. .header {
  22. z-index: 5;
  23. height: 94vh;
  24. background-image: url('../images/hero.png');
  25. background-repeat: no-repeat;
  26. background-position: center;
  27. background-size: cover;
  28. border-bottom-right-radius: 18rem;
  29. border-bottom-left-radius: 18rem;
  30. position: relative;
  31. box-shadow: 0px 8px 25px 5px rgb(168, 168, 168);
  32. @media screen and(max-width: 576px) {
  33. border-bottom-right-radius: 4rem;
  34. border-bottom-left-radius: 4rem;
  35. height: 90vh;
  36. }
  37. &__logo {
  38. display: block;
  39. width: 120px;
  40. height: 35px;
  41. img {
  42. width: 100%;
  43. height: 100%;
  44. }
  45. }
  46. &__logo-box {
  47. padding: 1rem;
  48. margin: 0rem 4.5rem;
  49. @media screen and(max-width: 576px) {
  50. margin: 0rem .4rem;
  51. }
  52. }
  53. &__line {
  54. background-color: white;
  55. height: 2px;
  56. border-top: 1px solid #ffff;
  57. }
  58. &__text-box {
  59. position: absolute;
  60. width:40vw;
  61. text-align: center;
  62. left: 50%;
  63. top: 50%;
  64. transform: translate(-50%, -60%);
  65. &::after {
  66. position: absolute;
  67. left: 50%;
  68. top: 50%;
  69. transform: translate(-50%, -50%);
  70. width:125%;
  71. height: 125%;
  72. border-radius: 70%;
  73. content: ' ';
  74. background: #E5A982;
  75. opacity: .5;
  76. mix-blend-mode: darken;
  77. -webkit-filter:blur(80px);
  78. -moz-filter:blur(80px);
  79. -o-filter:blur(80px);
  80. -ms-filter:blur(80px);
  81. filter:blur(80px);
  82. z-index: -1;
  83. }
  84. @media screen and(max-width: 576px) {
  85. width: 98vw;
  86. }
  87. .title__img {
  88. width: 100%;
  89. @media screen and(max-width: 576px) {
  90. }
  91. }
  92. .pen__img {
  93. position: absolute;
  94. width: 110px;
  95. height: 109px;
  96. left: 90%;
  97. top: 44%;
  98. @media screen and(max-width: 576px) {
  99. width: 70px;
  100. height: 80px;
  101. left: 80%;
  102. top: 75%;
  103. transform: rotate(5deg);
  104. }
  105. }
  106. }
  107. &__polygon-box {
  108. position: absolute;
  109. bottom: 3%;
  110. left: 50%;
  111. display: flex;
  112. flex-direction: column;
  113. @media screen and(max-width: 576px) {
  114. transform: translateX(-50%);
  115. }
  116. img {
  117. margin-top: -6px;
  118. }
  119. }
  120. }
  121. .deco {
  122. &__path1 {
  123. z-index: -1;
  124. width: 100%;
  125. position: absolute;
  126. top: 60%;
  127. @media screen and(max-width: 576px) {
  128. top: 80%;
  129. }
  130. img {
  131. width: 100%;
  132. }
  133. }
  134. }
  135. .regulation {
  136. z-index: 5;
  137. padding: 10rem .5rem 9rem .5rem;
  138. padding-bottom: 7rem;
  139. position: relative;
  140. @media screen and(max-width: 576px) {
  141. padding: 6rem .5rem 7rem .5rem;
  142. padding-bottom: 7rem;
  143. }
  144. &__box {
  145. transform: translateX(35%);
  146. width: 52%;
  147. padding: 3rem;
  148. background-color: #F7F7F7;
  149. border-radius: 50px;
  150. padding-bottom: 6rem;
  151. padding-top: 4rem;
  152. color: $font-color;
  153. box-shadow: 1px 1px 10px 1px #cccccc, inset 0em 3px white;
  154. position: relative;
  155. @media screen and(max-width: 576px) {
  156. width: 95%;
  157. padding: 1.5rem;
  158. border-radius: 20px;
  159. transform: none;
  160. margin: 0 auto;
  161. }
  162. &::after {
  163. content: " ";
  164. position: absolute;
  165. bottom: 3rem;
  166. right: 3rem;
  167. width: 27%;
  168. height: 1px;
  169. background: $font-color;
  170. @media screen and(max-width: 576px) {
  171. bottom: 2rem;
  172. right: 1.5rem;
  173. }
  174. }
  175. &__title {
  176. font-weight: 600;
  177. margin-bottom: 1.5rem;
  178. font-size: 1.4rem;
  179. @media screen and(max-width: 576px) {
  180. font-size: 1.6rem;
  181. }
  182. }
  183. &__list {
  184. font-family: 'Taipei Sans TC Beta';
  185. margin-bottom: 1.5rem;
  186. font-size: 1rem;
  187. color: $font-color;
  188. line-height: 2rem;
  189. font-weight: 300;
  190. @media screen and(max-width: 576px) {
  191. font-size: 1.1rem;
  192. }
  193. }
  194. }
  195. &__imgbox {
  196. width: 43vw;
  197. height: 60%;
  198. background-image: url('../images/plant.jpg');
  199. background-repeat: no-repeat;
  200. background-position: center;
  201. background-size: cover;
  202. -webkit-filter:blur(3px);
  203. -moz-filter:blur(3px);
  204. -o-filter:blur(3px);
  205. -ms-filter:blur(3px);
  206. filter:blur(3px);
  207. opacity: 0.75;
  208. position: absolute;
  209. right: 0;
  210. bottom: 3rem;
  211. z-index: -1;
  212. border-radius: 3rem 0 0 2rem;
  213. @media screen and(max-width: 576px) {
  214. width: 70vw;
  215. }
  216. }
  217. &__square {
  218. position: absolute;
  219. bottom:2.4rem;
  220. left: 11%;
  221. }
  222. &__cricle {
  223. position: absolute;
  224. top: 12rem;
  225. right: 20%;
  226. }
  227. &__line {
  228. position: absolute;
  229. left: -4rem;
  230. opacity: 0.5;
  231. }
  232. }
  233. .designers {
  234. padding: 4rem 0;
  235. text-align: center;
  236. color: $font-color;
  237. font-family: 'TaipeiSansTCBeta';
  238. position: relative;
  239. @media screen and(max-width: 576px) {
  240. padding-top: 0rem;
  241. }
  242. .row {
  243. margin: 1px 0;
  244. }
  245. &__left {
  246. position: absolute;
  247. top: 75%;
  248. left: -1rem;
  249. z-index: -2;
  250. }
  251. &__cricle {
  252. position: absolute;
  253. bottom: -5rem;
  254. left: 10%;
  255. z-index: -1;
  256. }
  257. &__title {
  258. padding: .5rem 0 1rem 0;
  259. font-size: 1.8rem;
  260. font-weight: 700;
  261. margin-bottom: 2rem;
  262. display: block;
  263. position: relative;
  264. letter-spacing: 1px;
  265. @media screen and(max-width: 576px) {
  266. font-size: 2rem;
  267. padding-top: .5rem;
  268. margin-bottom: 1rem;
  269. }
  270. &::before, &::after {
  271. content: " ";
  272. position: absolute;
  273. width: 25%;
  274. height: 1px;
  275. background-color: #E0E0E0;
  276. top: 42%;
  277. @media screen and(max-width: 576px) {
  278. width: 18%;
  279. top: 40%;
  280. }
  281. }
  282. &::before {
  283. left: 18%;
  284. @media screen and(max-width: 576px) {
  285. left: 6%;
  286. }
  287. }
  288. &::after {
  289. right: 18%;
  290. @media screen and(max-width: 576px) {
  291. right: 6%;
  292. }
  293. }
  294. }
  295. &__small {
  296. font-family: 'Taipei Sans TC Beta';
  297. }
  298. &__card {
  299. height:14rem;
  300. padding: 0rem 0 1.5rem 0;
  301. color: $font-color;
  302. background-color: #F7F7F7;
  303. margin-right: 10px;
  304. margin-left: 10px;
  305. text-decoration: none;
  306. text-align: center;
  307. &:hover {
  308. color: $font-color;
  309. }
  310. @media screen and(max-width: 576px) {
  311. margin-right: 5px;
  312. margin-left: 5px;
  313. padding: 0rem 0 1.5rem 0;
  314. height: 16rem;
  315. }
  316. &__imgfr {
  317. display: inline-block;
  318. width: 100px;
  319. height: 100px;
  320. border-radius: 50%;
  321. overflow: hidden;
  322. box-shadow: 0px 3px 20px 6px rgba(214, 214, 214, 0.8);
  323. @media screen and(max-width: 576px) {
  324. width: 125px;
  325. height: 125px;
  326. }
  327. img {
  328. @media screen and(max-width: 576px) {
  329. width: 120px;
  330. }
  331. }
  332. }
  333. &__text {
  334. font-weight: 350;
  335. margin-top: .8rem;
  336. @media screen and(max-width: 576px) {
  337. margin-top: .8rem;
  338. padding-left: 5px;
  339. padding-right: 5px;
  340. }
  341. strong {
  342. font-weight: bold;
  343. font-size: 1rem;
  344. letter-spacing: 1px;
  345. margin-right: 5px;
  346. @media screen and(max-width: 576px) {
  347. font-size: 1.2rem;
  348. }
  349. }
  350. p {
  351. font-size: .8rem;
  352. &:nth-of-type(1) {
  353. padding-bottom: 3px;
  354. }
  355. &:nth-of-type(2) {
  356. padding-top: 3px;
  357. border-top: 1px solid grey;
  358. }
  359. small {
  360. font-size: .7rem;
  361. }
  362. @media screen and(max-width: 576px) {
  363. font-size: 1rem;
  364. }
  365. }
  366. }
  367. }
  368. .container-fluid {
  369. padding-left: 0;
  370. padding-right: 0;
  371. }
  372. }
  373. .personal {
  374. padding: 4rem 0;
  375. padding-top: 0;
  376. text-align: center;
  377. color: $font-color;
  378. position: relative;
  379. @media screen and(max-width: 576px) {
  380. padding-top: 0rem;
  381. padding-bottom: 2rem;
  382. }
  383. &__title {
  384. padding: .5rem 0 1rem 0;
  385. font-size: 1.8rem;
  386. font-weight: 700;
  387. margin-bottom: 2rem;
  388. display: block;
  389. position: relative;
  390. letter-spacing: 1px;
  391. @media screen and(max-width: 576px) {
  392. font-size: 2rem;
  393. padding-top: .5rem;
  394. }
  395. &::before, &::after {
  396. content: " ";
  397. position: absolute;
  398. width: 25%;
  399. height: 1px;
  400. background-color: #E0E0E0;
  401. top: 42%;
  402. @media screen and(max-width: 576px) {
  403. width: 18%;
  404. top: 40%;
  405. }
  406. }
  407. &::before {
  408. left: 18%;
  409. @media screen and(max-width: 576px) {
  410. left: 6%;
  411. }
  412. }
  413. &::after {
  414. right: 18%;
  415. @media screen and(max-width: 576px) {
  416. right: 6%;
  417. }
  418. }
  419. }
  420. &__small {
  421. font-weight: 300;
  422. }
  423. &__box {
  424. min-width: 350px;
  425. width: 60%;
  426. padding: 3rem;
  427. background-color: #F7F7F7;
  428. color: $font-color;
  429. box-shadow: 1px 1px 10px 1px #cccccc, inset 0em 3px white;
  430. border-radius: 3rem;
  431. height: fit-content;
  432. min-height: 630px;
  433. margin: 0 auto;
  434. @media screen and(max-width: 576px) {
  435. padding: .5rem;
  436. padding-top: 2rem;
  437. border-radius: 2rem;
  438. min-height: 750px;
  439. }
  440. }
  441. &__triangle {
  442. position: absolute;
  443. top: 1rem;
  444. right: 9%;
  445. transform: rotate(43deg);
  446. z-index: -1;
  447. }
  448. &__wave {
  449. position: absolute;
  450. bottom: 8rem;
  451. left: 13%;
  452. z-index: -1;
  453. }
  454. &__left {
  455. position: absolute;
  456. left: -1rem;
  457. top: -1.5rem;
  458. z-index: -1;
  459. }
  460. #msform select {
  461. -webkit-appearance: none;
  462. -moz-appearance: none;
  463. appearance: none;
  464. }
  465. }
  466. .modal{
  467. background-color: rgba(black, 0.7);
  468. &-body {
  469. color: $font-color;
  470. padding: 2rem;
  471. @media screen and(max-width: 576px) {
  472. padding: 1rem;
  473. }
  474. }
  475. &-title {
  476. text-align: center;
  477. font-size: 22px;
  478. display: block;
  479. width: 16rem;
  480. margin: 1rem auto;
  481. }
  482. &-dialog {
  483. max-width: 800px;
  484. border-radius: 3rem;
  485. margin-top: calc(50vh - 297px);
  486. @media screen and(max-width: 576px) {
  487. padding: 1rem;
  488. margin-top: 2rem;
  489. margin-left: 0;
  490. margin-right: 0;
  491. }
  492. }
  493. &-content {
  494. border-radius: 1.3rem;
  495. }
  496. &-closer {
  497. width: 30px;
  498. height: 30px;
  499. position: absolute;
  500. right: -2.1rem;
  501. top: -2.1rem;
  502. @media screen and(max-width: 576px) {
  503. right: -.75rem;
  504. top: -2.2rem;
  505. }
  506. }
  507. &-terms {
  508. font-size: 1rem;
  509. line-height: 2rem;
  510. }
  511. }
  512. .owl-carousel .owl-item img {
  513. display: inline-block;
  514. width: 100px;
  515. @media screen and(max-width: 576px) {
  516. width: 125px;
  517. }
  518. }
  519. .owl-carousel .owl-stage-outer {
  520. overflow: unset;
  521. }
  522. .owl-theme .owl-nav {
  523. margin-top: 0;
  524. text-align: unset;
  525. }
  526. .owl-theme .owl-nav .owl-prev .owl-prev-icon, .owl-theme .owl-nav .owl-next .owl-next-icon {
  527. background-color: transparent;
  528. margin: 0;
  529. padding: 0;
  530. }
  531. .owl-theme .owl-nav span i {
  532. font-size: 2rem;
  533. color: rgb(190, 190, 190);
  534. }
  535. .owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
  536. position: absolute;
  537. top: 50%;
  538. transform: translateY(-50%);
  539. &:hover {
  540. background-color: transparent;
  541. i {
  542. color: grey;
  543. }
  544. }
  545. }
  546. .owl-carousel .owl-nav button.owl-prev {
  547. left: 0px;
  548. margin: 0;
  549. }
  550. .owl-carousel .owl-nav button.owl-next {
  551. right: 0px;
  552. margin: 0;
  553. }
  554. .owl-theme .owl-dots {
  555. margin-top: 2rem;
  556. @media screen and(max-width: 576px) {
  557. margin-top: .5rem;
  558. }
  559. }
  560. .owl-theme .owl-dots .owl-dot span {
  561. width: 25px;
  562. height: 3px;
  563. margin: 5px 3px;
  564. @media screen and(max-width: 576px) {
  565. width: 15px;
  566. }
  567. }
  568. .owl-theme .owl-dots .owl-dot.active span {
  569. background-color: #F39800;
  570. }
  571. .mb {
  572. margin-bottom: 8px;
  573. }
  574. .mt {
  575. margin-top: 8px;
  576. }
  577. .mr {
  578. margin-right: 5px;
  579. }
  580. /*form styles*/
  581. #msform {
  582. min-width: 370px;
  583. max-width: 1000px;
  584. margin: auto;
  585. text-align: center;
  586. position: relative;
  587. font-family: 'Taipei Sans TC Beta';
  588. @media screen and(max-width: 576px) {
  589. min-width: 340px;
  590. }
  591. }
  592. #msform fieldset {
  593. background: transparent;
  594. box-sizing: border-box;
  595. width: 85%;
  596. margin: 0 7.5%;
  597. /*stacking fieldsets above each other*/
  598. position: relative;
  599. }
  600. /*Hide all except first fieldset*/
  601. #msform fieldset:not(:first-of-type) {
  602. display: none;
  603. margin-top: 2rem;
  604. }
  605. /*inputs*/
  606. #msform input[type="text"], #msform textarea, #msform input[type="email"], #msform select {
  607. padding: 8px;
  608. padding-left: 1rem;
  609. border: 1px solid #C4C4C4;
  610. border-radius: 0px;
  611. margin-bottom: 16px;
  612. width: 100%;
  613. box-sizing: border-box;
  614. font-family: montserrat;
  615. color: #2C3E50;
  616. font-size: 14px;
  617. }
  618. #msform select {
  619. background-color: white;
  620. color: #C4C4C4;
  621. }
  622. #msform input {
  623. color: black;
  624. }
  625. #msform input::placeholder {
  626. color: #C4C4C4;
  627. }
  628. /*buttons*/
  629. #msform .action-button {
  630. width: 90px;
  631. background: #F7F7F7;
  632. font-weight: 400;
  633. color: $font-color;
  634. border: 1px solid $font-color;
  635. border-radius: 5px;
  636. cursor: pointer;
  637. padding: 4px 9px;
  638. margin: 10px auto;
  639. display: inline-block;
  640. }
  641. #msform .action-button:hover, #msform .action-button:focus {
  642. background: $font-color;
  643. color: #F7F7F7;
  644. }
  645. #msform .action-button.btn-margin {
  646. margin-top: 1.5rem;
  647. @media screen and(max-width: 576px) {
  648. margin-top: 160px;
  649. }
  650. }
  651. /*headings*/
  652. .fs-title {
  653. font-size: 15px;
  654. text-transform: uppercase;
  655. color: #2C3E50;
  656. margin-bottom: 10px;
  657. }
  658. .fs-subtitle {
  659. display: inline-block;
  660. font-weight: normal;
  661. font-size: 13px;
  662. color: #666;
  663. margin-bottom: 20px;
  664. padding-bottom: 3px;
  665. border-bottom: 2px solid #27AE60;
  666. }
  667. .fs-label {
  668. display: block;
  669. text-align: left;
  670. font-weight: bold;
  671. }
  672. /*progressbar*/
  673. #progressbar {
  674. width: 85%;
  675. margin: 0 auto;
  676. overflow: hidden;
  677. /*CSS counters to number the steps*/
  678. counter-reset: step;
  679. }
  680. #progressbar li {
  681. list-style-type: none;
  682. color: #C4C4C4;
  683. font-size: .9rem;
  684. width: 33.33%;
  685. float: left;
  686. position: relative;
  687. @media screen and(max-width: 576px) {
  688. font-size: .8rem;
  689. }
  690. }
  691. #progressbar span {
  692. display: block;
  693. }
  694. /* #progressbar li:before {
  695. content: counter(step);
  696. counter-increment: step;
  697. width: 20px;
  698. line-height: 20px;
  699. display: block;
  700. font-size: 12px;
  701. color: #333;
  702. background: white;
  703. border-radius: 3px;
  704. margin: 0 auto 5px auto;
  705. }
  706. /* progressbar connectors*/
  707. #progressbar li:after {
  708. content: '';
  709. width: 60%;
  710. height: 1px;
  711. background: #C4C4C4;
  712. position: absolute;
  713. left: -30%;
  714. top: 17px;
  715. z-index: 2; /*put it behind the numbers*/
  716. @media screen and(max-width: 576px) {
  717. width: 35%;
  718. height: 1px;
  719. background: #C4C4C4;
  720. position: absolute;
  721. left: -20%;
  722. top: 14px;
  723. }
  724. }
  725. #progressbar li:first-child:after {
  726. /*connector not needed before the first step*/
  727. content: none;
  728. }
  729. /*marking active/completed steps green*/
  730. /*The number of the step and the connector before it = green*/
  731. #progressbar li.active:after{
  732. background-color: #F39800;
  733. color: white;
  734. }
  735. #progressbar li.active {
  736. color: #F39800;
  737. font-weight: 600;
  738. }
  739. p.error-text {
  740. bottom: -23px;
  741. left: 24px;
  742. color: rgba(255, 0, 0, .7);
  743. font-size: .8em;
  744. }
  745. #term-error {
  746. color: rgba(255, 0, 0, .7);
  747. font-size: .8em;
  748. bottom: -23px;
  749. left: 24px;
  750. }
  751. select {
  752. padding: 15px;
  753. border: 1px solid #ccc;
  754. border-radius: 3px;
  755. margin-bottom: 10px;
  756. width: 100%;
  757. box-sizing: border-box;
  758. font-family: montserrat;
  759. color: #2C3E50;
  760. font-size: 13px;
  761. background-color: transparent;
  762. }
  763. .pl-0 {
  764. padding-left: 0;
  765. }
  766. .terms {
  767. font-size: .9rem;
  768. width: 95%;
  769. min-width: 250px;
  770. height: auto;
  771. overflow: scroll;
  772. margin-bottom: 1rem;
  773. margin-left: auto;
  774. margin-right: auto;
  775. border: 1px solid rgb(163, 163, 163);
  776. line-height: 1.5rem;
  777. }
  778. .term-link {
  779. @media screen and(max-width: 576px) {
  780. font-size: .8rem;
  781. }
  782. }
  783. .term-link span {
  784. color: black;
  785. display: inline-block;
  786. margin-left: 4px;
  787. text-decoration: underline;
  788. cursor: pointer;
  789. }
  790. .h2 {
  791. text-align: center;
  792. font-size: 1.2rem;
  793. font-weight: 500;
  794. margin-top: 2rem;
  795. }
  796. .left_align {
  797. font-size: 18px;
  798. text-align: left;
  799. }
  800. #overlay {
  801. position: fixed; /* Sit on top of the page content */
  802. display: none;
  803. width: 100%;
  804. height: 100%;
  805. top: 0;
  806. left: 0;
  807. right: 0;
  808. bottom: 0;
  809. background-color: rgba(0,0,0,0.5);
  810. z-index: 2;
  811. cursor: pointer;
  812. }
  813. .check_button {
  814. display: none;
  815. }
  816. .fs-label-type {
  817. background: white;
  818. padding: 5px 11px;
  819. border: 1px solid #C4C4C4;
  820. border-radius: 8px;
  821. display: inline-block;
  822. font-weight: lighter;
  823. font-size: 1rem;
  824. }
  825. .check_button:checked + .fs-label-type{
  826. background-color: #FFC107;
  827. color: black;
  828. border-color: #FFC107;
  829. }
  830. input[type="checkbox"] {
  831. display: none;
  832. }
  833. #checker1, #checker2 {
  834. display: inline;
  835. }
  836. .fs-label-info {
  837. background: white;
  838. padding: 5px 11px;
  839. border: 1px solid #C4C4C4;
  840. border-radius: 8px;
  841. display: inline-block;
  842. font-weight: lighter;
  843. font-size: 1rem;
  844. }
  845. input[type="radio"] {
  846. display: none;
  847. }
  848. input[type="radio"]:checked + .fs-label-info {
  849. background-color: #FFC107;
  850. color: black;
  851. border-color: #FFC107;
  852. }
  853. input[type="checkbox"]:checked + .fs-label-info {
  854. background-color: #FFC107;
  855. color: black;
  856. border-color: #FFC107;
  857. }
  858. #msform .submit {
  859. background-color: #0D6EFD;
  860. color: white;
  861. border: 1px solid #0D6EFD;
  862. }
  863. #msform .submit:hover, #msform .submit:focus {
  864. background-color: #0D6EFD;
  865. color: white;
  866. }
  867. .btn-exit {
  868. padding: .5rem .75rem;
  869. background-color: transparent;
  870. border: 1px solid black;
  871. margin-top: .3rem;
  872. }
  873. .btn-term-exit {
  874. padding: .5rem .75rem;
  875. background-color: transparent;
  876. border: 1px solid black;
  877. margin-top: .3rem;
  878. display: block;
  879. margin-left: auto;
  880. margin-right: auto;
  881. margin-bottom: 2rem;
  882. }
  883. #msform #userid, #msform #area {
  884. height: 0;
  885. padding: 0;
  886. margin: 0;
  887. border: none;
  888. }
  889. .footer {
  890. text-align: center;
  891. padding: 1.5rem;
  892. color: $font-color;
  893. font-size: 1rem;
  894. position: relative;
  895. font-family: 'Taipei Sans TC Beta';
  896. @media screen and(max-width: 576px) {
  897. padding-bottom: 3rem;
  898. background-color: transparent;
  899. font-size: .9rem;
  900. }
  901. .deco__bottomdiv {
  902. position: absolute;
  903. right: 15%;
  904. bottom: 0rem;
  905. z-index: -2;
  906. width: 920px;
  907. overflow: hidden;
  908. }
  909. .deco__rightdiv {
  910. width: 710px;
  911. position: absolute;
  912. right: 0;
  913. bottom: 0rem;
  914. z-index: -2;
  915. overflow: hidden;
  916. @media screen and(max-width: 576px) {
  917. width: 270px;
  918. }
  919. }
  920. .deco__right {
  921. width: 100%;
  922. transform: translateY(2rem);
  923. }
  924. .deco__bottom {
  925. width: 100%;
  926. transform: translateY(2rem);
  927. }
  928. .deco__linediv {
  929. width: 310px;
  930. position: absolute;
  931. bottom: 0rem;
  932. left: -8rem;
  933. z-index: -1;
  934. overflow: hidden;
  935. @media screen and(max-width: 576px) {
  936. width: 140px;
  937. left: -3rem;
  938. }
  939. }
  940. .deco__line3 {
  941. width: 100%;
  942. height: 110%;
  943. transform: translateY(3rem);
  944. opacity: .5;
  945. }
  946. .deco__rightlinediv {
  947. width: 650px;
  948. position: absolute;
  949. bottom: 0rem;
  950. right: -4rem;
  951. z-index: -1;
  952. overflow: hidden;
  953. @media screen and(max-width: 576px) {
  954. width: 300px;
  955. }
  956. }
  957. .deco__rightline {
  958. width: 100%;
  959. opacity: .6;
  960. transform: translateY(2rem);
  961. @media screen and(max-width: 576px) {
  962. opacity: 1;
  963. }
  964. }
  965. }