style.scss 23 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486
  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: 3rem;
  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. #avatarmega .modal-content {
  553. background-color: transparent;
  554. border: none;
  555. }
  556. #avatarmega .modal-title {
  557. color: white;
  558. }
  559. #avatarmega .btn-close {
  560. background: none;
  561. }
  562. #avatarmega .modal-header {
  563. position: absolute;
  564. top: -0.5rem;
  565. right: 1.5rem;
  566. }
  567. .linker__box {
  568. padding: 0.5rem 1rem;
  569. border-radius: 1rem;
  570. box-shadow: 1px 1px 5px 1px rgb(201, 201, 201);
  571. width: max-content;
  572. margin: 0 auto;
  573. display: none;
  574. }
  575. .linker__box p {
  576. margin-bottom: 0;
  577. color: gray;
  578. }
  579. .linker__box i {
  580. color: gray;
  581. position: relative;
  582. }
  583. .linker__box i::after {
  584. position: absolute;
  585. content: " ";
  586. right: -5px;
  587. top: -10%;
  588. border-right: 2px solid rgb(163, 163, 163);
  589. width: 1px;
  590. height: 120%;
  591. }
  592. .item_imgfr {
  593. width: 15%;
  594. height: 50px;
  595. border-radius: 50%;
  596. overflow: hidden;
  597. margin: auto 0.5rem;
  598. }
  599. .item_imgfr img {
  600. height: 100%;
  601. width: 100%;
  602. }
  603. .content-box {
  604. width: 75%;
  605. }
  606. .box-title {
  607. margin-bottom: 0.2rem;
  608. cursor: pointer;
  609. }
  610. .box-title:hover {
  611. color: grey;
  612. text-decoration: underline;
  613. }
  614. .box-link {
  615. cursor: pointer;
  616. }
  617. .img_uploader {
  618. display: none;
  619. }
  620. #msform input[type="text"].imgsrc {
  621. width: calc(100% - 8rem);
  622. margin-right: 5px;
  623. }
  624. .upload-btn {
  625. display: inline-block;
  626. width: 6rem;
  627. background-color: #75a7dd;
  628. color: white;
  629. padding: 0.4rem 0.5rem;
  630. font-size: 0.9rem;
  631. border-radius: 3px;
  632. transition: all 0.3s;
  633. cursor: pointer;
  634. }
  635. .upload-btn img {
  636. width: 30px;
  637. height: 30px;
  638. }
  639. .upload-btn:hover {
  640. background-color: #3b86d6;
  641. }
  642. .add,
  643. .add-subline,
  644. .addimg {
  645. cursor: pointer;
  646. display: inline-block;
  647. width: 2rem;
  648. height: 2rem;
  649. background-color: #67abf3;
  650. font-size: 1.2rem;
  651. color: white;
  652. border-radius: 50%;
  653. transition: all 0.3s;
  654. }
  655. .add:hover,
  656. .add-subline:hover,
  657. .addimg:hover {
  658. background-color: #398ee9;
  659. }
  660. body {
  661. font-family: "Lato", sans-serif;
  662. }
  663. .sidenav {
  664. height: 100%;
  665. width: 250px;
  666. position: fixed;
  667. z-index: 1;
  668. top: 0;
  669. left: 0;
  670. background: linear-gradient(to bottom, #1c7ce0, #150051);
  671. overflow-x: hidden;
  672. transition: 0.5s;
  673. }
  674. .sidenav a {
  675. text-decoration: none;
  676. font-size: 25px;
  677. color: #818181;
  678. display: block;
  679. transition: 0.3s;
  680. }
  681. .sidenav a:hover {
  682. color: #f1f1f1;
  683. }
  684. .sidenav .closebtn {
  685. position: absolute;
  686. top: 0;
  687. right: 25px;
  688. font-size: 36px;
  689. margin-left: 50px;
  690. }
  691. .container-login {
  692. width: 100vw;
  693. height: 100vh;
  694. display: grid;
  695. grid-template-columns: repeat(2, 1fr);
  696. grid-gap: 7rem;
  697. padding: 0rem;
  698. }
  699. .navbar-nav button {
  700. background: white;
  701. border: none;
  702. outline: none;
  703. }
  704. .img-wave {
  705. position: fixed;
  706. bottom: 0;
  707. left: 0;
  708. height: 100%;
  709. z-index: -1;
  710. }
  711. .img-wave-profile {
  712. height: 80%;
  713. }
  714. .row-img {
  715. position: relative;
  716. display: flex;
  717. justify-content: center;
  718. align-items: center;
  719. background-image: linear-gradient(to right bottom, rgba(#10448e, 0.7), rgba(#10448e, 0.7));
  720. background-size: cover;
  721. background-position: center;
  722. overflow: hidden;
  723. .video {
  724. height: 100%;
  725. z-index: -1;
  726. position: absolute;
  727. left: -10%;
  728. top: 0;
  729. }
  730. .row-img-box {
  731. color: white;
  732. }
  733. .row-img-txt {
  734. position: absolute;
  735. bottom: 2rem;
  736. color: white;
  737. left: 2rem;
  738. font-size: 1.3rem;
  739. }
  740. }
  741. .row-login {
  742. display: flex;
  743. justify-content: flex-start;
  744. align-items: center;
  745. text-align: center;
  746. position: relative;
  747. .title {
  748. position: relative;
  749. color: #052859;
  750. &::after {
  751. position: absolute;
  752. content: "";
  753. left: 45%;
  754. top: 20%;
  755. width: 10%;
  756. height: 100%;
  757. border-bottom: 4px solid #052859;
  758. }
  759. }
  760. .login-top {
  761. position: absolute;
  762. right: 1rem;
  763. top: 1rem;
  764. .navbar-nav {
  765. flex-direction: row;
  766. .nav-item {
  767. margin: 0 0.5rem;
  768. a {
  769. color: black;
  770. }
  771. }
  772. }
  773. }
  774. }
  775. .login-content {
  776. width: 80%;
  777. min-width: 350px;
  778. box-shadow: 0 0 12px 5px rgb(221, 221, 221);
  779. padding: 1.5rem;
  780. border-radius: 2rem;
  781. }
  782. .link_privacy {
  783. color: black;
  784. }
  785. .login-content img {
  786. height: 80px;
  787. }
  788. .row-img img {
  789. width: 450px;
  790. }
  791. .login-content .form-floating input {
  792. border: none;
  793. border-bottom: 2px solid #d9d9d9;
  794. border-radius: 0;
  795. }
  796. .login-content .form-floating input:focus {
  797. box-shadow: none;
  798. }
  799. .login-content #btn_login {
  800. background: linear-gradient(90deg, #0162c8, #55e7fc);
  801. font-weight: bold;
  802. color: white;
  803. border: 0 none;
  804. border-radius: 40px;
  805. cursor: pointer;
  806. padding: 10px 50px;
  807. margin: 10px auto;
  808. display: block;
  809. }
  810. .login-content #btn_login:hover {
  811. box-shadow: 0 0 0 2px white, 0 0 0 3px #1c7ce0;
  812. }
  813. .login-content .btn-register {
  814. background: linear-gradient(90deg, #0162c8, #55e7fc);
  815. font-weight: bold;
  816. color: white;
  817. border: 0 none;
  818. border-radius: 40px;
  819. cursor: pointer;
  820. padding: 10px 50px;
  821. margin: 10px auto;
  822. display: block;
  823. }
  824. .login-content .btn-register:hover {
  825. box-shadow: 0 0 0 2px white, 0 0 0 3px #1c7ce0;
  826. }
  827. .login-content .nav-tabs {
  828. border-bottom: none;
  829. }
  830. .login-content .nav {
  831. flex-direction: column;
  832. align-items: center;
  833. }
  834. .login-content .nav-tabs .nav-link {
  835. color: grey;
  836. }
  837. .login-content .nav-tabs .nav-link.active {
  838. border-color: #fff;
  839. text-transform: uppercase;
  840. color: black;
  841. }
  842. .navbar .btn-gocreate {
  843. background: linear-gradient(90deg, #0162c8, #55e7fc);
  844. color: white;
  845. border: 0 none;
  846. border-radius: 40px;
  847. cursor: pointer;
  848. padding: 10px 50px;
  849. }
  850. .container-bg {
  851. position: absolute;
  852. width: 600px;
  853. height: 400px;
  854. right: 0;
  855. bottom: 0;
  856. z-index: -1;
  857. }
  858. .container-profile .card-profile {
  859. margin-top: 4rem;
  860. border-radius: 10px;
  861. padding: 2rem;
  862. text-align: center;
  863. box-shadow: 0px 0px 20px 1px rgb(180, 180, 180);
  864. }
  865. .container-profile .card-profile img {
  866. width: 120px;
  867. margin: 1rem auto;
  868. }
  869. .card-profile-txt {
  870. color: rgb(109, 109, 109);
  871. font-size: 1.2rem;
  872. font-weight: 500;
  873. }
  874. .card-profile-cnt {
  875. font-size: 1.5rem;
  876. font-weight: 700;
  877. }
  878. @media screen and (max-width: 900px) {
  879. .container-login {
  880. grid-template-columns: 1fr;
  881. }
  882. .row-img {
  883. display: none;
  884. }
  885. .img-wave {
  886. display: none;
  887. }
  888. .row-login {
  889. justify-content: center;
  890. }
  891. .container-bg {
  892. width: 400px;
  893. height: 300px;
  894. right: 0;
  895. bottom: 0;
  896. }
  897. }
  898. @media screen and (max-height: 450px) {
  899. .sidenav {
  900. padding-top: 15px;
  901. }
  902. .sidenav a {
  903. font-size: 18px;
  904. }
  905. }
  906. /* Pricing */
  907. .pricingTable {
  908. background: #fff;
  909. font-family: "Open Sans", sans-serif;
  910. text-align: center;
  911. padding: 30px 15px 15px;
  912. border-radius: 25px;
  913. overflow: hidden;
  914. position: relative;
  915. z-index: 1;
  916. }
  917. .pricingTable:before,
  918. .pricingTable:after {
  919. content: "";
  920. background: linear-gradient(-45deg, #5a98fb, #5a98fb, #3f64fa, #3f64fa);
  921. height: 170px;
  922. width: 150%;
  923. outline: 5px solid #fff;
  924. outline-offset: -10px;
  925. opacity: 0.9;
  926. transform: translateX(-50%) rotate(7deg);
  927. position: absolute;
  928. left: 50%;
  929. top: -65px;
  930. z-index: -1;
  931. }
  932. .pricingTable:after {
  933. height: 250px;
  934. transform: translateX(-50%) rotate(-20deg) rotateX(180deg);
  935. top: auto;
  936. bottom: -150px;
  937. }
  938. .pricingTable .pricingTable-header {
  939. color: #fff;
  940. margin: 0 0 75px;
  941. }
  942. .pricingTable .title {
  943. font-size: 40px;
  944. font-weight: 700;
  945. text-transform: uppercase;
  946. letter-spacing: 1px;
  947. margin: 0;
  948. @media screen and(max-width:767px) {
  949. font-size: 30px;
  950. }
  951. }
  952. .pricingTable .pricing-content {
  953. text-align: left;
  954. padding: 0;
  955. margin: 0 0 10px;
  956. display: inline-block;
  957. }
  958. .pricingTable .pricing-content li {
  959. color: #333;
  960. font-size: 17px;
  961. font-weight: 500;
  962. line-height: 22px;
  963. text-transform: uppercase;
  964. padding: 0 40px 0 0;
  965. margin: 0 0 15px;
  966. list-style-position: inside;
  967. position: relative;
  968. }
  969. .pricingTable .pricing-content li:after {
  970. content: "\f00c";
  971. color: #e58e26;
  972. font-family: "Font Awesome 5 Free";
  973. font-size: 18px;
  974. font-weight: 900;
  975. position: absolute;
  976. top: 0;
  977. right: 0;
  978. }
  979. .pricingTable .pricing-content li.disable:after {
  980. content: "\f00d";
  981. }
  982. .pricingTable .price-value {
  983. margin: 0 0 15px;
  984. }
  985. .pricingTable .price-title {
  986. color: #c70039;
  987. font-size: 30px;
  988. text-align: left;
  989. text-transform: uppercase;
  990. line-height: 30px;
  991. width: calc(100% - 130px);
  992. padding: 15px 0 0;
  993. display: inline-block;
  994. }
  995. .pricingTable .price-title b {
  996. display: block;
  997. }
  998. .pricingTable .price-amount {
  999. color: #3f64fa;
  1000. background: #fff;
  1001. font-size: 30px;
  1002. font-weight: 700;
  1003. line-height: 30px;
  1004. width: 120px;
  1005. height: 120px;
  1006. padding: 33px 10px 10px;
  1007. display: inline-block;
  1008. vertical-align: top;
  1009. clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);
  1010. position: relative;
  1011. z-index: 1;
  1012. }
  1013. .pricingTable .price-amount:before,
  1014. .pricingTable .price-amount:after {
  1015. content: "";
  1016. background: linear-gradient(-45deg, #5a98fb, #5a98fb, #3f64fa, #3f64fa);
  1017. width: calc(100% - 12px);
  1018. height: calc(100% - 12px);
  1019. transform: translateX(-50%) translateY(-50%);
  1020. position: absolute;
  1021. top: 50%;
  1022. left: 50%;
  1023. z-index: -1;
  1024. clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);
  1025. }
  1026. .pricingTable .price-amount:after {
  1027. background: #fff;
  1028. width: calc(100% - 16px);
  1029. height: calc(100% - 16px);
  1030. }
  1031. .pricingTable .price-amount .duration {
  1032. font-size: 16px;
  1033. font-weight: 600;
  1034. text-transform: capitalize;
  1035. display: block;
  1036. }
  1037. .pricingTable .pricingTable-signup a {
  1038. color: #fff;
  1039. font-size: 20px;
  1040. font-weight: 700;
  1041. letter-spacing: 2px;
  1042. text-transform: uppercase;
  1043. padding: 10px 20px;
  1044. border: 2px solid #fff;
  1045. border-radius: 50px;
  1046. display: inline-block;
  1047. transition: all 0.3s;
  1048. }
  1049. .pricingTable .pricingTable-signup a:hover {
  1050. text-shadow: 3px 3px 1px rgba(0, 0, 0, 0.5);
  1051. box-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
  1052. }
  1053. .pricingTable.green:before,
  1054. .pricingTable.green:after,
  1055. .pricingTable.green .price-amount:before {
  1056. background: linear-gradient(-45deg, #76d243, #76d243, #109739, #109739);
  1057. }
  1058. .pricingTable.green .price-amount {
  1059. color: #109739;
  1060. }
  1061. .pricingTable.pink:before,
  1062. .pricingTable.pink:after,
  1063. .pricingTable.pink .price-amount:before {
  1064. background: linear-gradient(-45deg, #e969a6, #e969a6, #ed2e96, #ed2e96);
  1065. }
  1066. .pricingTable.pink .price-amount {
  1067. color: #ed2e96;
  1068. }
  1069. @media only screen and (max-width: 990px) {
  1070. .pricingTable {
  1071. margin: 0 0 40px;
  1072. }
  1073. }
  1074. // new user_profile
  1075. .navbar {
  1076. background: none !important;
  1077. }
  1078. .arrowdoup{
  1079. transform: rotate(180deg);
  1080. }
  1081. .arrowdown {
  1082. cursor: pointer;
  1083. }
  1084. .userprofile {
  1085. position: relative;
  1086. top: -80px;
  1087. z-index: 20;
  1088. .userprofile-content {
  1089. width: 83vw;
  1090. .user-information {
  1091. .information {
  1092. width: 50%;
  1093. margin: 0 auto;
  1094. h1{
  1095. color:#707070;
  1096. font-size: 56px;
  1097. }
  1098. .share{
  1099. font-size: 16px;
  1100. a{
  1101. text-decoration: none;
  1102. color:#183790;
  1103. }
  1104. }
  1105. }
  1106. .card{
  1107. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  1108. border-radius: 15px;
  1109. }
  1110. .check-history{
  1111. cursor: pointer;
  1112. }
  1113. .historical-record{
  1114. th{
  1115. border-bottom: none !important;
  1116. color:#183790;
  1117. font-weight: 900;
  1118. }
  1119. td{
  1120. font-size: 15px;
  1121. }
  1122. }
  1123. .draft {
  1124. color:#183790;
  1125. font-weight: 900;
  1126. }
  1127. .draft-table {
  1128. th {
  1129. border-bottom: none !important;
  1130. color:#183790;
  1131. font-weight: 900;
  1132. }
  1133. .draft-content {
  1134. &-icon {
  1135. cursor: pointer;
  1136. }
  1137. }
  1138. }
  1139. }
  1140. }
  1141. }
  1142. // 側邊欄選單
  1143. .sidenav {
  1144. height: 100%;
  1145. width: 250px;
  1146. position: fixed;
  1147. z-index: 50;
  1148. top: 0;
  1149. left: 0;
  1150. background: linear-gradient(to bottom, #1c7ce0, #150051);
  1151. overflow-x: hidden;
  1152. transition: 0.5s;
  1153. text-align: center;
  1154. hr {
  1155. background: #fff;
  1156. opacity: 1 !important;
  1157. height: 1px;
  1158. width: 85%;
  1159. margin: 15px auto;
  1160. }
  1161. .sidebar {
  1162. width: 80%;
  1163. margin: 0 auto;
  1164. }
  1165. .user {
  1166. object-fit: cover;
  1167. width: 100px;
  1168. }
  1169. .user-name {
  1170. font-size: 1.5rem;
  1171. }
  1172. .navbar-nav {
  1173. flex-direction: row;
  1174. .btn-gocreate {
  1175. font-size: 14px;
  1176. background: linear-gradient(90deg, #0162c8, #55e7fc);
  1177. // background:#31426C;
  1178. color: white;
  1179. border: 0 none;
  1180. border-radius: 10px;
  1181. cursor: pointer;
  1182. margin: 10px 3px;
  1183. display: inline;
  1184. }
  1185. .active {
  1186. background: linear-gradient(90deg, #0162c8, #55e7fc);
  1187. }
  1188. }
  1189. a {
  1190. text-decoration: none;
  1191. font-size: 32px;
  1192. color: #f1f1f1;
  1193. display: block;
  1194. transition: 0.3s;
  1195. &:hover {
  1196. color: #818181;
  1197. }
  1198. }
  1199. .sidenav .closebtn {
  1200. position: absolute;
  1201. top: 0;
  1202. right: 25px;
  1203. font-size: 36px;
  1204. margin-left: 50px;
  1205. }
  1206. .nav-list {
  1207. color: white;
  1208. list-style: none;
  1209. text-align: center;
  1210. .nav-list-item {
  1211. font-size: 1.2rem;
  1212. cursor: pointer;
  1213. position: relative;
  1214. }
  1215. .nav-list-item::after {
  1216. content: " ";
  1217. position: absolute;
  1218. width: 50%;
  1219. height: 100%;
  1220. left: 25%;
  1221. top: 5px;
  1222. border-bottom: 1px solid white;
  1223. opacity: 0;
  1224. transition: all 0.4s;
  1225. }
  1226. .nav-list-item:hover::after {
  1227. opacity: 1;
  1228. }
  1229. }
  1230. .right-text {
  1231. position: absolute;
  1232. bottom: 0;
  1233. left: 0;
  1234. color: #fff;
  1235. a {
  1236. font-size: 18px;
  1237. display: inline;
  1238. margin: 2px;
  1239. img {
  1240. filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(102deg) brightness(102%) contrast(101%);
  1241. }
  1242. }
  1243. }
  1244. }
  1245. // 首頁價格介紹
  1246. .price-int {
  1247. padding-bottom: 10vw;
  1248. .price-content {
  1249. width: 80vw;
  1250. @media screen and(max-width:767px) {
  1251. width: 90vw;
  1252. }
  1253. h1 {
  1254. text-align: center;
  1255. font-weight: 900;
  1256. font-size: 2rem;
  1257. }
  1258. .price-content-1 {
  1259. margin-top: 50px;
  1260. h2 {
  1261. margin-top: 15px;
  1262. font-weight: 600;
  1263. font-size: 1.3rem;
  1264. @media screen and(max-width:767px) {
  1265. font-size: 5.5vmin;
  1266. }
  1267. }
  1268. ul {
  1269. text-align: left;
  1270. li {
  1271. list-style-type: disc;
  1272. @media screen and(max-width:767px) {
  1273. font-size: 4.5vmin;
  1274. }
  1275. }
  1276. }
  1277. .price-text{
  1278. padding-left: 80px;
  1279. }
  1280. }
  1281. .get-started{
  1282. border:none;
  1283. border-radius: 3rem;
  1284. padding: 1rem 2.5rem;
  1285. background: linear-gradient(20deg, #EA5413, #920783);
  1286. color:#fff;
  1287. font-size: 1.2rem;
  1288. font-weight: 900;
  1289. }
  1290. p{
  1291. font-size: 24px;
  1292. }
  1293. }
  1294. }
  1295. // 頁尾
  1296. .footer {
  1297. background-color: #F0F0F0;
  1298. padding:3rem;
  1299. padding-left: 13rem;
  1300. @media screen and(max-width:767px) {
  1301. padding: 0.5rem;
  1302. text-align: center;
  1303. padding-top: 3rem;
  1304. padding-left:0;
  1305. }
  1306. h5{
  1307. font-size: 16px;
  1308. font-weight: 700;
  1309. color:#555555;
  1310. }
  1311. }
  1312. .footer .row{
  1313. display: flex;
  1314. align-items: center;
  1315. }
  1316. .footer .footer-aigirl {
  1317. font-weight: 600;
  1318. font-size: 1.5rem;
  1319. margin-top: 1rem;
  1320. margin-bottom: 2.5rem;
  1321. color:#555555;
  1322. @media screen and(max-width:767px) {
  1323. font-size: 1.3rem;
  1324. margin-bottom: 2rem;
  1325. }
  1326. }
  1327. .footer .footer-follow {
  1328. font-size: 1rem;
  1329. margin-bottom: 1rem;
  1330. }
  1331. .footer-socials{
  1332. @media screen and(max-width:767px) {
  1333. margin-bottom: 2rem;
  1334. }
  1335. }
  1336. .footer .footer-socials a{
  1337. margin-right: 5px;
  1338. @media screen and(max-width:767px) {
  1339. margin-right: 10px;
  1340. }
  1341. }
  1342. .footer-contacts{
  1343. @media screen and(max-width:767px) {
  1344. font-size: 14px;
  1345. }
  1346. }