style.scss 23 KB

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