style.scss 23 KB

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