style.scss 24 KB

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