style.scss 23 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478
  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. position: absolute;
  1226. bottom: 0;
  1227. left: 0;
  1228. color: #fff;
  1229. a {
  1230. font-size: 18px;
  1231. display: inline;
  1232. margin: 2px;
  1233. img {
  1234. filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(102deg) brightness(102%) contrast(101%);
  1235. }
  1236. }
  1237. }
  1238. }
  1239. // 首頁價格介紹
  1240. .price-int {
  1241. padding-bottom: 10vw;
  1242. .price-content {
  1243. width: 80vw;
  1244. @media screen and(max-width:767px) {
  1245. width: 90vw;
  1246. }
  1247. h1 {
  1248. text-align: center;
  1249. font-weight: 900;
  1250. font-size: 2rem;
  1251. }
  1252. .price-content-1 {
  1253. margin-top: 50px;
  1254. h2 {
  1255. margin-top: 15px;
  1256. font-weight: 600;
  1257. font-size: 1.3rem;
  1258. @media screen and(max-width:767px) {
  1259. font-size: 5.5vmin;
  1260. }
  1261. }
  1262. ul {
  1263. text-align: left;
  1264. li {
  1265. list-style-type: disc;
  1266. @media screen and(max-width:767px) {
  1267. font-size: 4.5vmin;
  1268. }
  1269. }
  1270. }
  1271. .price-text{
  1272. padding-left: 80px;
  1273. }
  1274. }
  1275. .get-started{
  1276. border:none;
  1277. border-radius: 3rem;
  1278. padding: 1rem 2.5rem;
  1279. background: linear-gradient(20deg, #EA5413, #920783);
  1280. color:#fff;
  1281. font-size: 1.2rem;
  1282. font-weight: 900;
  1283. }
  1284. p{
  1285. font-size: 24px;
  1286. }
  1287. }
  1288. }
  1289. // 頁尾
  1290. .footer {
  1291. background-color: #F0F0F0;
  1292. padding:3rem;
  1293. padding-left: 13rem;
  1294. @media screen and(max-width:767px) {
  1295. padding: 0.5rem;
  1296. text-align: center;
  1297. padding-top: 3rem;
  1298. padding-left:0;
  1299. }
  1300. h5{
  1301. font-size: 16px;
  1302. font-weight: 700;
  1303. color:#555555;
  1304. }
  1305. }
  1306. .footer .row{
  1307. display: flex;
  1308. align-items: center;
  1309. }
  1310. .footer .footer-aigirl {
  1311. font-weight: 600;
  1312. font-size: 1.5rem;
  1313. margin-top: 1rem;
  1314. margin-bottom: 2.5rem;
  1315. color:#555555;
  1316. @media screen and(max-width:767px) {
  1317. font-size: 1.3rem;
  1318. margin-bottom: 2rem;
  1319. }
  1320. }
  1321. .footer .footer-follow {
  1322. font-size: 1rem;
  1323. margin-bottom: 1rem;
  1324. }
  1325. .footer-socials{
  1326. @media screen and(max-width:767px) {
  1327. margin-bottom: 2rem;
  1328. }
  1329. }
  1330. .footer .footer-socials a{
  1331. margin-right: 5px;
  1332. @media screen and(max-width:767px) {
  1333. margin-right: 10px;
  1334. }
  1335. }
  1336. .footer-contacts{
  1337. @media screen and(max-width:767px) {
  1338. font-size: 14px;
  1339. }
  1340. }