style.scss 27 KB

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