Advertisement
Suwandiaminsangaji

style.css

Jul 18th, 2020
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.59 KB | None | 0 0
  1. @import url('https://fonts.googleapis.com/css?family=Josefin+Sans');
  2.  
  3. *{
  4.   margin: 0;
  5.   padding: 0;
  6.   box-sizing: border-box;
  7.   outline: none;
  8.   text-decoration: none;
  9. /*  font-family: sans-serif;*/
  10.   font-size: 16px;
  11. }
  12.  
  13. body{
  14.   background: #3aaf9f;
  15. }
  16.  
  17. .wrapper{
  18.   background: #fff;
  19.   padding: 2px 10px;
  20.   position: absolute;
  21.   top: 50%;
  22.   left: 50%;
  23.   transform: translate(-50%,-50%);
  24.   border-radius: 30px;
  25.   padding-bottom: 20px;
  26. }
  27.  
  28. .wrapper .title{
  29.   text-align: center;
  30.   padding: 20px;
  31.   font-size: 1.4em;
  32.   color: white;
  33.   position: relative;
  34.   margin-bottom: 30px;
  35.   line-height: 30px;
  36.   border-style: none;
  37.   background: #33CC66;
  38.   text-transform: uppercase;
  39.   border-top-right-radius: 30px;
  40.   border-top-left-radius: 30px;
  41.  
  42. }
  43. /*.wrapper button span{
  44.   position:left;
  45. }*/
  46. .wrapper .form .input_field{
  47.   position: relative;
  48.   margin-bottom: 10px;
  49. }
  50.  
  51. .wrapper .form .input_field .input{
  52.   width: 100%;
  53.   padding: 12px;
  54.   padding-left: 30px;
  55.   border-style: solid;
  56.   background: #eeeeee;
  57.  
  58. }
  59.  
  60. .wrapper .form .btn{
  61.   width: 70%;
  62.   margin: 20px auto 0;
  63.   background: #33CC66;
  64.   text-align: center;
  65.   padding: 12px;
  66.   margin-top: 30px;
  67.   border-radius: 25px;
  68.   font-size: 8px;
  69. }
  70.  
  71. .wrapper .form .btn a{
  72.   color: #01141FFF;
  73. }
  74.  
  75. .wrapper .form .input_field i{
  76.   position: absolute;
  77.   top: 10px;
  78.   left: 10px;
  79.   font-size: 14px;
  80.   color: #1d2120;
  81. }
  82.  
  83. ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  84.   color: #1d2120;
  85. }
  86. ::-moz-placeholder { /* Firefox 19+ */
  87.  color: #1d2120;
  88. }
  89. :-ms-input-placeholder { /* IE 10+ */
  90.   color: #1d2120;
  91. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement