Guest User

style.css

a guest
Oct 18th, 2017
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 20.86 KB | None | 0 0
  1.  
  2. #load{
  3.     width:100%;
  4.     height:100%;
  5.     position:fixed;
  6.     z-index:9999;
  7.     background:url("http://i.imgur.com/wzwQd03.gif") no-repeat center center rgba(0,0,0,0.10);
  8. }
  9. .home{
  10.   width:100%;
  11.   height:738px;
  12.   background-image: url('https://s25.postimg.org/hfgryz673/10858588_380274208800828_5539200826713676481_n.jpg');
  13.   background-repeat: no-repeat;
  14.   background-size:100%;
  15.   background-attachment:fixed;
  16. }
  17. .logo-wali{
  18.   padding-top:8.5%;
  19. }
  20. .logo{
  21.   height:5%;
  22.   width:5%;
  23. }
  24. .inner{
  25.   margin-right:22%;
  26. }
  27. .name{
  28.   margin-top:-8px;
  29.   font-family:"Limelight";
  30.   margin-left:10px;
  31.   padding-bottom:30px;
  32.   display:inline-block;
  33.   font-size:3.5vw;
  34.   position:absolute;
  35.   color:white;
  36. }
  37. .tag-line{
  38.   font-family:'Molengo', sans-serif;
  39.   margin-top:11%;
  40.   color:white;
  41.   font-size:4vw;
  42. }
  43. #playstore{
  44.   cursor:pointer;
  45.   margin-top:7%;
  46.   font-size:2vw;
  47.   opacity:0.5;
  48. }
  49. #floatingDock{
  50.   position:fixed;
  51.   bottom:30px;
  52.   right:30px;
  53.   height:60px;
  54.   width:60px;
  55.    background: #F04100;
  56.   border-radius:50%;
  57.     box-shadow: 0px 2px 5px #888;
  58.   cursor:pointer;
  59. }
  60. .plus{
  61.   color: white;
  62.   position: absolute;
  63.   top: 0;
  64.   display: block;
  65.   bottom: 0;
  66.   left: 0;
  67.   right: 0;
  68.   text-align: center;
  69.   padding: 0;
  70.   margin: 0;
  71.   line-height: 55px;
  72.   font-size: 38px;
  73.   font-family: 'Molengo', sans-serif;
  74.   font-weight: 300;
  75.   animation: plus-out 0.3s;
  76.     transition: all 0.5s ease;
  77. }
  78. #container-floating{
  79.   position: fixed;
  80.   width: 70px;
  81.   height: 70px;
  82.   bottom: 30px;
  83.   right: 30px;
  84.   z-index: 50px;
  85. }
  86. #container-floating:hover{
  87.   height: 250px;
  88.   width: 190px;
  89.   padding: 30px;
  90. }
  91. #container-floating:hover .plus{
  92.   animation: plus-in 0.15s linear;
  93.   animation-fill-mode: forwards;
  94. }
  95. .edit{
  96.   position: absolute;
  97.   top: 0;
  98.   display: block;
  99.   bottom: 0;
  100.   left: 0;
  101.   display: block;
  102.   right: 0;
  103.   padding: 0;
  104.   opacity: 0;
  105.   margin: auto;
  106.   line-height: 65px;
  107.   transform: rotateZ(-70deg);
  108.   transition: all 0.3s;
  109.   animation: edit-out 0.3s;
  110. }
  111.  
  112. #container-floating:hover .edit{
  113.   animation: edit-in 0.2s;
  114.    animation-delay: 0.1s;
  115.   animation-fill-mode: forwards;
  116. }
  117. @keyframes edit-in{
  118.     from {opacity: 0; transform: rotateZ(-70deg);}
  119.     to {opacity: 1; transform: rotateZ(0deg);}
  120. }
  121.  
  122. @keyframes edit-out{
  123.     from {opacity: 1; transform: rotateZ(0deg);}
  124.     to {opacity: 0; transform: rotateZ(-70deg);}
  125. }
  126.  
  127. @keyframes plus-in{
  128.     from {opacity: 1; transform: rotateZ(0deg);}
  129.     to {opacity: 0; transform: rotateZ(180deg);}
  130. }
  131.  
  132. @keyframes plus-out{
  133.     from {opacity: 0; transform: rotateZ(180deg);}
  134.     to {opacity: 1; transform: rotateZ(0deg);}
  135. }
  136.  
  137. .nds{
  138.   width: 40px;
  139.   height: 40px;
  140.   border-radius: 50%;
  141.   position: fixed;
  142.   z-index: 300;
  143.   transform:  scale(0);
  144.   cursor: pointer;
  145. }
  146.  
  147. .nd1{
  148.   background: #d3a411;
  149.   right: 40px;
  150.   bottom: 120px;
  151.   animation-delay: 0.2s;
  152.     animation: bounce-out-nds 0.3s linear;
  153.   animation-fill-mode:  forwards;
  154. }
  155. .nd4{
  156.   background: #ba68c8;
  157.   right: 40px;
  158.   bottom:190px;
  159.   animation-delay: 0.1s;
  160.     animation: bounce-out-nds 0.1s linear;
  161.   animation-fill-mode:  forwards;
  162. }
  163. .ngo{
  164.   width: 140px;
  165.   height: 35px;
  166.   position: fixed;
  167.   z-index: 300;
  168.   transform:  scale(0);
  169.   cursor: pointer;
  170. }
  171.  
  172. .add{
  173.   background: #eaeaea;
  174.   right: 100px;
  175.   bottom:192px;
  176.   border-radius: 8px;
  177.   border: 1px solid #999;
  178.   box-shadow: 1px 1px 5px #777;
  179.   animation-delay: 0.1s;
  180.     animation: bounce-out-ngo 0.1s linear;
  181.   animation-fill-mode:  forwards;
  182. }
  183. .tip-top{
  184.     width: 0px;
  185.   height: 0px;
  186.   position: absolute;
  187.   background: transparent;
  188.   border: 10px solid #ddd;
  189.     top: 6px;
  190.   right: -20px;
  191.   border-top-color: transparent;
  192.   border-right-color: transparent;
  193.   border-bottom-color: transparent;
  194. }
  195.  
  196. .ngoadd{
  197.   font-size: 18px;
  198.   font-family: 'Roboto Slab';
  199.   position: absolute;
  200.   left: 0;
  201.   right: 0;
  202.   margin: 0;
  203.   top: 0;
  204.   bottom: 0;
  205.   text-align: center;
  206.   line-height: 32px;
  207.   }
  208.  
  209. .post{
  210.   background: #eaeaea;
  211.   right: 100px;
  212.   bottom:122px;
  213.   border-radius: 8px;
  214.   border: 1px solid #999;
  215.   box-shadow: 1px 1px 5px #777;
  216.   animation-delay: 0.1s;
  217.     animation: bounce-out-ngo 0.1s linear;
  218.   animation-fill-mode:  forwards;
  219. }
  220.  
  221. .news{
  222.   width: 140px;
  223.   height: 35px;
  224.   position: fixed;
  225.   z-index: 300;
  226.   transform:  scale(0);
  227.   cursor: pointer;
  228. }
  229.  
  230. @keyframes bounce-nds{
  231.     from {opacity: 0;}
  232.     to {opacity: 1; transform: scale(1);}
  233. }
  234.  
  235. @keyframes bounce-out-nds{
  236.     from {opacity: 1; transform: scale(1);}
  237.     to {opacity: 0; transform: scale(0);}
  238. }
  239. #container-floating:hover .nds{
  240.  
  241.   animation: bounce-nds 0.1s linear;
  242.   animation-fill-mode:  forwards;
  243. }
  244. #container-floating:hover .nd4{
  245.   animation-delay: 0.15s;
  246. }
  247.  
  248. @keyframes bounce-nds{
  249.     from {opacity: 0;}
  250.     to {opacity: 1; transform: scale(1);}
  251. }
  252.  
  253. @keyframes bounce-out-ngo{
  254.     from {opacity: 1; transform: scale(1);}
  255.     to {opacity: 0; transform: scale(0);}
  256. }
  257. #container-floating:hover .ngo{
  258.  
  259.   animation: bounce-ngo 0.1s linear;
  260.   animation-fill-mode:  forwards;
  261. }
  262. #container-floating:hover .add{
  263.   animation-delay: 0.15s;
  264. }
  265. @keyframes bounce-ngo{
  266.     from {opacity: 0;}
  267.     to {opacity: 1; transform: scale(1);}
  268. }
  269.  
  270. @keyframes bounce-out-news{
  271.     from {opacity: 1; transform: scale(1);}
  272.     to {opacity: 0; transform: scale(0);}
  273. }
  274. #container-floating:hover .news{
  275.  
  276.   animation: bounce-ngo 0.1s linear;
  277.   animation-fill-mode:  forwards;
  278. }
  279. #container-floating:hover .post{
  280.   animation-delay: 0.15s;
  281. }
  282. @keyframes bounce-news{
  283.     from {opacity: 0;}
  284.     to {opacity: 1; transform: scale(1);}
  285. }
  286.  
  287. .letter{
  288.   font-size: 23px;
  289.   font-family: 'Roboto';
  290.   color: white;
  291.   position: absolute;
  292.   left: 0;
  293.   right: 0;
  294.   margin: 0;
  295.   top: 0;
  296.   bottom: 0;
  297.   text-align: center;
  298.   line-height: 40px;
  299. }
  300.  
  301. .reminder{
  302.   position: absolute;
  303.   left: 0;
  304.   right: 0;
  305.   margin: auto;
  306.   top: 0;
  307.   bottom: 0;
  308.   line-height: 40px;
  309. }
  310.  
  311. #addNgo{
  312.     position: fixed;
  313.     bottom:24px;
  314.     right:110px;
  315.     box-sizing:content-box;
  316.     padding: 6px 20px 6px 20px;
  317.     font-family: "Roboto Slab";
  318.     font-size: 20px;
  319.     background: #eaeaea;
  320.     border-radius: 8px;
  321.     font-weight:bolder;
  322.     border: 1px solid #999;
  323.     box-shadow: 1px 1px 5px #777;
  324. }
  325. .tip{
  326.     width: 0px;
  327.   height: 0px;
  328.   position: absolute;
  329.   background: transparent;
  330.   border: 10px solid #ddd;
  331.     top: 10px;
  332.   right: -20px;
  333.   border-top-color: transparent;
  334.   border-right-color: transparent;
  335.   border-bottom-color: transparent;
  336. }
  337.  
  338. .top-bar{
  339.   padding-top:5px;
  340.   padding-bottom:5px;
  341.   vertical-align:middle;
  342.   height:auto;
  343.   opacity:0.96;
  344.   z-index:500;
  345.   overflow:hidden;
  346.   top:0;
  347.   position:fixed;
  348.   background-color:#F5F5F5;
  349.   width:100%;
  350.   box-shadow: 0 1px 1px #999;
  351. }
  352. .top-bar .icon {
  353.     display: none;
  354. }
  355. .navigation-buttons{
  356.   vertical-align:middle;
  357.   font-size:1.5vw;
  358.   text-decoration:none;
  359.   font-family:'Molengo', sans-serif;
  360.   padding-left:4%;
  361.   padding-right:4%;
  362.   display:inline-block;
  363.   color:#00AFF0;
  364. }
  365. .navigation-buttons:hover{
  366.   text-decoration:none;
  367.   text-shadow: 1px 1px 2px #00AFF0;
  368. }
  369. .navigation-buttons:active{
  370.   text-decoration:none;
  371.   color:#ffffff;
  372. }
  373. .navigation-buttons:visited {
  374.   text-decoration:none;
  375. /*   color:#00AFF0; */
  376. }
  377. .facebook{
  378.   vertical-align:middle;
  379.   text-align:center;
  380.   background-color:#3b5998;
  381.   padding:10px;
  382.   width:50px;
  383.   height:50px;
  384.   border-radius:100%;
  385.   color:white;
  386.   cursor:pointer;
  387.   border-style:solid;
  388.   border-width:2px;
  389.   border-color:#3b5998;
  390. }
  391. .facebook:hover{
  392.   background-color:white;
  393.   color:#3b5998;
  394.   border-style:solid ;
  395.   border-color:#3b5998;
  396.   border-width:2px;
  397. }
  398. .twitter{
  399.   vertical-align:middle;
  400.   background-color: #0084b4;
  401.   text-align:center;
  402.   padding:10px;
  403.   width:50px;
  404.   height:50px;
  405.   border-radius:100%;
  406.   color:white;
  407.   border-style:solid;
  408.   border-width:2px;
  409.   border-color:#0084b4;
  410.   cursor:pointer;
  411. }
  412. .twitter:hover{
  413.   background-color:white;
  414.   color:#0084b4;
  415.   border-style:solid;
  416.   border-color:#0084b4;
  417.   border-width:2px;
  418.  
  419. }
  420. .youtube{vertical-align:middle;
  421.   background-color: #FF0000;
  422.   text-align:center;
  423.   padding:8px;
  424.     padding-left: 8.5px;
  425.   width:50px;
  426.   height:50px;
  427.   border-radius:100%;
  428.   color:white;
  429.   border-style:solid;
  430.   border-width:2px;
  431.   cursor:pointer;
  432.   border-color:#FF0000;
  433. }
  434. .youtube:hover{
  435.   background-color:white;
  436.   color:#FF0000;
  437.   border-style:solid;
  438.   border-color:#FF0000;
  439.   border-width:2px;
  440. }
  441. .logo1{display:inline-block;
  442. vertical-align:middle;
  443.   width:3.6%;
  444.   margin-left:5%;
  445.   margin-right:10%;
  446.   padding-bottom:5px;
  447. }
  448. .navigation-buttons {
  449.     letter-spacing: 0;
  450. }
  451. .heading{
  452.   font-family:'Molengo', sans-serif;
  453.   padding-top:7%;
  454.   padding-bottom:7%;
  455.   background-color:#F5F5F5;
  456. }
  457.  
  458. .line{
  459.   margin-top:1%;
  460.   background-color:#00AFF0;
  461.   width:120px;
  462.   height:3px;
  463.   margin-bottom:2.5%;
  464. }
  465. #feature1screenshot{
  466.   background-color:#F5F5F5;
  467.   padding-bottom:5%;
  468.   text-align:center;
  469. }
  470. #feature1data{
  471.   background-color:#F5F5F5;
  472.   padding-top:2.5%;
  473.   padding-bottom:2%;
  474.   text-align:center;
  475. }
  476. .screenshot{
  477.   width:250px;
  478.   margin-left:-600px;
  479. }
  480.  
  481. .bullets{
  482.   display:inline;
  483.   width:8%;
  484.   margin:2%;
  485.   margin-bottom:30px;
  486. }
  487. .bullet_text{
  488.   width:90%;
  489.    text-align:center;
  490.   font-family:'Molengo', sans-serif;
  491.   font-size:25px;
  492.  
  493. }
  494. .feature1_heading{
  495.   color:#00AFF0;
  496.   display:inline;
  497.   font-size:3vw;
  498.   margin-right:5%;
  499.   font-family:'Molengo', sans-serif;
  500.   margin-top:5px;
  501. }
  502. #top{
  503. padding-top:5%;
  504.   padding-bottom:2%;
  505. }
  506. #bottom{
  507.   background-color:#00AFF0;
  508.   padding-top:8%;
  509.   text-align:center;
  510. }
  511. .bullet2{
  512. display:inline;
  513.   width:8%;
  514.   margin:2%;  
  515.   margin-bottom:30px;
  516. }
  517. .feature2_heading{
  518.   color:#F5F5F5;
  519.   display:inline;
  520.   font-size:3vw;
  521.   font-family:'Molengo', sans-serif;
  522. }
  523. .bullet_text2{
  524.   font-family:'Molengo', sans-serif;
  525.   color:black;
  526.   margin-left:5%;
  527.   font-size:25px;
  528. }
  529. .screenshot2{
  530.   width:350px;
  531.   margin-left:600px;
  532. }
  533. /*
  534. #slide{
  535.     width:100%;
  536.     }
  537.    
  538. * {
  539.     box-sizing: border-box
  540. }
  541.  
  542. .mySlides {
  543.     display: none
  544. }
  545.  
  546. .slideshow-container {
  547.     width: 100%;
  548.     position: relative;
  549.  
  550. }
  551. /* Next & previous buttons */
  552. /*.prev, .next {
  553.     cursor: pointer;
  554.     position: absolute;
  555.     top: 50%;
  556.     width: auto;
  557.     padding: 16px;
  558.     margin-top: -22px;
  559.     color: white;
  560.     font-weight: bold;
  561.     font-size: 3vw;
  562.     transition: 0.6s ease;
  563.     border-radius: 0 3px 3px 0;
  564. }
  565. /* Position the "next button" to the right */
  566. /*.next {
  567.     right: 0;
  568.     border-radius: 3px 0 0 3px;
  569. }
  570. /* On hover, add a black background color with a little bit see-through */
  571. /*.prev:hover, .next:hover {
  572.     background-color: rgba(0,0,0,0.8);
  573. }
  574. /* Caption text */
  575. /*.text {
  576.     color: #f2f2f2;
  577.     font-size: 15px;
  578.     padding: 8px 12px;
  579.     position: absolute;
  580.     bottom: 8px;
  581.     width: 100%;
  582.     text-align: center;
  583. }
  584.  
  585. /* The dots/bullets/indicators */
  586. /*.dot {
  587.     cursor: pointer;
  588.     height: 13px;
  589.     width: 13px;
  590.     margin: 0 2px;
  591.     background-color: #bbb;
  592.     border-radius: 50%;
  593.     display: inline-block;
  594.     transition: background-color 0.6s ease;
  595. }
  596. .active, .dot:hover {
  597.     background-color: #717171;
  598. }
  599. /* Fading animation */
  600. /*.fade {
  601.     -webkit-animation-name: fade;
  602.     -webkit-animation-duration: 2s;
  603.     animation-name: fade;
  604.     animation-duration: 2s;
  605. }
  606. @-webkit-keyframes fade {
  607.   from {opacity: .4}
  608.   to {opacity: 1}
  609. }
  610.  
  611. @keyframes fade {
  612.   from {opacity: .4}
  613.   to {opacity: 1}
  614. }
  615. .background2{
  616.   background-color:#00AFF0;
  617.   width:100%;
  618. }
  619. .section3{
  620.   padding-top:1%;
  621.   background-color:#00AFF0;
  622.   height:500px;
  623.   width:100%;
  624. }
  625. .section3inner{
  626.   border-radius:16px;
  627.   opacity:0.96;
  628.   width:80%;
  629.   height:500px;
  630.   margin-left:10%;
  631.   background-color:#F5F5F5;
  632. }
  633. /* On smaller screens, decrease text size */
  634. @media only screen and (max-width: 300px) {
  635.   .text {font-size: 11px}
  636. }
  637.  
  638.  
  639.  
  640. @media screen and (max-width: 1024px) {
  641.   .home{
  642.     background:url('https://s22.postimg.org/f34xymmtd/test.jpg');
  643.     background-repeat:no-repeat;
  644.     margin-bottom:-93px;
  645.     background-attachment:fixed;
  646.   }
  647.   .logo-wali{
  648.     padding-top:150px;
  649.   }
  650.   .logo{
  651.     width:45px;
  652.   }
  653.   .name{font-size:45px; }
  654.   .tag-line{font-size:40px;}
  655.   #playstore{font-size:20px;}
  656.   .navigation-buttons:hover{
  657.   text-decoration:none;
  658. }
  659.   .logo1{
  660.     width:40px;
  661.     margin-top:5px;
  662.   }
  663.   .top-bar i{
  664.     display:none;
  665.   }
  666.   .top-bar a:not(:first-child) {display: none;}
  667.   .top-bar a.icon {
  668.     color:#00AFF0;
  669.     text-decoration:none;
  670.     float: right;
  671.     display: block;
  672.     margin-top:12px;
  673.     margin-right:15px;
  674.   }
  675.   .navigation-buttons{
  676.     font-size:23px;
  677.     color:white;
  678.     text-decoration:none;
  679.   }
  680.   .navigation-buttons:hover{
  681.     text-decoration:none;
  682.   }
  683.    
  684. }
  685.  
  686.  
  687. @media screen and (max-width: 1024px) {
  688.   .top-bar.responsive {position: fixed;
  689.   background-color:black;
  690.   }
  691.   .top-bar.responsive a.icon {
  692.     color:#00AFF0;
  693.     text-decoration:none;
  694.     position: absolute;
  695.     right: 0px;
  696.     top: 5px;
  697.   }
  698.   .top-bar.responsive .navigation-buttons {
  699.     float: none;
  700.     display: block;
  701.     text-align: center;
  702.       padding: 20px;
  703.   }
  704.    
  705.   .top-bar.responsive i{
  706.     display:inline-block;
  707.     margin-bottom:50%;
  708.     margin-top:5%;
  709.   }
  710.   .social {
  711.     display:block;
  712.    text-align:center;
  713.   }
  714. }
  715. @media only screen and (max-width:768px) {
  716.   .logo-wali{
  717.     margin-left:-50px;
  718.     padding-bottom:30px;
  719.     text-align:center;
  720.   }
  721.   .tag-line{padding-bottom:30px;}
  722. }
  723.   @media only screen and (max-width:500px) {
  724.     .home{
  725.       margin-bottom:0px;
  726.     }
  727.   .navigation-buttons{
  728.     color:white;
  729.     padding:8%;
  730.   }
  731.   .logo1{
  732.     width:11%;
  733.     top:-5px;
  734.     margin-top:1px;
  735.   }
  736.   .logo-wali{
  737.     padding-top:20%;
  738.     margin:0 auto;
  739.     top:-50px;
  740.   }
  741.     .tag-line{
  742.       padding-top:50px;
  743.     }
  744.   .name{
  745.     padding-top:5px;
  746.     position:absolute;
  747.     font-size:10vw;
  748.   }
  749.   .logo{
  750.     width:15%;
  751.     height:15%;
  752.     margin-left:-130px;
  753.   }
  754.   .home{
  755.     background-image: url('https://s25.postimg.org/z5rnbhyjj/10858588_380274208800828_5539200826713676481_n.jpg');
  756.     background-repeat: no-repeat;
  757.     height:100%;
  758.     background-attachment:fixed;
  759.     background-size:100%;
  760.     padding-bottom:50px;
  761.   }
  762.   .tag-line{
  763.     font-size:7vw;
  764.     margin-top:25%;
  765.   }
  766.   #playstore{
  767.     font-size:4vw;
  768.     margin-top:25%;
  769.   }
  770.       #container-floating:hover{
  771.        height: 160px;  
  772.       }
  773. #floatingDock{
  774.       bottom:10px;
  775.       right:10px;
  776.       height:50px;
  777.       width:50px;
  778.     }
  779.    
  780.     .plus{
  781.       line-height:45px;
  782.       font-size:33px;
  783.     }
  784.     .nd1{
  785.       right:15px;
  786.       bottom:80px;
  787.     }
  788.     .nd4{
  789.       right:15px;
  790.         bottom:140px;
  791.     }
  792.      
  793.     #addNgo{
  794.       bottom:10px;
  795.       right:80px;
  796.       margin:0;
  797.     }  
  798.      
  799.       .add{
  800.       bottom:142px;
  801.       right:70px;
  802.     }
  803.    
  804.     .post{
  805.       bottom:82px;
  806.       right:70px;
  807.     }
  808.      
  809.   .top-bar{
  810.     height:auto;
  811.     opacity:1;
  812.   }
  813.   .bullets{
  814.     width:15%;
  815.     margin-top:20px;
  816.   }
  817.   .feature1_heading{
  818.     font-size:35px;
  819.   }
  820.        .screenshot{
  821.       width:200px;
  822.     }
  823.      
  824.   .screenshot2{width:280px;}
  825.   .bullet2{
  826.     width:15%;
  827.     margin-top:20px;
  828.   }
  829.   .bullet_text{
  830.     padding-right:5%;
  831.     margin:2%;
  832.   width:100%;
  833.    text-align:center;
  834.   font-family:'Molengo', sans-serif;
  835.    font-size:20px;
  836. }
  837.   .bullet_text2{
  838.     padding-right:5%;
  839.     margin-left:-3%;
  840.     margin:2%;
  841.     padding-bottom:30px;
  842.     font-family:'Molengo', sans-serif;
  843.    font-size:20px;
  844.   }
  845.   .feature2_heading{
  846.     font-size:35px;
  847.   }
  848.    #parent{
  849.         display:flex;
  850.         flex-flow: column;
  851.     }
  852.   #top{order:1;
  853.   padding-top:50px;
  854.   margin-bottom:-40px;}
  855.   #bottom{order:2;}
  856. }
  857. .trim{
  858.   background-color:#00AFF0;
  859.   padding:0 8%;
  860. height:100%;
  861. width:100%;}
  862. form{
  863.   border-radius:10px;
  864.   opacity:0.98;
  865.   background-color:#F5F5F5;
  866. padding-top:11%;
  867. padding-bottom:11%;
  868. }
  869.  
  870. #enter_email,
  871. #enter_subject
  872.         {  
  873.             font-family:'Molengo', sans-serif;
  874.             font-size: 20px;
  875.             width: 50%;
  876.             padding: 8px 8px 8px 20px;
  877.             margin-bottom: 15px;
  878.             border-radius: 5px;
  879.             border-color:#00AFF0;
  880.             text-decoration: none;
  881.             border-style:solid;
  882.             border-width: 1.5px;
  883.           /*For Animation*/
  884.           margin-top:30px;
  885.         }
  886.         textarea{
  887.             width: 50%;
  888.             height: 150px;
  889.             border-radius: 5px;
  890.             text-decoration: none;
  891.             border-color:#00AFF0;
  892.             border-style:solid;
  893.             border-width: 1.5px;
  894.             padding: 8px 8px 8px 20px;
  895.             font-size: 25px;
  896.             resize: none;
  897.             font-family:'Molengo', sans-serif;
  898.           /* For animation*/
  899.           margin-top:30px;
  900.         }
  901.        
  902.         input[type="button"]{
  903.             width: 50%;
  904.             padding: 12px 12px 12px 20px;
  905.             margin-top:6px;
  906.             font-size: 20px;
  907.             text-decoration: none;
  908.             color:#F5F5F5;
  909.             border-style:solid;
  910.             background-color:#6274ff;
  911.             border-radius: 10px;
  912.           text-transform:uppercase;
  913.           cursor:pointer;
  914.           font-weight:bold;
  915.           font-family:'Molengo', sans-serif;
  916.         }
  917. @media screen and (max-width:1024px){
  918.      #enter_text,#enter_email,#enter_subject,#submit_button{
  919.     width:90%;
  920.   }
  921. }
  922. /*input::-webkit-input-placeholder{
  923.   font-family:'Molengo', sans-serif;
  924.   font-size:25px;
  925. }*/
  926. textarea::-webkit-input-placeholder{
  927.   font-size:20px;
  928.   font-family:'Molengo', sans-serif;
  929. }
  930. input[type="submit"]:hover{
  931.   background-color:#475DFF;
  932. }
  933. #playstore_button{
  934.   cursor:pointer;
  935.   font-size:30px;
  936.   opacity:0.5;
  937. /*   height:100px;
  938.   width:200px; */
  939.   margin-top:96px;
  940. }
  941.  
  942. #formUsername{
  943.     display: block;
  944.     border-width: 1.5px;
  945.     border-color: whitesmoke;
  946.     width: 80%;
  947.     margin: 0 auto;
  948.     background: whitesmoke;
  949.     border-bottom-color: #777;
  950.     border-top-color: whitesmoke;
  951.     color: #777;
  952.     padding: 8px 8px 8px 20px;
  953.     font-family:'Molengo', sans-serif;
  954.     font-size: 20px;
  955.     border-radius: 5px;
  956.     border-style:solid;
  957.     text-decoration: none;
  958.     margin-top: 10px;
  959. }
  960. #formUsername::-webkit-input-placeholder{
  961.     color: #00aff0;
  962.     font-size: 17px;
  963. }
  964.  
  965. #formPassword{
  966.     display: block;
  967.     border-width: 1.5px;
  968.     border-color: whitesmoke;
  969.     width: 80%;
  970.     margin: 0 auto;
  971.     background: whitesmoke;
  972.     border-bottom-color: #777;
  973.     border-top-color: whitesmoke;
  974.     color: #777;
  975.     padding: 8px 8px 8px 20px;
  976.     font-family:'Molengo', sans-serif;
  977.     font-size: 20px;
  978.     border-radius: 5px;
  979.     border-style:solid;
  980.     text-decoration: none;
  981.     margin-top: -20px;
  982. }
  983.  
  984. #formPassword::-webkit-input-placeholder{
  985.     color: #00aff0;
  986.     font-size: 17px;
  987. }
  988.  
  989. .modal-title{
  990.     color: #00aff0;
  991.     font-size: 25px;
  992. }
  993.  
  994. #modal-background{
  995.     background: whitesmoke;
  996.     border-radius: 10px;
  997. }
  998.  
  999. #background-inner{
  1000.     display: block;
  1001.     background: whitesmoke;
  1002. }
  1003.  
  1004. #login-button{
  1005.     background: #00aff0;
  1006.     color:whitesmoke;
  1007.     text-transform: uppercase;
  1008.     font-weight: bold;
  1009.     padding: 13px 35px 10px 35px;
  1010.     margin: -5px 20px 25px ;
  1011.     margin-left: 10%;
  1012.     text-align: center;
  1013.     cursor: pointer;
  1014.     box-shadow: inset 0 0 0 0 #475DFF;
  1015. }
  1016.  
  1017. #login-button:hover{
  1018.     box-shadow: inset 0 120px 0 0 #475dff;
  1019.     transition: all 1s ease;
  1020. }
  1021.  
  1022. #login-button:active{
  1023.     position: relative;
  1024.     top:-1px;
  1025. }
  1026.  
  1027. #close-button{
  1028.     color: #00aff0;
  1029.     font-size: 30px;
  1030. }
  1031.  
  1032. .group            {
  1033.   position:relative;
  1034.   margin-bottom:45px;
  1035. }
  1036. #formUsername:focus         { outline:none; }
  1037.  
  1038. #label               {
  1039.   color:#999;
  1040.   font-size:18px;
  1041.   font-weight:normal;
  1042.   position:absolute;
  1043.   pointer-events:none;
  1044.   left:11%;
  1045.   top:15px;
  1046.   transition:0.2s ease all;
  1047.   -moz-transition:0.2s ease all;
  1048.   -webkit-transition:0.2s ease all;
  1049. }
  1050.  
  1051. #formUsername:focus ~ label, #formUsername:valid ~ label        {
  1052.   top:-10px;
  1053.   font-size:14px;
  1054.   color:#00aff0;
  1055. }
  1056.  
  1057. .bar    { position:relative; display:block; width:90%; }
  1058. .bar:before, .bar:after     {
  1059.   content:'';
  1060.   height:2.1px;
  1061.   width:0;
  1062.   bottom:0px;
  1063.     left:11%;
  1064.   position:absolute;
  1065.   background:#00aff0;
  1066.   transition:0.5s ease all;
  1067.   -moz-transition:0.5s ease all;
  1068.   -webkit-transition:0.5s ease all;
  1069. }
  1070. .bar:before {
  1071.   left:50%;
  1072. }
  1073. .bar:after {
  1074.   right:50%;
  1075. }
  1076. #formUsername:focus ~ .bar:before, #formUsername:focus ~ .bar:after {
  1077.   width:50%;
  1078. }
  1079.  
  1080. .highlight {
  1081.   position:absolute;
  1082.   height:60%;
  1083.   width:100px;
  1084.   top:25%;
  1085.   left:0;
  1086.   pointer-events:none;
  1087.   opacity:0.5;
  1088. }
  1089.  
  1090. #formPassword:focus         { outline:none; }
  1091.  
  1092. #formPassword:focus ~ label, #formPassword:valid ~ label        {
  1093.   top:-10px;
  1094.   font-size:14px;
  1095.   color:#00aff0;
  1096. }
  1097.  
  1098. #formPassword:focus ~ .bar:before, #formPassword:focus ~ .bar:after {
  1099.   width:50%;
  1100. }
  1101.  
  1102. #forgot-password{
  1103.     color: #777;
  1104.     text-decoration: none;
  1105.     cursor: pointer;
  1106. }
Add Comment
Please, Sign In to add comment