Advertisement
zbiku25

Kod css

Feb 13th, 2023
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 29.31 KB | None | 0 0
  1. *
  2. {
  3. box-sizing:border-box;
  4. font-size:16px;
  5. margin:0;
  6. font-family:Helvetica;
  7. }
  8.  
  9. /*Strona Główna*/
  10.  
  11. .container
  12. {
  13. max-width:100%;
  14. }
  15.  
  16.  
  17.  
  18. @media screen and (max-width:1000px)
  19. {
  20.  
  21. nav
  22. {
  23. display:flex;
  24. height: 90px;
  25. justify-content:space-around;
  26. border-bottom:1px solid #ccc;
  27. }
  28.  
  29. .logo
  30. {
  31. font-size:1.8rem;
  32. font-weight:600;
  33. margin-left:10px;
  34. display:flex;
  35. align-items:center;
  36. position:relative;
  37. }
  38.  
  39. #menu
  40. {
  41. position:fixed;
  42. top:90px;
  43. width:100%;
  44. left:0;
  45. transition:.25s;
  46. z-index:99999;
  47.  
  48. }
  49.  
  50. #menu ul
  51. {
  52. width:100%;
  53. padding: 0;
  54. margin: 0;
  55. }
  56.  
  57. #menu ul li
  58. {
  59. border:1px solid white;
  60. font-weight:600;
  61. justify-content:center;
  62. padding:15px;
  63. text-align:center;
  64. background-color:#232F3E;
  65. list-style:none;
  66. }
  67.  
  68. #menu ul li:hover
  69. {
  70. border:1px solid white;
  71. font-weight:600;
  72. justify-content:center;
  73. padding:15px;
  74. text-align:center;
  75. background-color:#232F3E;
  76. list-style:none;
  77. }
  78.  
  79. nav a
  80. {
  81. text-decoration:none;
  82. color:white;
  83. font-size:1.2rem;
  84. color: white;
  85. }
  86.  
  87. nav a:active
  88. {
  89. color:#D90A2C;
  90. }
  91.  
  92. nav a:hover
  93. {
  94. color:#D90A2C;
  95. transition: 0.2s;
  96. }
  97.  
  98. .hamb
  99. {
  100. display:flex;
  101. align-items:center;
  102. }
  103.  
  104. .hamb input[type=checkbox]
  105. {
  106. cursor:pointer;
  107. display:none;
  108.  
  109. }
  110.  
  111. .hamb:has(input[type="checkbox"]:checked) + #menu
  112. {
  113. transform:translatex(-100%);
  114. }
  115.  
  116. .hamb label
  117. {
  118. cursor:pointer;
  119. }
  120. }
  121.  
  122. @media screen and (min-width:1000px)
  123. {
  124.  
  125. nav
  126. {
  127. display:flex;
  128. height: 90px;
  129. align-items:center;
  130. justify-content:space-evenly;
  131. border-bottom:1px solid #ccc;
  132. }
  133.  
  134. #menu ul li
  135. {
  136. display:inline-block;
  137. margin:15px;
  138. font-weight:600;
  139. font-size:14px;
  140. justify-content:center;
  141. }
  142.  
  143. nav a
  144. {
  145. text-decoration:none;
  146. color:black;
  147. }
  148.  
  149. nav a:active
  150. {
  151. color:#D90A2C;
  152. }
  153.  
  154. nav a:hover
  155. {
  156. color:#D90A2C;
  157. transition: 0.2s;
  158. }
  159.  
  160. .logo
  161. {
  162. font-size:1.8rem;
  163. font-weight:600;
  164. margin-left:10px;
  165. }
  166.  
  167. .hamb
  168. {
  169. display:none;
  170. }
  171.  
  172. }
  173.  
  174.  
  175. .purple
  176. {
  177. color:#D90A2C;
  178. font-size:1.8rem;
  179. font-weight:600;
  180. }
  181.  
  182. .grey
  183. {
  184. color:grey;
  185. font-size:1.3rem;
  186. font-weight:600;
  187. }
  188.  
  189. .menu ul
  190. {
  191. list-style:none;
  192. }
  193.  
  194.  
  195.  
  196.  
  197. .intro
  198. {
  199. flex-wrap:wrap;
  200. max-width:1100px;
  201. display:flex;
  202. margin-right:auto;
  203. margin-left:auto;
  204. height:400px;
  205. padding-left:10px;
  206. }
  207.  
  208. a.none
  209. {
  210. margin-top:30px;
  211. text-decoration:none;
  212. color:black;
  213. font-size:1.4rem;
  214. display:flex;
  215. align-items:center;
  216. transition:all 1s ease;
  217. }
  218.  
  219. a.none:hover
  220. {
  221. color:#D90A2C;
  222. transform:scale(1.1);
  223. }
  224.  
  225. .half
  226. {
  227.  
  228. display:flex;
  229. width:50%;
  230. flex-direction:column;
  231. min-width:350px;
  232.  
  233. }
  234.  
  235. .half-intro
  236. {
  237. padding:20px 0 40px 0;
  238. display:flex;
  239. align-items: center;
  240. font-size:1.1rem;
  241. font-weight:600;
  242. }
  243.  
  244.  
  245.  
  246.  
  247. @media screen and (min-width:351px)
  248. {
  249. .half-second img
  250. {
  251. height: auto;
  252. width: 100%;
  253. z-index:-50;
  254. margin-top:-30px;
  255.  
  256. }
  257.  
  258. .half-second
  259. {
  260.  
  261. display:flex;
  262. align-items:center;
  263. width:50%;
  264. }
  265. }
  266.  
  267. @media screen and (max-width:350px)
  268. {
  269. .half-second img
  270. {
  271. display:none;
  272. visibility:hidden;
  273.  
  274. }
  275.  
  276. .half-second
  277. {
  278.  
  279. display:none;
  280. visibility:hidden;
  281.  
  282. }
  283. }
  284.  
  285.  
  286.  
  287. .center
  288. {
  289. padding-top:50px;
  290. display:flex;
  291. justify-content:center;
  292. align-items: center;
  293. background-color:#F9F9F9;
  294. }
  295.  
  296. .only-center
  297. {
  298. display:flex;
  299. justify-content:center;
  300. margin-top:30px;
  301. }
  302.  
  303. .only-center img
  304. {
  305.  
  306. height:3rem;
  307. width:auto;
  308. }
  309.  
  310. #mymove
  311. {
  312. position: relative;
  313. animation: mymove 3s infinite;
  314. }
  315.  
  316. @keyframes mymove
  317. {
  318. 0%
  319. {
  320. top: 0px;
  321. opacity: 1;
  322. }
  323. 33%
  324. {
  325. top: 20px;
  326. opacity: 0.2;
  327. }
  328. 100%
  329. {
  330. top: 0px;
  331. opacity: 1;
  332. }
  333. }
  334.  
  335. img
  336. {
  337. display:block;
  338. width:100%;
  339. }
  340.  
  341. .choose
  342. {
  343. flex-wrap:wrap;
  344. background-color:#F9F9F9;
  345. display:flex;
  346. justify-content: center;
  347. margin:-10px auto 0 auto;
  348. padding-bottom:100px;
  349. }
  350.  
  351. .cardcontainer
  352. {
  353. min-width:250px;
  354. height:320px;
  355. position:relative;
  356. margin:20px 30px 0 0;
  357. padding-bottom:30px;
  358. }
  359.  
  360. .card
  361. {
  362.  
  363. width:100%;
  364. height:100%;
  365. transform-style: preserve-3d;
  366. transition: all 1s ease;
  367. position:absolute;
  368. }
  369.  
  370. .card:hover
  371. {
  372. transform:rotateY(180deg);
  373. }
  374.  
  375. .front
  376. {
  377. display:flex;
  378. align-items:flex-end;
  379. justify-content:center;
  380. position:absolute;
  381. width:100%;
  382. height:100%;
  383. backface-visibility:hidden;
  384. background-image:url('images/card-akor.jpg');
  385. border-radius:10px;
  386. -webkit-box-shadow: 8px 8px 24px 0px rgba(66, 68, 90, 1);
  387. -moz-box-shadow: 8px 8px 24px 0px rgba(66, 68, 90, 1);
  388. box-shadow: 8px 8px 24px 0px rgba(66, 68, 90, 1);
  389. }
  390.  
  391. .front2
  392. {
  393. display:flex;
  394. align-items:flex-end;
  395. justify-content:center;
  396. position:absolute;
  397. width:100%;
  398. height:100%;
  399. backface-visibility:hidden;
  400. background-image:url('images/card-store.jpg');
  401. border-radius:10px;
  402. -webkit-box-shadow: 8px 8px 24px 0px rgba(66, 68, 90, 1);
  403. -moz-box-shadow: 8px 8px 24px 0px rgba(66, 68, 90, 1);
  404. box-shadow: 8px 8px 24px 0px rgba(66, 68, 90, 1);
  405. }
  406.  
  407. .front3
  408. {
  409. display:flex;
  410. align-items:flex-end;
  411. justify-content:center;
  412. position:absolute;
  413. width:100%;
  414. height:100%;
  415. backface-visibility:hidden;
  416. background-image:url('images/card-learn.jpg');
  417. border-radius:10px;
  418. -webkit-box-shadow: 8px 8px 24px 0px rgba(66, 68, 90, 1);
  419. -moz-box-shadow: 8px 8px 24px 0px rgba(66, 68, 90, 1);
  420. box-shadow: 8px 8px 24px 0px rgba(66, 68, 90, 1);
  421. }
  422.  
  423. .main-desc
  424. {
  425. padding:10px;
  426. position:bottom;
  427. width:100%;
  428. min-height:20%;
  429. text-align:center;
  430. background: rgba(217, 10, 44, .5);
  431. color:white;
  432. font-weight:bold;
  433. font-size:1.4rem;
  434. display:flex;
  435. align-items:center;
  436. justify-content:center;
  437. }
  438.  
  439.  
  440.  
  441.  
  442.  
  443.  
  444. .insidea
  445. {
  446. position:absolute;
  447. }
  448.  
  449. .back
  450. {
  451.  
  452. position:absolute;
  453. width:100%;
  454. height:100%;
  455. backface-visibility:hidden;
  456. background-color: rgba(250, 19, 136, 1);
  457. background-image: linear-gradient(298deg, rgba(250, 19, 136, 1) 30%, rgba(31, 26, 222, 1) 81%);
  458. transform:rotateY(180deg);
  459. color:white;
  460. display:flex;
  461. flex-direction:column;
  462. justify-content:center;
  463. align-items: center;
  464. padding:20px;
  465. text-align:center;
  466. font-size:1.5rem;
  467. border-radius:10px;
  468. -webkit-box-shadow: -8px 9px 24px 0px rgba(66, 68, 90, 1);
  469. -moz-box-shadow: -8px 9px 24px 0px rgba(66, 68, 90, 1);
  470. box-shadow: -8px 9px 24px 0px rgba(66, 68, 90, 1);
  471. text-shadow: 2px 0px 6px rgba(236, 236, 240, 1);
  472. }
  473.  
  474. .black-a
  475. {
  476. border: 1px solid white;
  477. padding:6px 15px 6px 15px;
  478. background-color:white;
  479. opacity:0.5;
  480. border-radius:5px;
  481.  
  482. }
  483.  
  484. .black-a:hover
  485. {
  486. background-color:white;
  487. opacity:0.9;
  488. }
  489.  
  490. .cardcontainer:hover .card
  491. {
  492. transform:rotateY(180deg);
  493. }
  494.  
  495. .bigfont
  496. {
  497. font-size:3.7rem;
  498. font-weight:800;
  499. line-height: 4rem;
  500. }
  501.  
  502.  
  503. .videocontainer
  504. {
  505. width:100%;
  506. position:relative;
  507. margin:0;
  508. }
  509.  
  510. .video
  511. {
  512.  
  513. width:100%;
  514. height:calc(100vw/1.77);
  515. margin:0;
  516. }
  517.  
  518. .video iframe
  519.  
  520. {
  521. position:absolute;
  522. width:100%;
  523. height:calc(100vw/1.77);
  524. }
  525.  
  526. .musician
  527. {
  528. display:flex;
  529. align-items:center;
  530. justify-content:center;
  531. position:absolute;
  532. color:white;
  533. height:100%;
  534. width:100%;
  535. background-color:black;
  536. opacity:0.5;
  537. }
  538.  
  539. #shop
  540. {
  541. padding:25px;
  542. }
  543.  
  544. .store-row
  545. {
  546. display:flex;
  547. justify-content:space-around;
  548. flex-wrap:wrap;
  549. padding:0 20px 40px 20px;
  550.  
  551. }
  552.  
  553. .store-el
  554. {
  555. width:300px;
  556. justify-content:center;
  557. padding:20px;
  558. text-align:center;
  559. transition:0.2s ease-in-out;
  560. }
  561.  
  562. .store-el:hover
  563. {
  564. transform: scale(1.1);
  565. }
  566.  
  567.  
  568. .store-el img
  569. {
  570. max-width:100%;
  571. height:auto;
  572. }
  573.  
  574. .price
  575. {
  576. font-size:1.1rem;
  577. color:#D90A2C;
  578. font-weight:bold;
  579. }
  580.  
  581. footer
  582. {
  583. padding: 40px 20px;
  584. display:flex;
  585. background-color:black;
  586. width:100%;
  587. justify-content:space-around;
  588. flex-wrap:wrap;
  589. }
  590.  
  591. .footer-el
  592. {
  593. border-top:1px solid grey;
  594. color:white;
  595. font-size:0.9rem;
  596. margin:5px;
  597. padding:10px;
  598. line-height:1.3;
  599. text-align: justify;
  600. text-justify: inter-word;
  601. }
  602.  
  603. .f-grey
  604. {
  605. color:grey;
  606. }
  607.  
  608. .social
  609. {
  610. display:flex;
  611. justify-content:center;
  612. }
  613.  
  614. .social-el
  615. {
  616. margin:10px;
  617. }
  618.  
  619. .footer-el a
  620. {
  621. color:white;
  622. text-decoration: none;
  623. font-size:0.9rem;
  624. text-align:justify;
  625. }
  626. .footer-el a:hover
  627. {
  628. color:#D90A2C;
  629. transition:0.3s;
  630. }
  631.  
  632. .footer-el input[type=email]
  633. {
  634. width:50%;
  635. }
  636.  
  637. .footer-el input[type=submit]
  638. {
  639. background-color:black;
  640. color: white;
  641. transition:0.5s;
  642. border: 1px solid white;
  643. padding:2px 4px;
  644. border-radius:3px;
  645. }
  646.  
  647. .footer-el input[type=submit]:hover
  648. {
  649. background-color:#D90A2C;
  650. transition:0.5s;
  651. }
  652.  
  653. .elo
  654. {
  655. display:flex;
  656. width:50%;
  657. min-width:400px;
  658. }
  659.  
  660. .elo1
  661. {
  662. display:flex;
  663. width:50%;
  664. justify-content: space-evenly;
  665. min-width:400px;
  666. }
  667.  
  668. /*SHEETS SITE START HERE*/
  669.  
  670. .sheets-newsletter
  671. {
  672. background-color:#232F3E;
  673. padding:30px 10px;
  674. width:100%;
  675. justify-content:center;
  676. display:flex;
  677. color:white;
  678. }
  679.  
  680. .sheets-newsletter input[type=email]
  681. {
  682. font-size: 0.9rem;
  683. margin-left:20px;
  684. }
  685.  
  686. .sheets-newsletter input[type=submit]
  687. {
  688. font-size: 0.9rem;
  689. margin-left:3px;
  690. background-color:#232F3E;
  691. border: 2px solid white;
  692. color:white;
  693. }
  694.  
  695. .sheets-newsletter input[type=submit]:hover
  696. {
  697. background-color: #D90A2C;
  698. }
  699.  
  700. .log-to-download
  701. {
  702. margin-right:auto;
  703. margin-left:auto;
  704. padding:50px 100px 30px 100px;
  705. display:flex;
  706. justify-content:center;
  707. border:1px green solid;
  708.  
  709. }
  710.  
  711. .log-to-download img
  712. {
  713. max-width:400px;
  714. }
  715.  
  716.  
  717.  
  718. .download-big
  719. {
  720. font-size:1.5rem;
  721. font-weight:600;
  722.  
  723. }
  724.  
  725.  
  726. .log-sign
  727. {
  728. padding:30px 10px;
  729. text-align:center;
  730. }
  731.  
  732. .log-sign a
  733. {
  734. text-decoration:none;
  735. color:#D90A2C;
  736.  
  737. }
  738.  
  739. .log-sign a:hover
  740. {
  741. text-decoration:none;
  742. color:#D90A2C;
  743. font-weight:600;
  744.  
  745. }
  746.  
  747. button
  748. {
  749. background-color:#BADDF1;
  750. color: #BF4800;
  751. border:none;
  752. padding:10px 20px;
  753. font-weight:600;
  754. border-radius:5px;
  755. font-size:1.2rem;
  756. transition: all 0.6s ease;
  757. }
  758.  
  759. button:hover
  760. {
  761. background-color:#C9E5E0;
  762. transform: scale(1.1);
  763. cursor:pointer;
  764. }
  765.  
  766. .free
  767. {
  768. font-weight:600;
  769. color:#BF4800;
  770. }
  771.  
  772. .sheets-container
  773. {
  774. background-color: #F5F5F7;
  775. display:flex;
  776. padding:30px;
  777. justify-content:center;
  778. margin-right:auto;
  779. margin-left:auto;
  780. flex-wrap:wrap;
  781. }
  782.  
  783. .sheet
  784. {
  785. padding:5px;
  786. background-color: white;
  787. display:flex;
  788. height:120px;
  789. min-width:320px;
  790. max-width:320px;
  791. align-items:center;
  792. border-radius: 10px 10px 0 0;
  793. }
  794.  
  795. .sheet img
  796. {
  797. height:80px;
  798. width: auto;
  799. margin-left:10px;
  800. margin-right:15px;
  801. }
  802.  
  803. .sheet-info
  804. {
  805. display:flex;
  806. align-items:center;
  807. width:100%;
  808.  
  809. }
  810.  
  811. a.download
  812. {
  813. color: white;
  814. background-color: #D90A2C;
  815. width:100%;
  816. line-height:1.4rem;
  817. display:flex;
  818. justify-content:center;
  819. text-decoration:none;
  820. font-weight:bold;
  821. transition: all 0.5s ease;
  822.  
  823. }
  824.  
  825. a.download:hover
  826. {
  827. background-color:#232F3E;
  828.  
  829. }
  830.  
  831. .bold
  832. {
  833. font-weight:600;
  834. }
  835.  
  836. .tonation
  837. {
  838. font-size:0.9rem;
  839. color: grey;
  840. font-style:italic;
  841. }
  842.  
  843. .sheet-box
  844. {
  845. margin:20px 10px;
  846. border-radius:50px;
  847. }
  848.  
  849. /*offer starts here*/
  850. #slider
  851. {
  852. overflow:hidden;
  853. }
  854.  
  855. #slider figure
  856. {
  857. width:500%;
  858. display:flex;
  859. margin:0;
  860. left:0;
  861. position:relative;
  862. animation:18s slider infinite;
  863. z-index:-100;
  864. }
  865.  
  866. #slider figure img
  867. {
  868. width:20%;
  869. height:calc(100vw/3.15);
  870. }
  871.  
  872. @keyframes slider
  873. {
  874. 0%
  875. {
  876. left:0;
  877. }
  878. 20%
  879. {
  880. left:0;
  881. }
  882. 25%
  883. {
  884. left:-100%;
  885. }
  886. 45%
  887. {
  888. left:-100%;
  889. }
  890. 50%
  891. {
  892. left:-200%;
  893. }
  894. 70%
  895. {
  896. left:-200%;
  897. }
  898. 75%
  899. {
  900. left:-300%;
  901. }
  902. 95%
  903. {
  904. left:-300%;
  905. }
  906. 100%
  907. {
  908. left:-400%;
  909. }
  910. }
  911.  
  912. @media screen and (max-width:629px)
  913. {
  914. .carousel
  915. {
  916. display:flex;
  917. justify-content:center;
  918. flex-wrap:wrap;
  919. z-index:1000;
  920. margin-top:20px;
  921. }
  922. }
  923.  
  924. @media screen and (min-width:630px)
  925. {
  926. .carousel
  927. {
  928. display:flex;
  929. justify-content:center;
  930. flex-wrap:wrap;
  931. margin-top:-30px;
  932. z-index:1000;
  933. }
  934. }
  935.  
  936.  
  937. .caorusel-el-one
  938. {
  939. text-align:center;
  940. max-width: 300px;
  941. color:white;
  942. font-size:0.9rem;
  943. line-height:1.5;
  944. background-color:#343233;
  945. margin:0 10px;
  946. -webkit-box-shadow: -22px -20px 0px -11px rgba(217, 10, 44, 1);
  947. -moz-box-shadow: -22px -20px 0px -11px rgba(217, 10, 44, 1);
  948. box-shadow: -22px -20px 0px -11px rgba(217, 10, 44, 1);
  949. padding:40px 10px;
  950. }
  951.  
  952. .caorusel-el-two
  953. {
  954. text-align:center;
  955. max-width: 300px;
  956. color:white;
  957. font-size:0.9rem;
  958. line-height:1.5;
  959. background-color:#D90A2C;
  960. margin:0 10px;
  961. padding:40px 10px;
  962. }
  963.  
  964. .caorusel-el-three
  965. {
  966. text-align:center;
  967. max-width: 300px;
  968. color:white;
  969. font-size:0.9rem;
  970. line-height:1.5;
  971. background-color:#393F7C;
  972. margin:0 10px;
  973. padding:40px 10px;
  974. -webkit-box-shadow: 21px 22px 0px -11px rgba(229, 229, 237, 1);
  975. -moz-box-shadow: 21px 22px 0px -11px rgba(229, 229, 237, 1);
  976. box-shadow: 21px 22px 0px -11px rgba(229, 229, 237, 1);
  977. }
  978.  
  979.  
  980. .caorusel-el-h
  981. {
  982. font-size:1.2rem;
  983. color:white;
  984. }
  985.  
  986. .text-center
  987. {
  988. text-align:center;
  989. }
  990.  
  991. #y-line
  992. {
  993. display:flex;
  994. justify-content:center;
  995. height:50px;
  996. margin:25px;
  997. }
  998.  
  999. #bord
  1000. {
  1001. border:2px grey solid;
  1002. }
  1003.  
  1004. #center-offer-container
  1005. {
  1006. align-items:center;
  1007. background-color: rgba(251, 40, 40, 0);
  1008. background-image: linear-gradient(180deg, rgba(246, 250, 253, 1) 28%, rgba(57, 63, 124, 0.71) 100%), url();
  1009. background-size: auto;
  1010. background-position: left top;
  1011. background-repeat: repeat;
  1012. }
  1013.  
  1014. .center-offer
  1015. {
  1016. display:flex;
  1017. align-items:center;
  1018. justify-content:center;
  1019. padding:100px 0 50px 10px;
  1020. }
  1021.  
  1022.  
  1023. .about
  1024. {
  1025. display:flex;
  1026. padding:15px 15px;
  1027.  
  1028. }
  1029.  
  1030.  
  1031. #border-top
  1032. {
  1033. border-top:4px solid #D90A2C;
  1034. width:100px;
  1035. margin-top:5px;
  1036. }
  1037.  
  1038. .about-me
  1039. {
  1040. margin-left:20px;
  1041. display:flex;
  1042. max-width:600px;
  1043. font-size:1.1rem;
  1044. }
  1045.  
  1046. .offer-video
  1047. {
  1048. display:flex;
  1049. background-color: rgba(57, 63, 124, 1);
  1050. background-image: linear-gradient(180deg, rgba(57, 63, 124, 1) 0%, rgba(89, 131, 252, 1) 50%, rgba(57, 63, 124, 1) 100%);
  1051. }
  1052.  
  1053. #offer-video-left
  1054. {
  1055. flex:.4;
  1056. display:flex;
  1057. flex-direction:column;
  1058. justify-content:center;
  1059. align-items:center;
  1060. margin-left:auto;
  1061. margin-right:auto;
  1062. }
  1063.  
  1064. #offer-video-left iframe
  1065. {
  1066. padding:0 30px 30px 30px;
  1067.  
  1068. }
  1069.  
  1070. @media screen and (min-width:800px)
  1071. {
  1072.  
  1073. #offer-video-right
  1074. {
  1075. flex:0.6;
  1076. padding:0 30px 30px 30px;
  1077. color:#F6FAFD;
  1078. font-size:2rem;
  1079. border-left:3px solid #D90A2C;
  1080. }
  1081.  
  1082. #video-img img
  1083. {
  1084. width:70%;
  1085. height:auto;
  1086. margin:80px auto;
  1087. -webkit-box-shadow: -21px -21px 0px -1px rgba(217, 10, 44, 1);
  1088. -moz-box-shadow: -21px -21px 0px -1px rgba(217, 10, 44, 1);
  1089. box-shadow: -21px -21px 0px -1px rgba(217, 10, 44, 1);
  1090. }
  1091.  
  1092. #offer-video-right-mobile
  1093. {
  1094. display:none;
  1095. }
  1096. }
  1097.  
  1098. @media screen and (max-width:799px)
  1099. {
  1100.  
  1101. #offer-video-right, #video-img img
  1102. {
  1103. display:none;
  1104. }
  1105.  
  1106. #offer-video-right-mobile
  1107. {
  1108. flex:0.6;
  1109. padding:0 30px 30px 30px;
  1110. color:#F6FAFD;
  1111. font-size:2rem;
  1112. text-align:center;
  1113. }
  1114. }
  1115.  
  1116.  
  1117.  
  1118. .absolut
  1119. {
  1120. width:100%;
  1121. position:absolute;
  1122. z-index:-100;
  1123. margin-top:-130px;
  1124. }
  1125.  
  1126.  
  1127. .mediumfont-red
  1128. {
  1129. font-size:1.7rem;
  1130. font-weight: 800;
  1131. color:#5983FC;
  1132. font-style:italic;
  1133. text-shadow: -9px 4px 6px rgba(203, 203, 209, 1);
  1134. }
  1135.  
  1136. .mediumfont-gold
  1137. {
  1138. font-size:1.7rem;
  1139. font-weight: 800;
  1140. color:#EEF2F7;
  1141. font-style:italic;
  1142. text-shadow: -9px 4px 6px rgba(203, 203, 209, 1);
  1143.  
  1144. }
  1145.  
  1146.  
  1147. .offer-half
  1148. {
  1149. display:flex;
  1150. justify-content:center;
  1151. background-color: #F3F3F3;
  1152. }
  1153.  
  1154. .half-offer
  1155. {
  1156. flex:0.5;
  1157. }
  1158.  
  1159. @media screen and (min-width:860px)
  1160. {
  1161.  
  1162. .caorusel-el-rev-one
  1163. {
  1164. text-align:center;
  1165. max-width:250px;
  1166. margin:30px;
  1167. padding:20px;
  1168. font-size:.8rem;
  1169. font-style:italic;
  1170. line-height:1.5;
  1171. color: #6A6A6A;
  1172. -webkit-box-shadow: 0px 7px 28px -10px rgba(133, 98, 78, 1);
  1173. -moz-box-shadow: 0px 7px 28px -10px rgba(133, 98, 78, 1);
  1174. box-shadow: 0px 7px 28px -10px rgba(133, 98, 78, 1);
  1175. }
  1176.  
  1177. .caorusel-el-rev-two
  1178. {
  1179. text-align:center;
  1180. max-width:250px;
  1181. margin:120px 30px 30px 30px;
  1182. padding:20px;
  1183. font-size:.8rem;
  1184. font-style:italic;
  1185. line-height:1.5;
  1186. color: #6A6A6A;
  1187. -webkit-box-shadow: 0px 7px 28px -10px rgba(133, 98, 78, 1);
  1188. -moz-box-shadow: 0px 7px 28px -10px rgba(133, 98, 78, 1);
  1189. box-shadow: 0px 7px 28px -10px rgba(133, 98, 78, 1);
  1190. }
  1191.  
  1192. .caorusel-el-rev-three
  1193. {
  1194. text-align:center;
  1195. max-width:250px;
  1196. margin:180px 30px 30px 30px;
  1197. padding:20px;
  1198. font-size:.8rem;
  1199. font-style:italic;
  1200. line-height:1.5;
  1201. color: #6A6A6A;
  1202. -webkit-box-shadow: 0px 7px 28px -10px rgba(133, 98, 78, 1);
  1203. -moz-box-shadow: 0px 7px 28px -10px rgba(133, 98, 78, 1);
  1204. box-shadow: 0px 7px 28px -10px rgba(133, 98, 78, 1);
  1205. }
  1206. }
  1207.  
  1208. @media screen and (max-width:859px)
  1209. {
  1210.  
  1211. .caorusel-el-rev-one
  1212. {
  1213. text-align:center;
  1214. max-width:250px;
  1215. margin:30px;
  1216. padding:20px;
  1217. font-size:.8rem;
  1218. font-style:italic;
  1219. line-height:1.5;
  1220. color: #6A6A6A;
  1221. -webkit-box-shadow: 0px 7px 28px -10px rgba(133, 98, 78, 1);
  1222. -moz-box-shadow: 0px 7px 28px -10px rgba(133, 98, 78, 1);
  1223. box-shadow: 0px 7px 28px -10px rgba(133, 98, 78, 1);
  1224. }
  1225.  
  1226. .caorusel-el-rev-two
  1227. {
  1228. text-align:center;
  1229. max-width:250px;
  1230. margin:30px;
  1231. padding:20px;
  1232. font-size:.8rem;
  1233. font-style:italic;
  1234. line-height:1.5;
  1235. color: #6A6A6A;
  1236. -webkit-box-shadow: 0px 7px 28px -10px rgba(133, 98, 78, 1);
  1237. -moz-box-shadow: 0px 7px 28px -10px rgba(133, 98, 78, 1);
  1238. box-shadow: 0px 7px 28px -10px rgba(133, 98, 78, 1);
  1239. }
  1240.  
  1241. .caorusel-el-rev-three
  1242. {
  1243. text-align:center;
  1244. max-width:250px;
  1245. margin:30px;
  1246. padding:20px;
  1247. font-size:.8rem;
  1248. font-style:italic;
  1249. line-height:1.5;
  1250. color: #6A6A6A;
  1251. -webkit-box-shadow: 0px 7px 28px -10px rgba(133, 98, 78, 1);
  1252. -moz-box-shadow: 0px 7px 28px -10px rgba(133, 98, 78, 1);
  1253. box-shadow: 0px 7px 28px -10px rgba(133, 98, 78, 1);
  1254. }
  1255. }
  1256.  
  1257. @media screen and (min-width:701px)
  1258. {
  1259.  
  1260. #contact-offer
  1261. {
  1262. width:50%;
  1263. display:flex;
  1264. justify-content:center;
  1265. align-items:center;
  1266. }
  1267.  
  1268. #contact-offer img
  1269. {
  1270. margin:50px auto ;
  1271. width:70%;
  1272. height:auto;
  1273. -webkit-box-shadow: 29px 32px 14px 2px rgba(52, 50, 51, 1);
  1274. -moz-box-shadow: 29px 32px 14px 2px rgba(52, 50, 51, 1);
  1275. box-shadow: 29px 32px 14px 2px rgba(52, 50, 51, 1);
  1276.  
  1277. }
  1278.  
  1279. #contact-offer-right
  1280. {
  1281. width:50%;
  1282. padding:50px;
  1283. text-align:center;
  1284. color: #fcfc12;
  1285. font-size:1.1rem;
  1286. font-weight:bold;
  1287. font-style:italic;
  1288.  
  1289. }
  1290. }
  1291.  
  1292.  
  1293. @media screen and (max-width:700px)
  1294. {
  1295. #contact-offer
  1296. {
  1297. display:none;
  1298. }
  1299.  
  1300. #contact-offer-right
  1301. {
  1302. width:100%;
  1303. padding:50px;
  1304. text-align:center;
  1305. color: #fcfc12;
  1306. font-size:1.1rem;
  1307. font-weight:bold;
  1308. font-style:italic;
  1309.  
  1310. }
  1311. }
  1312.  
  1313. #offer-cf
  1314. {
  1315. min-width:300px;
  1316. color:#EEF2F7;
  1317. font-style:none;
  1318. font-weight:400;
  1319. }
  1320.  
  1321. #offer-cf input
  1322. {
  1323. min-width:300px;
  1324. font-size:.9rem;
  1325. padding:5px;
  1326.  
  1327. }
  1328.  
  1329. #offer-cf textarea
  1330. {
  1331. min-width:300px;
  1332. min-height:70px;
  1333. font-size:.9rem;
  1334. padding:10px;
  1335. }
  1336.  
  1337. #offer-cf input[type=submit]
  1338. {
  1339. min-width:unset;
  1340. padding:5px 10px;
  1341. background-color:#EEF2F7;
  1342. border:none;
  1343. color:#D90A2C;
  1344. }
  1345.  
  1346. #offer-cf input[type=submit]:hover
  1347. {
  1348. background-color:#D90A2C;
  1349. border:none;
  1350. color:white;
  1351. font-weight:600;
  1352. cursor:pointer;
  1353.  
  1354. }
  1355.  
  1356.  
  1357. /* Page course starts here */
  1358.  
  1359. .container-course
  1360. {
  1361. display:flex;
  1362. width:100%;
  1363. flex-direction:column;
  1364. justify-content:center;
  1365.  
  1366. }
  1367.  
  1368. .course-intro
  1369. {
  1370. display:flex;
  1371. background-color: #F8F9FB;
  1372. justify-content:center;
  1373. align-items:center;
  1374. -webkit-box-shadow: inset 0px 6px 5px -6px rgba(66, 68, 90, 1);
  1375. -moz-box-shadow: inset 0px 6px 5px -6px rgba(66, 68, 90, 1);
  1376. box-shadow: inset 0px 6px 5px -6px rgba(66, 68, 90, 1);
  1377. flex-wrap:wrap;
  1378. }
  1379.  
  1380.  
  1381.  
  1382. .text-field
  1383. {
  1384. margin:60px auto 60px auto;
  1385. max-width:430px;
  1386. line-height:1.2;
  1387. background-color: white;
  1388. padding:20px;
  1389. -webkit-box-shadow: 7px 8px 40px -18px rgba(66, 68, 90, 1);
  1390. -moz-box-shadow: 7px 8px 40px -18px rgba(66, 68, 90, 1);
  1391. box-shadow: 7px 8px 40px -18px rgba(66, 68, 90, 1);
  1392. }
  1393.  
  1394. .medium-font
  1395. {
  1396. font-size:2.2rem;
  1397. font-weight:bold;
  1398. text-shadow: -9px 4px 6px rgba(203, 203, 209, 1);
  1399. }
  1400.  
  1401. .medium-font-purple
  1402. {
  1403. font-size:2.2rem;
  1404. font-weight:bold;
  1405. color:#D90A2C;
  1406. }
  1407.  
  1408. .course-half-one
  1409. {
  1410. flex:0.5;
  1411. justify-content:center;
  1412. align-items:center;
  1413.  
  1414. }
  1415.  
  1416. @media screen and (min-width:601px)
  1417. {
  1418.  
  1419. .course-half img
  1420. {
  1421. max-height:50vh;
  1422. width:auto;
  1423. }
  1424.  
  1425. .course-half-one
  1426. {
  1427. flex:0.5;
  1428. justify-content:center;
  1429. align-items:center;
  1430.  
  1431. }
  1432.  
  1433. .course-half-two
  1434. {
  1435. flex:0.5;
  1436. justify-content:center;
  1437. align-items:center;
  1438.  
  1439. }
  1440.  
  1441. .course-half-two img
  1442. {
  1443. max-height: 50vh;
  1444. width:auto;
  1445. }
  1446.  
  1447.  
  1448. }
  1449.  
  1450. @media screen and (max-width:600px)
  1451. {
  1452. .course-half-one
  1453. {
  1454. flex:1;
  1455. justify-content:center;
  1456. align-items:center;
  1457. }
  1458.  
  1459. .course-half-two
  1460. {
  1461. display:none;
  1462. }
  1463. }
  1464.  
  1465.  
  1466. .center-course
  1467. {
  1468. display:flex;
  1469. justify-content:center;
  1470. align-items:center;
  1471. }
  1472.  
  1473. .courses
  1474. {
  1475. display: flex;
  1476. max-width:1100px;
  1477. justify-content:center;
  1478. flex-wrap:wrap;
  1479. margin:30px auto;
  1480. }
  1481.  
  1482. .coursecard
  1483. {
  1484. display:flex;
  1485. min-width:300px;
  1486. max-width:28%;
  1487. margin:15px;
  1488. padding:10px;
  1489. line-height:1.3;
  1490. flex-direction:column;
  1491. justify-content:center;
  1492. font-weight:bold;
  1493. border:1px grey solid;
  1494. }
  1495.  
  1496. .coursecard img
  1497. {
  1498. transition: 1s all ease;
  1499. }
  1500.  
  1501. .coursecard:hover img
  1502. {
  1503. transform:scale(1.05);
  1504. overflow:hidden;
  1505. }
  1506.  
  1507. .small-grey
  1508. {
  1509.  
  1510. color:grey;
  1511. font-weight:400;
  1512. }
  1513.  
  1514. .courses a
  1515. {
  1516. color:black;
  1517. text-decoration:none;
  1518. }
  1519. .courses a:hover
  1520. {
  1521. color:#D90A2C;
  1522. }
  1523.  
  1524. .short-info-course
  1525. {
  1526. display:flex;
  1527. margin:20px;
  1528. align-items:center;
  1529. font-weight:500;
  1530. padding:20px;
  1531. min-width:200px;
  1532. }
  1533.  
  1534. .icon
  1535. {
  1536. display:flex;
  1537. height:100%;
  1538. align-items:center;
  1539. color:#D90A2C;
  1540. margin-right:15px;
  1541. }
  1542.  
  1543. .pay-course
  1544. {
  1545. display:flex;
  1546. background-color:#1C1D1F;
  1547.  
  1548. }
  1549.  
  1550. .left
  1551. {
  1552.  
  1553. padding:50px;
  1554. color:white;
  1555. font-size:2rem;
  1556. }
  1557.  
  1558. .bestseller
  1559. {
  1560. padding:5px 10px;
  1561. background-color:#ECEB98;
  1562. color: #1C1D1F;
  1563. font-weight:bold;
  1564. margin-right:8px;
  1565. }
  1566.  
  1567. .yellow
  1568. {
  1569. color:#F3CA8C;
  1570. letter-spacing:2px;
  1571. }
  1572.  
  1573. .small
  1574. {
  1575. font-size:0.8rem;
  1576. }
  1577.  
  1578. .right
  1579. {
  1580. margin: 30px auto;
  1581. }
  1582.  
  1583. a.check-course
  1584. {
  1585. color:#D90A2C;
  1586. font-weight: bold;
  1587. opacity:0.9;
  1588. }
  1589.  
  1590. a.check-course:hover
  1591. {
  1592. opacity:1;
  1593. }
  1594.  
  1595. button
  1596. {
  1597. background-color:#BADDF1;
  1598. color: #BF4800;
  1599. border:none;
  1600. padding:10px 20px;
  1601. font-weight:600;
  1602. border-radius:5px;
  1603. font-size:1.2rem;
  1604. transition: all 0.6s ease;
  1605. }
  1606.  
  1607. button:hover
  1608. {
  1609. background-color:#C9E5E0;
  1610. transform: scale(1.1);
  1611. cursor:pointer;
  1612. }
  1613.  
  1614. .space-letter
  1615. {
  1616. letter-spacing:1px;
  1617. }
  1618.  
  1619. /*single course starts here*/
  1620.  
  1621. .container-single
  1622. {
  1623. display:flex;
  1624. margin-bottom:30px;
  1625. flex-wrap:wrap-reverse;
  1626. }
  1627.  
  1628. @media screen and (min-width:700px)
  1629. {
  1630.  
  1631. .single-video
  1632. {
  1633. flex:0.55;
  1634. min-width:250px;
  1635. padding:40px;
  1636. }
  1637.  
  1638. .product-description
  1639. {
  1640. flex:0.45;
  1641. padding:40px;
  1642. }
  1643. }
  1644.  
  1645. @media screen and (max-width:699px)
  1646. {
  1647.  
  1648. .single-video
  1649. {
  1650. width:100%;
  1651. padding:40px;
  1652. }
  1653.  
  1654. .product-description
  1655. {
  1656. width:100%;
  1657. padding:40px;
  1658. }
  1659. }
  1660.  
  1661.  
  1662.  
  1663.  
  1664. .video-course
  1665. {
  1666. width:100%;
  1667. height:calc(width/1.78);
  1668. }
  1669.  
  1670. .single-video iframe
  1671. {
  1672. min-width:300px;
  1673. width:100%;
  1674. height:calc(width/1.78);
  1675. }
  1676.  
  1677.  
  1678. .previev
  1679. {
  1680. margin-top:20px;
  1681. display:flex;
  1682. max-width:100%;
  1683. justify-content: space-between;
  1684. }
  1685.  
  1686. .previev img
  1687. {
  1688. max-width:30%;
  1689. }
  1690.  
  1691. .font-color-blue-bold
  1692. {
  1693. color:#191970;
  1694. font-weight:600;
  1695. }
  1696.  
  1697. .font-color-blue-bold a
  1698. {
  1699. color:#191970;
  1700. }
  1701.  
  1702. .font-color-blue-bold a:hover
  1703. {
  1704. color:#D90A2C;;
  1705. }
  1706.  
  1707.  
  1708. .small-bold
  1709. {
  1710. font-size:0.8rem;
  1711. font-weight:bold;
  1712. }
  1713.  
  1714. /*contact starts here */
  1715.  
  1716. .contact-container
  1717. {
  1718. background-image: linear-gradient(#F9FAFB, #FFFFFF);
  1719. display:flex;
  1720. justify-content:center;
  1721. }
  1722.  
  1723. .cont-header
  1724. {
  1725. padding:30px 0;
  1726. font-size:2rem;
  1727. font-weight:bold;
  1728. text-align:center;
  1729. background-color:#F9FAFB;
  1730. }
  1731.  
  1732. .contact
  1733. {
  1734. display:flex;
  1735. width:80%;
  1736. margin-bottom:50px;
  1737. flex-wrap:wrap;
  1738. justify-content:space-evenly;
  1739.  
  1740. }
  1741.  
  1742. .personal-info
  1743. {
  1744. text-align:center;
  1745.  
  1746. }
  1747.  
  1748. .personal-info a
  1749. {
  1750. text-decoration:none;
  1751. font-size:1.2rem;
  1752. color:#D90A2C;
  1753. line-height:2;
  1754. }
  1755.  
  1756.  
  1757. .personal-info a:hover
  1758. {
  1759. color: #D90A2C;
  1760. }
  1761.  
  1762.  
  1763. .personal-info img
  1764.  
  1765. {
  1766. border-radius:45px;
  1767. width:90px;
  1768. height:90px;
  1769. margin:5px auto 10px auto;;
  1770. }
  1771.  
  1772. .social-icons
  1773. {
  1774. display:flex;
  1775. justify-content:center;
  1776. }
  1777.  
  1778. .soc-ic
  1779. {
  1780. margin:10px 5px;
  1781. background-color:#F1F1F1;
  1782. border-radius:50%;
  1783. width:50px;
  1784. height:50px;
  1785. display:flex;
  1786. justify-content:center;
  1787. align-items:center;
  1788.  
  1789. }
  1790.  
  1791. .contact-social a
  1792. {
  1793. color:#C5C4CF;
  1794. line-height:unset;
  1795. }
  1796.  
  1797. .contact-p
  1798. {
  1799. font-weight:bold;
  1800. font-size:1.2rem;
  1801. }
  1802.  
  1803. .contact-p-p
  1804. {
  1805. color:grey;
  1806. font-size:0.9rem;
  1807. }
  1808.  
  1809. a.tel
  1810. {
  1811. color:black;
  1812. font-weight:bold;
  1813. }
  1814.  
  1815. a.tel:hover
  1816. {
  1817. color: #D90A2C;
  1818. }
  1819.  
  1820. .contact-social
  1821. {
  1822. display:flex;
  1823. margin-left:auto;
  1824. margin-right:auto;
  1825. justify-content:center;
  1826. }
  1827.  
  1828. .contact-form
  1829. {
  1830. min-width:400px;
  1831. padding:20px;
  1832. background-color:white;
  1833. -webkit-box-shadow: 0px 0px 4px 6px rgba(242, 242, 242, 1);
  1834. -moz-box-shadow: 0px 0px 4px 6px rgba(242, 242, 242, 1);
  1835. box-shadow: 0px 0px 4px 6px rgba(242, 242, 242, 1);
  1836. }
  1837.  
  1838. .contact-form form
  1839. {
  1840. font-size: 0.7rem;
  1841. }
  1842.  
  1843.  
  1844. .contact-form input
  1845. {
  1846. width:100%;
  1847. background-color:#F9FAFB;
  1848. border:none;
  1849. font-size:0.8rem;
  1850. }
  1851.  
  1852. .contact-form input
  1853. {
  1854. font-size:0.8rem;
  1855. padding:10px;
  1856. }
  1857.  
  1858. .contact-form input[type=submit]
  1859. {
  1860. background-color:black;
  1861. width:unset;
  1862. padding:10px 20px;
  1863. color:white;
  1864. font-weight:bold;
  1865. display:flex;
  1866. box-shadow: 0px 5px 5px 2px rgba(0,0,0,.3);
  1867.  
  1868. }
  1869.  
  1870. .contact-form input[type=submit]:hover
  1871. {
  1872. background-color:#D90A2C;
  1873.  
  1874. }
  1875.  
  1876. .contact-form textarea
  1877. {
  1878. width:100%;
  1879. background-color:#F9FAFB;
  1880. border:none;
  1881. padding:10px;
  1882. font-size:0.8rem;
  1883. min-height:100px;
  1884. }
  1885.  
  1886. .incenter
  1887. {
  1888. display:flex;
  1889. justify-content:center;
  1890.  
  1891. }
  1892.  
  1893. /*store starts here*/
  1894.  
  1895. .store-intro
  1896. {
  1897. display:flex;
  1898. width:100%;
  1899. background-color:rgb(245,245,245);
  1900. }
  1901.  
  1902.  
  1903.  
  1904. @media screen and (min-width:700px)
  1905. {
  1906. #store-intro-right
  1907. {
  1908. width:40%;
  1909. display:flex;
  1910. justify-content:center;
  1911. align-items:center;
  1912. }
  1913.  
  1914. #store-intro-left
  1915. {
  1916. padding:100px 60px;
  1917. width:60%;
  1918. font-size:1.2rem;
  1919. }
  1920. }
  1921.  
  1922. @media screen and (max-width:699px)
  1923. {
  1924. #store-intro-right
  1925. {
  1926. display:none;
  1927. }
  1928.  
  1929. #store-intro-left
  1930. {
  1931. padding:50px 50px;
  1932. width:100%;
  1933. font-size:1.2rem;
  1934. }
  1935.  
  1936. }
  1937.  
  1938.  
  1939. a.check-offer
  1940. {
  1941. background-color:#D90A2C;
  1942. color:rgb(245,245,245);
  1943. padding:10px 15px;
  1944. -webkit-box-shadow: 0px 0px 39px 7px rgba(217, 10, 44, 1);
  1945. -moz-box-shadow: 0px 0px 39px 7px rgba(217, 10, 44, 1);
  1946. box-shadow: 0px 0px 39px 7px rgba(217, 10, 44, 1);
  1947. text-decoration:none;
  1948. }
  1949.  
  1950. a.check-offer:hover
  1951. {
  1952. transform:scale(1.2);
  1953. font-weight:800;
  1954. }
  1955.  
  1956. .medium-font-store
  1957. {
  1958. margin:30px;
  1959. font-size:2.2rem;
  1960. font-weight:bold;
  1961. text-shadow: -9px 4px 6px rgba(203, 203, 209, 1);
  1962. }
  1963.  
  1964. .products-container
  1965. {
  1966. display:flex;
  1967. padding:30px;
  1968. justify-content:center;
  1969. margin-right:auto;
  1970. margin-left:auto;
  1971. flex-wrap:wrap;
  1972. }
  1973.  
  1974.  
  1975. .store-product
  1976. {
  1977. width:200px;
  1978. padding:15px;
  1979. border-radius:15px;
  1980. margin:25px;
  1981. }
  1982.  
  1983. .products-container a
  1984. {
  1985. text-decoration:none;
  1986. color:black;
  1987. }
  1988.  
  1989. .products-container a:hover
  1990. {
  1991. color:#D90A2C;
  1992. }
  1993.  
  1994. .store-product img
  1995. {
  1996. margin-left:auto;
  1997. margin-right:auto;
  1998. max-width:100%;
  1999. max-height:100%;
  2000. }
  2001.  
  2002. .price
  2003. {
  2004. text-decoration:underline;
  2005. font-weight:bold;
  2006. color:black;
  2007. }
  2008.  
  2009. .store-product:hover img
  2010. {
  2011. transform:scale(1.2);
  2012. transition:1s all ease-in-out;
  2013. }
  2014.  
  2015. /*login starts here*/
  2016. #loginpage
  2017. {
  2018. height:100vh;
  2019. }
  2020.  
  2021. .inrow
  2022. {
  2023. height:100vh;
  2024. display:flex;
  2025. justify-content:center;
  2026. align-items:center;
  2027. flex-wrap:wrap;
  2028.  
  2029. }
  2030.  
  2031. .fifty
  2032. {
  2033. width:50%;
  2034. text-align:center;
  2035. min-width:500px;
  2036. }
  2037.  
  2038. .fifty a
  2039. {
  2040. text-decoration:none;
  2041. }
  2042.  
  2043. .fifty a:hover
  2044. {
  2045. text-decoration:underline;
  2046. text-decoration-color: #CC0099 ;
  2047. }
  2048.  
  2049. .fifty a:visited
  2050. {
  2051. color: #CC0099 ;
  2052. }
  2053.  
  2054. .register
  2055. {
  2056. background-color:white;
  2057. margin-left:auto;
  2058. margin-right: auto;
  2059. width:450px;
  2060. text-align: center;
  2061. padding:35px;
  2062. border-radius:10px;
  2063. -webkit-box-shadow: 0px 0px 8px 0px rgba(66, 68, 90, 0.61);
  2064. -moz-box-shadow: 0px 0px 8px 0px rgba(66, 68, 90, 0.61);
  2065. box-shadow: 0px 0px 8px 0px rgba(66, 68, 90, 0.61);
  2066.  
  2067. }
  2068.  
  2069. .text
  2070. {
  2071. width:360px;
  2072. height:40px;
  2073. border: 1px #ccc solid;
  2074. border-radius:5px;
  2075. font-size:1rem;
  2076. }
  2077.  
  2078. input:focus
  2079. {
  2080. outline: none !important;
  2081. border:1px solid #D90A2C;
  2082. box-shadow: 0 0 5px #D90A2C;
  2083. }
  2084.  
  2085. .button1
  2086. {
  2087. width:360px;
  2088. height:40px;
  2089. background-color:#D90A2C;
  2090. border:none;
  2091. color:white;
  2092. font-weight:700;
  2093. font-size:1.3rem;
  2094. border-radius:5px;
  2095. }
  2096.  
  2097. .button1:hover
  2098. {
  2099. width:360px;
  2100. height:40px;
  2101. background-color:#D90A2C;
  2102. border:none;
  2103. color:white;
  2104. font-weight:700;
  2105. font-size:1.3rem;
  2106. border-radius:5px;
  2107. box-shadow: 0 0 10px #D90A2C;
  2108. cursor:pointer;
  2109. }
  2110.  
  2111.  
  2112. .button2
  2113. {
  2114. width:210px;
  2115. height:40px;
  2116. background-color:#4169E1;
  2117. border:none;
  2118. color:white;
  2119. font-weight:700;
  2120. font-size:1.1rem;
  2121. border-radius:5px;
  2122. padding:10px;
  2123.  
  2124. }
  2125.  
  2126. .fifty .button2:hover
  2127. {
  2128. text-decoration:none;
  2129. box-shadow: 0 0 10px #4169E1;
  2130. }
  2131.  
  2132. .fifty .button2:visited
  2133. {
  2134. color:white;
  2135. }
  2136.  
  2137. .span
  2138. {
  2139. color:#D90A2C;
  2140. }
  2141.  
  2142.  
  2143. .big
  2144. {
  2145. font-size:1.5rem;
  2146. font-weight:700;
  2147. }
  2148.  
  2149. .left
  2150. {
  2151. display:flex;
  2152. justify-content:left;
  2153. }
  2154.  
  2155. .logo-login
  2156. {
  2157. font-size:4rem;
  2158. text-shadow: -9px 4px 6px rgba(203, 203, 209, 1);
  2159. }
  2160. .purple-login
  2161. {
  2162. color:#D90A2C;
  2163. font-size:4rem;
  2164. }
  2165. .grey-login
  2166. {
  2167. color:grey;
  2168. font-size:3rem;
  2169. }
  2170.  
  2171. .infolog
  2172. {
  2173. font-size:1.5rem;
  2174. font-weight:800;
  2175. }
  2176.  
  2177. .errors
  2178. {
  2179. color:red;
  2180. font-size:0.8rem;
  2181. font-weight:bold;
  2182. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement