style.scss 22 KB

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