style.scss 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671
  1. @charset "UTF-8";
  2. /*custom font*/
  3. @import url(https://fonts.googleapis.com/css?family=Montserrat);
  4. @import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
  5. /*basic reset*/
  6. * {
  7. margin: 0;
  8. padding: 0;
  9. }
  10. $moblie: 767px;
  11. $desktop: 1025px;
  12. html {
  13. min-height: 100%;
  14. height: auto;
  15. /*Image only BG fallback*/
  16. /*background = gradient + image pattern combo*/
  17. /* background:
  18. linear-gradient(rgba(196, 102, 0, 0.6), rgba(155, 89, 182, 0.6)); */
  19. }
  20. body {
  21. font-family: "Montserrat", sans-serif;
  22. background-color: white;
  23. font-size: 1.05rem;
  24. }
  25. .ml {
  26. margin-left: 10px;
  27. }
  28. .mr {
  29. margin-right: 10px;
  30. }
  31. .mb {
  32. margin-bottom: 12px;
  33. }
  34. .top {
  35. margin-top: 20px;
  36. position: sticky;
  37. top: 0;
  38. left: 50%;
  39. z-index: 20;
  40. background-color: inherit;
  41. }
  42. .copy {
  43. cursor: pointer;
  44. }
  45. .navbar {
  46. background-color: white;
  47. .menu-bar {
  48. @media screen and(min-width:$desktop) {
  49. display: none;
  50. }
  51. }
  52. }
  53. .navbar-des {
  54. @media screen and(max-width:$moblie) {
  55. display: none;
  56. }
  57. }
  58. /* .imf {
  59. position: fixed;
  60. top: 0;
  61. left: 50%;
  62. transform: translateX(-50%);
  63. z-index: 3;
  64. } */
  65. .img_banner {
  66. background-image: url("images/banner_top1.jpg");
  67. background-repeat: no-repeat;
  68. background-size: contain;
  69. background-position: center;
  70. width: 100%;
  71. height: 65px;
  72. }
  73. /*form styles*/
  74. .img_logo {
  75. display: inline-block;
  76. margin: 0 auto;
  77. margin-bottom: 10px;
  78. }
  79. .title__block {
  80. display: flex;
  81. justify-content: center;
  82. align-items: center;
  83. margin: 0px auto;
  84. }
  85. .sub-logo {
  86. display: inline-block;
  87. font-weight: 700;
  88. font-size: 1.4rem;
  89. color: white;
  90. }
  91. .slogan {
  92. display: block;
  93. font-weight: 700;
  94. font-size: 1.2rem;
  95. color: white;
  96. }
  97. .notice_card {
  98. box-sizing: border-box;
  99. width: 80%;
  100. margin: 0 10%;
  101. margin-bottom: 1.5rem;
  102. background: white;
  103. border: 0 none;
  104. border-radius: 3px;
  105. box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
  106. padding: 10px 20px;
  107. line-height: 1.5rem;
  108. }
  109. #myProgress {
  110. width: 100%;
  111. background-color: #ddd;
  112. }
  113. #myBar {
  114. width: 10%;
  115. height: 30px;
  116. background-color: #1c7ce0;
  117. text-align: center;
  118. line-height: 30px;
  119. color: white;
  120. }
  121. .go_title {
  122. color: white;
  123. font-family: "Montserrat", sans-serif;
  124. padding: 1rem;
  125. }
  126. .nav-list {
  127. color: white;
  128. margin-top: 1.5rem;
  129. }
  130. .nav-list-item {
  131. font-size: 1.2rem;
  132. cursor: pointer;
  133. position: relative;
  134. }
  135. .nav-list-item::after {
  136. content: " ";
  137. position: absolute;
  138. width: 100%;
  139. height: 100%;
  140. left: 0;
  141. top: 0;
  142. border-bottom: 1px solid white;
  143. opacity: 0;
  144. transition: all 0.4s;
  145. }
  146. .nav-list-item:hover::after {
  147. opacity: 1;
  148. }
  149. .loader {
  150. position: absolute;
  151. top: 30%;
  152. left: 45%;
  153. }
  154. .imgfr {
  155. width: 90px;
  156. height: 90px;
  157. border-radius: 50%;
  158. overflow: hidden;
  159. margin: 1rem auto 0 auto;
  160. }
  161. .card-title {
  162. font-family: "Montserrat", sans-serif;
  163. font-size: 1rem;
  164. }
  165. .strong {
  166. font-weight: 600;
  167. }
  168. .card {
  169. border: none;
  170. position: relative;
  171. }
  172. .card.active {
  173. border: 1px solid gray;
  174. }
  175. .card.active::before {
  176. position: absolute;
  177. content: "✓";
  178. bottom: 0;
  179. right: 5px;
  180. }
  181. .zoomin {
  182. display: none;
  183. position: absolute;
  184. bottom: 0;
  185. left: 0;
  186. }
  187. .script_err {
  188. display: none;
  189. }
  190. /* .history-modal {
  191. height: 80vh;
  192. }
  193. .history-modal .modal-content{
  194. height: 80vh;
  195. }
  196. .history-modal .modal-conten .modal-terms {
  197. height: 90%;
  198. overflow: scroll;
  199. } */
  200. .history {
  201. height: 75vh;
  202. overflow: scroll;
  203. }
  204. .historyList-item {
  205. padding: 1rem;
  206. display: block;
  207. width: 80%;
  208. margin: 1rem auto;
  209. border-radius: 10px;
  210. display: flex;
  211. font-size: 0.9rem;
  212. box-shadow: 1px 1px 4px 1px rgb(207, 207, 207);
  213. background-color: white;
  214. }
  215. .historyList-link {
  216. text-decoration: none;
  217. color: rgb(73, 73, 73);
  218. }
  219. .historyList-link:hover {
  220. color: rgb(124, 124, 124);
  221. }
  222. .listimg__fr {
  223. width: 50px;
  224. height: 50px;
  225. border-radius: 50%;
  226. overflow: hidden;
  227. margin: auto 0.5rem;
  228. }
  229. .listimg__fr img {
  230. width: 100%;
  231. height: 100%;
  232. }
  233. .content {
  234. width: calc(100% - 250px);
  235. }
  236. /*form styles*/
  237. #msform {
  238. max-width: 1000px;
  239. min-width: 370px;
  240. margin: 50px auto;
  241. margin-bottom: 20px;
  242. text-align: center;
  243. position: relative;
  244. }
  245. #msform fieldset {
  246. background: white;
  247. border: 0 none;
  248. border-radius: 3px;
  249. box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
  250. padding: 20px 30px;
  251. box-sizing: border-box;
  252. width: 80%;
  253. margin: 3rem 10%;
  254. /*stacking fieldsets above each other*/
  255. position: relative;
  256. @media screen and(max-width:$moblie) {
  257. width: 90%;
  258. margin: 3rem auto;
  259. padding: 10px 15px;
  260. }
  261. }
  262. /*Hide all except first fieldset*/
  263. /*inputs*/
  264. #msform input[type="text"],
  265. #msform textarea,
  266. #msform input[type="email"] {
  267. padding: 15px;
  268. border: 1px solid #ccc;
  269. border-radius: 3px;
  270. margin-bottom: 16px;
  271. width: 100%;
  272. box-sizing: border-box;
  273. font-family: montserrat;
  274. color: #2c3e50;
  275. font-size: 14px;
  276. }
  277. /*buttons*/
  278. #msform .action-button {
  279. width: 100px;
  280. background: #1c7ce0;
  281. font-weight: bold;
  282. color: white;
  283. border: 0 none;
  284. border-radius: 1px;
  285. cursor: pointer;
  286. padding: 10px 5px;
  287. margin: 10px auto;
  288. display: block;
  289. }
  290. #msform .action-button:hover,
  291. #msform .action-button:focus {
  292. box-shadow: 0 0 0 2px white, 0 0 0 3px #1c7ce0;
  293. }
  294. #msform .next[disabled] {
  295. background-color: grey;
  296. }
  297. .draft-btn {
  298. padding: 10px 5px;
  299. background-color: rgb(209, 209, 209);
  300. display: inline-block;
  301. position: absolute;
  302. left: 1rem;
  303. bottom: 1rem;
  304. font-size: 1rem;
  305. transition: all 0.3s;
  306. cursor: pointer;
  307. &:hover {
  308. background-color: rgb(170, 170, 170);
  309. }
  310. }
  311. /*headings*/
  312. .fs-title {
  313. font-size: 15px;
  314. text-transform: uppercase;
  315. color: #2c3e50;
  316. margin-bottom: 10px;
  317. }
  318. .fs-subtitle {
  319. display: inline-block;
  320. font-weight: normal;
  321. font-size: 18px;
  322. color: #666;
  323. margin-bottom: 20px;
  324. padding-bottom: 3px;
  325. border-bottom: 2px solid #1c7ce0;
  326. margin-left: 2rem;
  327. margin-right: 2rem;
  328. }
  329. .fs-label {
  330. display: block;
  331. text-align: left;
  332. margin-bottom: 8px;
  333. }
  334. .fs-label > i {
  335. margin-right: 3px;
  336. }
  337. /*progressbar*/
  338. #progressbar {
  339. margin-bottom: 30px;
  340. overflow: hidden;
  341. /*CSS counters to number the steps*/
  342. counter-reset: step;
  343. }
  344. #progressbar li {
  345. list-style-type: none;
  346. color: black;
  347. text-transform: uppercase;
  348. font-size: 12px;
  349. width: 33.33%;
  350. float: left;
  351. position: relative;
  352. }
  353. #progressbar li:before {
  354. content: counter(step);
  355. counter-increment: step;
  356. width: 20px;
  357. line-height: 20px;
  358. display: block;
  359. font-size: 12px;
  360. color: #333;
  361. background: white;
  362. border-radius: 3px;
  363. margin: 0 auto 5px auto;
  364. }
  365. /*progressbar connectors*/
  366. #progressbar li:after {
  367. content: "";
  368. width: 100%;
  369. height: 2px;
  370. background: white;
  371. position: absolute;
  372. left: -50%;
  373. top: 9px;
  374. z-index: -1; /*put it behind the numbers*/
  375. }
  376. #progressbar li:first-child:after {
  377. /*connector not needed before the first step*/
  378. content: none;
  379. }
  380. /*marking active/completed steps green*/
  381. /*The number of the step and the connector before it = green*/
  382. #progressbar li.active:before,
  383. #progressbar li.active:after {
  384. background: #27ae60;
  385. color: white;
  386. }
  387. p.error-text {
  388. bottom: -23px;
  389. left: 24px;
  390. color: rgba(255, 0, 0, 0.7);
  391. font-size: 0.8em;
  392. margin-bottom: 0;
  393. }
  394. #term-error {
  395. color: rgba(255, 0, 0, 0.7);
  396. font-size: 0.8em;
  397. bottom: -23px;
  398. left: 24px;
  399. }
  400. select {
  401. padding: 15px;
  402. border: 1px solid #ccc;
  403. border-radius: 3px;
  404. margin-bottom: 10px;
  405. width: 100%;
  406. box-sizing: border-box;
  407. font-family: montserrat;
  408. color: #2c3e50;
  409. font-size: 13px;
  410. background-color: transparent;
  411. }
  412. .pl-0 {
  413. padding-left: 0;
  414. }
  415. .terms {
  416. font-size: 0.9rem;
  417. width: 95%;
  418. min-width: 250px;
  419. height: auto;
  420. overflow: scroll;
  421. margin-bottom: 1rem;
  422. margin-left: auto;
  423. margin-right: auto;
  424. border: 1px solid rgb(163, 163, 163);
  425. line-height: 1.5rem;
  426. }
  427. .term-link a {
  428. text-decoration: none;
  429. color: black;
  430. }
  431. .h2 {
  432. text-align: center;
  433. font-size: 1.2rem;
  434. font-weight: 500;
  435. margin-top: 2rem;
  436. }
  437. .left_align {
  438. font-size: 18px;
  439. text-align: left;
  440. }
  441. #overlay {
  442. position: fixed; /* Sit on top of the page content */
  443. display: none;
  444. width: 100%;
  445. height: 100%;
  446. top: 0;
  447. left: 0;
  448. right: 0;
  449. bottom: 0;
  450. background-color: rgba(0, 0, 0, 0.5);
  451. z-index: 2;
  452. cursor: pointer;
  453. }
  454. .thankyou {
  455. margin: auto;
  456. min-width: 350px;
  457. height: 250px;
  458. margin-top: 190px;
  459. background: #fff;
  460. padding: 15px 20px;
  461. line-height: 25px;
  462. border-radius: 4px;
  463. text-align: center;
  464. }
  465. .thankyou input {
  466. margin-top: 40px;
  467. }
  468. .thankyou h3 {
  469. font-size: 2rem;
  470. font-weight: 700;
  471. color: #21ba45;
  472. line-height: 2.5rem;
  473. margin-bottom: 1.5rem;
  474. }
  475. .check_button {
  476. display: none;
  477. }
  478. .fs-label-type {
  479. background: transparent;
  480. padding: 5px;
  481. border: 1px solid black;
  482. border-radius: 5px;
  483. display: inline-block;
  484. }
  485. .check_button:checked + .fs-label-type {
  486. background-color: #27ae60;
  487. color: white;
  488. padding: 5px;
  489. border: 1px solid #27ae60;
  490. border-radius: 5px;
  491. }
  492. #checker1,
  493. #checker2 {
  494. display: inline;
  495. }
  496. .fs-label-info {
  497. background: transparent;
  498. padding: 5px;
  499. border: 1px solid black;
  500. border-radius: 5px;
  501. display: inline-block;
  502. margin-bottom: 8px;
  503. }
  504. input[type="radio"] {
  505. display: none;
  506. }
  507. input[type="radio"]:checked + .fs-label-info {
  508. background-color: #27ae60;
  509. color: white;
  510. padding: 5px;
  511. border: 1px solid #27ae60;
  512. border-radius: 5px;
  513. }
  514. input[type="checkbox"]:checked + .fs-label-info {
  515. background-color: #27ae60;
  516. color: white;
  517. padding: 5px;
  518. border: 1px solid #27ae60;
  519. border-radius: 5px;
  520. }
  521. .btn-exit {
  522. padding: 0.5rem 0.75rem;
  523. background-color: transparent;
  524. border: 1px solid black;
  525. margin-top: 0.3rem;
  526. }
  527. .btn-term-exit {
  528. padding: 0.5rem 0.75rem;
  529. background-color: transparent;
  530. border: 1px solid black;
  531. margin-top: 0.3rem;
  532. display: block;
  533. margin-left: auto;
  534. margin-right: auto;
  535. margin-bottom: 2rem;
  536. }
  537. footer {
  538. padding: 2rem;
  539. padding-top: 0.5rem;
  540. }
  541. .footer {
  542. display: flex;
  543. justify-content: center;
  544. }
  545. .img_fr {
  546. width: 80%;
  547. max-width: 850px;
  548. min-width: 300px;
  549. height: 60px;
  550. object-fit: contain;
  551. object-position: center;
  552. }
  553. .img_fr img {
  554. width: 100%;
  555. height: 90%;
  556. }
  557. #msform #userid,
  558. #msform #area {
  559. height: 0;
  560. padding: 0;
  561. margin: 0;
  562. border: none;
  563. }
  564. #msform input[type="text"].error {
  565. border-color: red;
  566. }
  567. .modal-header {
  568. border-bottom: none;
  569. }
  570. .btn-dismiss {
  571. background: linear-gradient(90deg, #0162c8, #55e7fc);
  572. font-weight: bold;
  573. color: white;
  574. border: 0 none;
  575. border-radius: 20px;
  576. cursor: pointer;
  577. padding: 10px 35px;
  578. margin: 10px auto;
  579. display: block;
  580. }
  581. #avatarmega .modal-content {
  582. background-color: transparent;
  583. border: none;
  584. }
  585. #avatarmega .modal-title {
  586. color: white;
  587. }
  588. #avatarmega .modal-header {
  589. position: absolute;
  590. top: -0.5rem;
  591. right: 1.5rem;
  592. }
  593. .linker__box {
  594. padding: 0.5rem 1rem;
  595. border-radius: 1rem;
  596. box-shadow: 1px 1px 5px 1px rgb(201, 201, 201);
  597. width: max-content;
  598. margin: 0 auto;
  599. display: none;
  600. }
  601. .linker__box p {
  602. margin-bottom: 0;
  603. color: gray;
  604. }
  605. .linker__box i {
  606. color: gray;
  607. position: relative;
  608. }
  609. .linker__box i::after {
  610. position: absolute;
  611. content: " ";
  612. right: -5px;
  613. top: -10%;
  614. border-right: 2px solid rgb(163, 163, 163);
  615. width: 1px;
  616. height: 120%;
  617. }
  618. .item_imgfr {
  619. width: 15%;
  620. height: 50px;
  621. border-radius: 50%;
  622. overflow: hidden;
  623. margin: auto 0.5rem;
  624. }
  625. .item_imgfr img {
  626. height: 100%;
  627. width: 100%;
  628. }
  629. .content-box {
  630. width: 75%;
  631. }
  632. .box-title {
  633. margin-bottom: 0.2rem;
  634. cursor: pointer;
  635. }
  636. .box-title:hover {
  637. color: grey;
  638. text-decoration: underline;
  639. }
  640. .box-link {
  641. cursor: pointer;
  642. }
  643. .img_uploader {
  644. display: none;
  645. }
  646. #msform input[type="text"].imgsrc {
  647. width: calc(100% - 8rem);
  648. margin-right: 5px;
  649. @media screen and(max-width:$moblie) {
  650. margin-right: 15px;
  651. }
  652. }
  653. .upload-btn {
  654. display: inline-block;
  655. width: 6rem;
  656. background-color: #75a7dd;
  657. color: white;
  658. padding: 0.4rem 0.5rem;
  659. font-size: 0.9rem;
  660. border-radius: 3px;
  661. transition: all 0.3s;
  662. cursor: pointer;
  663. }
  664. .upload-btn img {
  665. width: 30px;
  666. height: 30px;
  667. }
  668. .upload-btn:hover {
  669. background-color: #3b86d6;
  670. }
  671. .add,
  672. .add-subline,
  673. .addimg {
  674. cursor: pointer;
  675. display: inline-block;
  676. width: 2rem;
  677. height: 2rem;
  678. background-color: #67abf3;
  679. font-size: 1.2rem;
  680. color: white;
  681. border-radius: 50%;
  682. transition: all 0.3s;
  683. }
  684. .add:hover,
  685. .add-subline:hover,
  686. .addimg:hover {
  687. background-color: #398ee9;
  688. }
  689. body {
  690. font-family: "Lato", sans-serif;
  691. }
  692. #mySidenav::-webkit-scrollbar-track {
  693. -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  694. border-radius: 10px;
  695. background-color: #f5f5f5;
  696. }
  697. #mySidenav::-webkit-scrollbar {
  698. width: 12px;
  699. background-color: #f5f5f5;
  700. display: none;
  701. }
  702. #mySidenav::-webkit-scrollbar:hover {
  703. display: block;
  704. }
  705. #mySidenav::-webkit-scrollbar-thumb {
  706. border-radius: 10px;
  707. -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  708. background-color: #aaa;
  709. }
  710. // .sidenav {
  711. // height: 100%;
  712. // width: 250px;
  713. // position: fixed;
  714. // z-index: 1;
  715. // top: 0;
  716. // left: 0;
  717. // background: linear-gradient(to bottom, #1c7ce0, #150051);
  718. // overflow-x: hidden;
  719. // transition: 0.5s;
  720. // }
  721. .sidenav a {
  722. text-decoration: none;
  723. font-size: 25px;
  724. color: #818181;
  725. display: block;
  726. transition: 0.3s;
  727. }
  728. .sidenav a:hover {
  729. color: #f1f1f1;
  730. }
  731. .sidenav .closebtn {
  732. position: absolute;
  733. top: 0;
  734. right: 25px;
  735. font-size: 36px;
  736. margin-left: 50px;
  737. }
  738. .container-login {
  739. width: 100vw;
  740. height: 100vh;
  741. display: grid;
  742. grid-template-columns: repeat(2, 1fr);
  743. grid-gap: 7rem;
  744. padding: 0rem;
  745. }
  746. .navbar-nav button {
  747. background: white;
  748. border: none;
  749. outline: none;
  750. }
  751. .img-wave {
  752. position: fixed;
  753. bottom: 0;
  754. left: 0;
  755. height: 100%;
  756. z-index: -1;
  757. }
  758. .img-wave-profile {
  759. height: 80%;
  760. }
  761. .row-img {
  762. position: relative;
  763. display: flex;
  764. justify-content: center;
  765. align-items: center;
  766. background-image: linear-gradient(to right bottom, rgba(#10448e, 0.7), rgba(#10448e, 0.7));
  767. background-size: cover;
  768. background-position: center;
  769. overflow: hidden;
  770. .video {
  771. height: 100%;
  772. z-index: -1;
  773. position: absolute;
  774. left: -10%;
  775. top: 0;
  776. }
  777. .row-img-box {
  778. color: white;
  779. }
  780. .row-img-txt {
  781. position: absolute;
  782. bottom: 2rem;
  783. color: white;
  784. left: 2rem;
  785. font-size: 1.3rem;
  786. }
  787. }
  788. .row-login {
  789. display: flex;
  790. justify-content: flex-start;
  791. align-items: center;
  792. text-align: center;
  793. position: relative;
  794. @media screen and(max-width:$moblie) {
  795. align-items:start;
  796. margin-top: 50px;
  797. }
  798. .title {
  799. position: relative;
  800. color: #052859;
  801. &::after {
  802. position: absolute;
  803. content: "";
  804. left: 45%;
  805. top: 20%;
  806. width: 10%;
  807. height: 100%;
  808. border-bottom: 4px solid #052859;
  809. }
  810. }
  811. .login-top {
  812. position: absolute;
  813. right: 1rem;
  814. top: 1rem;
  815. .navbar-nav {
  816. flex-direction: row;
  817. .nav-item {
  818. margin: 0 0.5rem;
  819. a {
  820. color: black;
  821. }
  822. }
  823. }
  824. }
  825. }
  826. .login-content {
  827. width: 80%;
  828. min-width: 350px;
  829. box-shadow: 0 0 12px 5px rgb(221, 221, 221);
  830. padding: 1.5rem;
  831. border-radius: 2rem;
  832. }
  833. .link_privacy {
  834. color: black;
  835. }
  836. .login-content img {
  837. height: 80px;
  838. }
  839. .row-img img {
  840. width: 450px;
  841. }
  842. .login-content .form-floating input {
  843. border: none;
  844. border-bottom: 2px solid #d9d9d9;
  845. border-radius: 0;
  846. }
  847. .login-content .form-floating input:focus {
  848. box-shadow: none;
  849. }
  850. .login-content #btn_login {
  851. background: linear-gradient(90deg, #0162c8, #55e7fc);
  852. font-weight: bold;
  853. color: white;
  854. border: 0 none;
  855. border-radius: 40px;
  856. cursor: pointer;
  857. padding: 10px 50px;
  858. margin: 10px auto;
  859. display: block;
  860. }
  861. .login-content #btn_login:hover {
  862. box-shadow: 0 0 0 2px white, 0 0 0 3px #1c7ce0;
  863. }
  864. .login-content .btn-register {
  865. background: linear-gradient(90deg, #0162c8, #55e7fc);
  866. font-weight: bold;
  867. color: white;
  868. border: 0 none;
  869. border-radius: 40px;
  870. cursor: pointer;
  871. padding: 10px 50px;
  872. margin: 10px auto;
  873. display: block;
  874. }
  875. .login-content .btn-register:hover {
  876. box-shadow: 0 0 0 2px white, 0 0 0 3px #1c7ce0;
  877. }
  878. .login-content .nav-tabs {
  879. border-bottom: none;
  880. }
  881. .login-content .nav {
  882. flex-direction: column;
  883. align-items: center;
  884. }
  885. .login-content .nav-tabs .nav-link {
  886. color: grey;
  887. }
  888. .login-content .nav-tabs .nav-link.active {
  889. border-color: #fff;
  890. text-transform: uppercase;
  891. color: black;
  892. }
  893. .navbar .btn-gocreate {
  894. background: linear-gradient(90deg, #0162c8, #55e7fc);
  895. color: white;
  896. border: 0 none;
  897. border-radius: 40px;
  898. cursor: pointer;
  899. padding: 10px 50px;
  900. }
  901. .container-bg {
  902. position: absolute;
  903. width: 600px;
  904. height: 400px;
  905. right: 0;
  906. bottom: 0;
  907. z-index: -1;
  908. }
  909. .container-profile .card-profile {
  910. margin-top: 4rem;
  911. border-radius: 10px;
  912. padding: 2rem;
  913. text-align: center;
  914. box-shadow: 0px 0px 20px 1px rgb(180, 180, 180);
  915. }
  916. .container-profile .card-profile img {
  917. width: 120px;
  918. margin: 1rem auto;
  919. }
  920. .card-profile-txt {
  921. color: rgb(109, 109, 109);
  922. font-size: 1.2rem;
  923. font-weight: 500;
  924. }
  925. .card-profile-cnt {
  926. font-size: 1.5rem;
  927. font-weight: 700;
  928. }
  929. @media screen and (max-width: 900px) {
  930. .container-login {
  931. grid-template-columns: 1fr;
  932. }
  933. .row-img {
  934. display: none;
  935. }
  936. .img-wave {
  937. display: none;
  938. }
  939. .row-login {
  940. justify-content: center;
  941. }
  942. .container-bg {
  943. width: 400px;
  944. height: 300px;
  945. right: 0;
  946. bottom: 0;
  947. }
  948. }
  949. @media screen and (max-height: 450px) {
  950. .sidenav {
  951. padding-top: 15px;
  952. }
  953. .sidenav a {
  954. font-size: 18px;
  955. }
  956. }
  957. /* Pricing */
  958. #pricing-nav{
  959. @media screen and(max-width:$moblie) {
  960. display: none;
  961. }
  962. }
  963. .pricingTable {
  964. background: #fff;
  965. font-family: "Open Sans", sans-serif;
  966. text-align: center;
  967. padding: 30px 15px 15px;
  968. border-radius: 25px;
  969. overflow: hidden;
  970. position: relative;
  971. z-index: 1;
  972. }
  973. .pricingTable:before,
  974. .pricingTable:after {
  975. content: "";
  976. background: linear-gradient(-45deg, #5a98fb, #5a98fb, #3f64fa, #3f64fa);
  977. height: 170px;
  978. width: 150%;
  979. outline: 5px solid #fff;
  980. outline-offset: -10px;
  981. opacity: 0.9;
  982. transform: translateX(-50%) rotate(7deg);
  983. position: absolute;
  984. left: 50%;
  985. top: -65px;
  986. z-index: -1;
  987. }
  988. .pricingTable:after {
  989. height: 250px;
  990. transform: translateX(-50%) rotate(-20deg) rotateX(180deg);
  991. top: auto;
  992. bottom: -150px;
  993. }
  994. .pricingTable .pricingTable-header {
  995. color: #fff;
  996. margin: 0 0 75px;
  997. }
  998. .pricingTable .title {
  999. font-size: 40px;
  1000. font-weight: 700;
  1001. text-transform: uppercase;
  1002. letter-spacing: 1px;
  1003. margin: 0;
  1004. @media screen and(max-width:767px) {
  1005. font-size: 30px;
  1006. }
  1007. }
  1008. .pricingTable .pricing-content {
  1009. text-align: left;
  1010. padding: 0;
  1011. margin: 0 0 10px;
  1012. display: inline-block;
  1013. }
  1014. .pricingTable .pricing-content li {
  1015. color: #333;
  1016. font-size: 17px;
  1017. font-weight: 500;
  1018. line-height: 22px;
  1019. text-transform: uppercase;
  1020. padding: 0 40px 0 0;
  1021. margin: 0 0 15px;
  1022. list-style-position: inside;
  1023. position: relative;
  1024. }
  1025. .pricingTable .pricing-content li:after {
  1026. content: "\f00c";
  1027. color: #e58e26;
  1028. font-family: "Font Awesome 5 Free";
  1029. font-size: 18px;
  1030. font-weight: 900;
  1031. position: absolute;
  1032. top: 0;
  1033. right: 0;
  1034. }
  1035. .pricingTable .pricing-content li.disable:after {
  1036. content: "\f00d";
  1037. }
  1038. .pricingTable .price-value {
  1039. margin: 0 0 15px;
  1040. }
  1041. .pricingTable .price-title {
  1042. color: #c70039;
  1043. font-size: 30px;
  1044. text-align: left;
  1045. text-transform: uppercase;
  1046. line-height: 30px;
  1047. width: calc(100% - 130px);
  1048. padding: 15px 0 0;
  1049. display: inline-block;
  1050. }
  1051. .pricingTable .price-title b {
  1052. display: block;
  1053. }
  1054. .pricingTable .price-amount {
  1055. color: #3f64fa;
  1056. background: #fff;
  1057. font-size: 30px;
  1058. font-weight: 700;
  1059. line-height: 30px;
  1060. width: 120px;
  1061. height: 120px;
  1062. padding: 33px 10px 10px;
  1063. display: inline-block;
  1064. vertical-align: top;
  1065. clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);
  1066. position: relative;
  1067. z-index: 1;
  1068. }
  1069. .pricingTable .price-amount:before,
  1070. .pricingTable .price-amount:after {
  1071. content: "";
  1072. background: linear-gradient(-45deg, #5a98fb, #5a98fb, #3f64fa, #3f64fa);
  1073. width: calc(100% - 12px);
  1074. height: calc(100% - 12px);
  1075. transform: translateX(-50%) translateY(-50%);
  1076. position: absolute;
  1077. top: 50%;
  1078. left: 50%;
  1079. z-index: -1;
  1080. clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);
  1081. }
  1082. .pricingTable .price-amount:after {
  1083. background: #fff;
  1084. width: calc(100% - 16px);
  1085. height: calc(100% - 16px);
  1086. }
  1087. .pricingTable .price-amount .duration {
  1088. font-size: 16px;
  1089. font-weight: 600;
  1090. text-transform: capitalize;
  1091. display: block;
  1092. }
  1093. .pricingTable .pricingTable-signup a {
  1094. color: #fff;
  1095. font-size: 20px;
  1096. font-weight: 700;
  1097. letter-spacing: 2px;
  1098. text-transform: uppercase;
  1099. padding: 10px 20px;
  1100. border: 2px solid #fff;
  1101. border-radius: 50px;
  1102. display: inline-block;
  1103. transition: all 0.3s;
  1104. }
  1105. .pricingTable .pricingTable-signup a:hover {
  1106. text-shadow: 3px 3px 1px rgba(0, 0, 0, 0.5);
  1107. box-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
  1108. }
  1109. .pricingTable.green:before,
  1110. .pricingTable.green:after,
  1111. .pricingTable.green .price-amount:before {
  1112. background: linear-gradient(-45deg, #76d243, #76d243, #109739, #109739);
  1113. }
  1114. .pricingTable.green .price-amount {
  1115. color: #109739;
  1116. }
  1117. .pricingTable.pink:before,
  1118. .pricingTable.pink:after,
  1119. .pricingTable.pink .price-amount:before {
  1120. background: linear-gradient(-45deg, #e969a6, #e969a6, #ed2e96, #ed2e96);
  1121. }
  1122. .pricingTable.pink .price-amount {
  1123. color: #ed2e96;
  1124. }
  1125. @media only screen and (max-width: 990px) {
  1126. .pricingTable {
  1127. margin: 0 0 40px;
  1128. }
  1129. }
  1130. // new user_profile
  1131. .profile-bgimg {
  1132. @media screen and(max-width:$moblie) {
  1133. width: 100%;
  1134. height: 300px;
  1135. object-fit: cover;
  1136. display: none;
  1137. }
  1138. }
  1139. .profile-bgimg-m {
  1140. @media screen and(min-width:$desktop) {
  1141. display: none;
  1142. }
  1143. }
  1144. .navbar {
  1145. background: none !important;
  1146. }
  1147. .arrowdoup {
  1148. transform: rotate(180deg);
  1149. }
  1150. .arrowdown {
  1151. cursor: pointer;
  1152. }
  1153. .userprofile {
  1154. position: relative;
  1155. top: -80px;
  1156. z-index: 20;
  1157. @media screen and(max-width:$moblie) {
  1158. top: 10px;
  1159. z-index: 0;
  1160. }
  1161. .userprofile-content {
  1162. width: 83vw;
  1163. @media screen and(max-width:$moblie) {
  1164. width: 95vw;
  1165. }
  1166. .user-information {
  1167. .information {
  1168. width: 50%;
  1169. margin: 0 auto;
  1170. @media screen and(max-width:$moblie) {
  1171. width: 100%;
  1172. }
  1173. h1 {
  1174. color: #707070;
  1175. font-size: 56px;
  1176. }
  1177. .share {
  1178. font-size: 16px;
  1179. .facebook {
  1180. @media screen and(max-width:$moblie) {
  1181. left: 15px;
  1182. top: 1px;
  1183. }
  1184. }
  1185. a {
  1186. text-decoration: none;
  1187. color: #183790;
  1188. }
  1189. }
  1190. }
  1191. .card {
  1192. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  1193. border-radius: 15px;
  1194. }
  1195. .check-history {
  1196. cursor: pointer;
  1197. }
  1198. .historical-record {
  1199. th {
  1200. border-bottom: none !important;
  1201. color: #183790;
  1202. font-weight: 900;
  1203. }
  1204. td {
  1205. font-size: 15px;
  1206. }
  1207. }
  1208. .draft {
  1209. color: #183790;
  1210. font-weight: 900;
  1211. }
  1212. .draft-table {
  1213. th {
  1214. border-bottom: none !important;
  1215. color: #183790;
  1216. font-weight: 900;
  1217. }
  1218. .draft-content {
  1219. &-icon {
  1220. cursor: pointer;
  1221. }
  1222. }
  1223. }
  1224. }
  1225. }
  1226. }
  1227. // 側邊欄選單
  1228. .sidenav {
  1229. width: 250px;
  1230. position: fixed;
  1231. height: 100%;
  1232. z-index: 50;
  1233. top: 0;
  1234. overflow-x: hidden;
  1235. transition: 0.5s;
  1236. text-align: center;
  1237. background: linear-gradient(to bottom, #1c7ce0, #150051);
  1238. @media screen and(min-width:$desktop) {
  1239. left: 0;
  1240. }
  1241. @media screen and(max-width:767px) {
  1242. display: none;
  1243. right: 0px;
  1244. }
  1245. .sidenav-content {
  1246. // @media only screen and (min-width: 1439px) {
  1247. // transform: scale(1);
  1248. // }
  1249. // @media only screen and (max-width: 1280px) {
  1250. // margin-top: -50px;
  1251. // transform: scale(0.85);
  1252. // }
  1253. .close-btn {
  1254. @media screen and(min-width:$desktop) {
  1255. opacity: 0;
  1256. }
  1257. }
  1258. .Mobile-nav {
  1259. @media screen and(min-width:$desktop) {
  1260. display: none;
  1261. }
  1262. }
  1263. .choozmologo {
  1264. @media screen and(max-width:$moblie) {
  1265. margin-top: 10px;
  1266. }
  1267. }
  1268. .reply {
  1269. margin-left: 70px;
  1270. @media screen and(min-width:$desktop) {
  1271. display: none;
  1272. }
  1273. }
  1274. }
  1275. hr {
  1276. background: #fff;
  1277. opacity: 1 !important;
  1278. height: 1px;
  1279. width: 85%;
  1280. margin: 15px auto;
  1281. }
  1282. .sidebar {
  1283. width: 80%;
  1284. margin: 0 auto;
  1285. }
  1286. .user {
  1287. object-fit: cover;
  1288. width: 8vw;
  1289. @media screen and(max-width:767px) {
  1290. width: 20vw;
  1291. }
  1292. }
  1293. .user-name {
  1294. font-size: 1.5rem;
  1295. }
  1296. .navbar-nav {
  1297. flex-direction: row;
  1298. .btn-gocreate {
  1299. font-size: 1.7vmin;
  1300. background: linear-gradient(90deg, #0162c8, #55e7fc);
  1301. // background:#31426C;
  1302. color: white;
  1303. border: 0 none;
  1304. border-radius: 10px;
  1305. cursor: pointer;
  1306. margin: 10px 3px;
  1307. display: inline;
  1308. @media screen and(max-width:$moblie) {
  1309. font-size: 3.5vmin;
  1310. }
  1311. }
  1312. .active {
  1313. background: linear-gradient(90deg, #0162c8, #55e7fc);
  1314. }
  1315. }
  1316. a {
  1317. text-decoration: none;
  1318. font-size: 32px;
  1319. color: #f1f1f1;
  1320. display: block;
  1321. transition: 0.3s;
  1322. &:hover {
  1323. color: #818181;
  1324. }
  1325. }
  1326. .sidenav .closebtn {
  1327. position: absolute;
  1328. top: 0;
  1329. right: 25px;
  1330. font-size: 36px;
  1331. margin-left: 50px;
  1332. }
  1333. .nav-list {
  1334. color: white;
  1335. list-style: none;
  1336. text-align: center;
  1337. .nav-list-item {
  1338. font-size: 18px;
  1339. cursor: pointer;
  1340. position: relative;
  1341. }
  1342. .nav-list-item::after {
  1343. content: " ";
  1344. position: absolute;
  1345. width: 50%;
  1346. height: 100%;
  1347. left: 25%;
  1348. top: 5px;
  1349. border-bottom: 1px solid white;
  1350. opacity: 0;
  1351. transition: all 0.4s;
  1352. }
  1353. .nav-list-item:hover::after {
  1354. opacity: 1;
  1355. }
  1356. }
  1357. .right-text {
  1358. padding-top: 150px;
  1359. // position: absolute;
  1360. // bottom: 0;
  1361. // left: 0;
  1362. color: #fff;
  1363. @media screen and(max-width:$moblie) {
  1364. padding-top: 50px;
  1365. }
  1366. @media only screen and (max-width: 1280px) {
  1367. // left: 10px;
  1368. }
  1369. a {
  1370. font-size: 16px;
  1371. display: inline;
  1372. margin: 2px;
  1373. img {
  1374. filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(102deg) brightness(102%) contrast(101%);
  1375. }
  1376. }
  1377. p {
  1378. @media only screen and (max-width: 1280px) {
  1379. font-size: 16px;
  1380. }
  1381. }
  1382. }
  1383. }
  1384. // 首頁價格介紹
  1385. .price-int {
  1386. padding-bottom: 10vw;
  1387. .price-content {
  1388. width: 80vw;
  1389. @media screen and(max-width:767px) {
  1390. width: 90vw;
  1391. }
  1392. h1 {
  1393. text-align: center;
  1394. font-weight: 900;
  1395. font-size: 2rem;
  1396. }
  1397. .price-content-1 {
  1398. margin-top: 50px;
  1399. h2 {
  1400. margin-top: 15px;
  1401. font-weight: 600;
  1402. font-size: 1.3rem;
  1403. @media screen and(max-width:767px) {
  1404. font-size: 5.5vmin;
  1405. }
  1406. }
  1407. ul {
  1408. text-align: left;
  1409. li {
  1410. list-style-type: disc;
  1411. @media screen and(max-width:767px) {
  1412. font-size: 4.5vmin;
  1413. }
  1414. }
  1415. }
  1416. .price-text {
  1417. padding-left: 80px;
  1418. }
  1419. }
  1420. .get-started {
  1421. border: none;
  1422. border-radius: 3rem;
  1423. padding: 1rem 2.5rem;
  1424. background: linear-gradient(20deg, #ea5413, #920783);
  1425. color: #fff;
  1426. font-size: 1.2rem;
  1427. font-weight: 900;
  1428. }
  1429. p {
  1430. font-size: 24px;
  1431. }
  1432. }
  1433. }
  1434. .register_btn {
  1435. @media screen and(min-width:$desktop) {
  1436. display: none;
  1437. }
  1438. }
  1439. .register_text {
  1440. @media screen and(max-width:$moblie) {
  1441. display: none;
  1442. }
  1443. }
  1444. // 頁尾
  1445. .footer {
  1446. background-color: #f0f0f0;
  1447. padding: 3rem;
  1448. padding-left: 13rem;
  1449. @media screen and(max-width:767px) {
  1450. padding: 0.5rem;
  1451. text-align: center;
  1452. padding-top: 3rem;
  1453. padding-left: 0;
  1454. }
  1455. h5 {
  1456. font-size: 16px;
  1457. font-weight: 700;
  1458. color: #555555;
  1459. }
  1460. }
  1461. .footer .row {
  1462. display: flex;
  1463. align-items: center;
  1464. }
  1465. .footer .footer-aigirl {
  1466. font-weight: 600;
  1467. font-size: 1.5rem;
  1468. margin-top: 1rem;
  1469. margin-bottom: 2.5rem;
  1470. color: #555555;
  1471. @media screen and(max-width:767px) {
  1472. font-size: 1.3rem;
  1473. margin-bottom: 2rem;
  1474. }
  1475. }
  1476. .footer .footer-follow {
  1477. font-size: 1rem;
  1478. margin-bottom: 1rem;
  1479. }
  1480. .footer-socials {
  1481. @media screen and(max-width:767px) {
  1482. margin-bottom: 2rem;
  1483. }
  1484. }
  1485. .footer .footer-socials a {
  1486. margin-right: 5px;
  1487. @media screen and(max-width:767px) {
  1488. margin-right: 10px;
  1489. }
  1490. }
  1491. .footer-contacts {
  1492. @media screen and(max-width:767px) {
  1493. font-size: 14px;
  1494. }
  1495. }
  1496. // 登入頁面
  1497. // 行動版彈跳式選單
  1498. .menu-box {
  1499. width: 40vw;
  1500. right: 0px;
  1501. position: fixed;
  1502. z-index: 20;
  1503. overflow: hidden;
  1504. display: none;
  1505. @media screen and(min-width:$desktop) {
  1506. display: none;
  1507. }
  1508. .menu-box2 {
  1509. padding-bottom: 5vw;
  1510. position: relative;
  1511. width: 40vw;
  1512. background: linear-gradient(to bottom, #1c7ce0, #150051);
  1513. z-index: 7;
  1514. text-align: center;
  1515. a {
  1516. display: inline-block;
  1517. text-decoration: none;
  1518. color: #fff;
  1519. font-size: 18px;
  1520. text-align: center;
  1521. }
  1522. }
  1523. }