style.scss 24 KB

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