Advertisement
Guest User

Untitled

a guest
Apr 8th, 2020
273
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.18 KB | None | 0 0
  1. *{
  2.     margin: 0;
  3.     padding: 0;
  4.     font-family: sans-serif;
  5. }
  6. .hero{
  7.     height: 100%;
  8.     width: 100%;
  9.     background-image: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4)),url("img/banner.jpg");
  10.     background-position: center;
  11.     background-size: cover;
  12.     position: absolute;
  13. }
  14. .form-box{
  15.     width: 380px;
  16.     height: 550px;
  17.     position: relative;
  18.     margin: 6% auto;
  19.     background: #fff;
  20.     padding: 5px;
  21.     overflow: hidden;
  22. }
  23. .form-box-login{
  24.     width: 380px;
  25.     height: 320px;
  26.     position: relative;
  27.     margin: 6% auto;
  28.     background: #fff;
  29.     padding: 5px;
  30.     overflow: hidden;
  31. }
  32. .button-box{
  33.     width: 220px;
  34.     margin: 35px auto;
  35.     position: relative;
  36.     box-shadow: 0 0 20px 9px #ff61241f;
  37.     border-radius: 30px;
  38. }
  39. .toggle-btn{
  40.     padding: 10px 30px;
  41.     cursor: pointer;
  42.     background: transparent;
  43.     border: 0;
  44.     outline: none;
  45.     position: relative;
  46. }
  47. #btn{
  48.     top: 0;
  49.     left: 0;
  50.     position: absolute;
  51.     width: 110px;
  52.     height: 100%;
  53.     background: linear-gradient(to right, #ff105f, #ffad06);
  54.     border-radius: 30px;
  55.     transition: .5s;
  56. }
  57. .register-icon{
  58.     margin: 30px auto;
  59.     text-align: center;
  60. }
  61. .register-heading{
  62.     text-align: center;
  63.     margin-top: 8%;
  64.     margin-bottom: -15%;
  65.     color: #495057;
  66. }
  67. .social-icons{
  68.     margin: 30px auto;
  69.     text-align: center;
  70. }
  71. .social-icons img{
  72.     width: 20px;
  73.     margin: 0 12px;
  74.     box-shadow: 0 0 20px 0 #7f7f7f3d;
  75.     cursor: pointer;
  76.     border-radius: 50%;
  77. }
  78. .input-group{
  79.     top: 100px;
  80.     position: absolute;
  81.     width: 280px;
  82.     transition: .5s;
  83. }
  84. .input-field{
  85.     width: 100%;
  86.     padding: 10px 0;
  87.     margin: 5px 0;
  88.     border-left: 0;
  89.     border-top: 0;
  90.     border-right: 0;
  91.     border-bottom: 1px solid #999;
  92.     background: transparent;
  93. }
  94. .input-field-title{
  95.     width: 100%;
  96.     padding: 10px 0;
  97.     margin: 5px 0;
  98.     border-left: 0;
  99.     border-top: 0;
  100.     border-right: 0;
  101.     border-bottom: 1px solid #999;
  102.     background: linear-gradient(to right, #ff105f, #ffad06);
  103.     text-align: center;
  104. }
  105. .submit-btn{
  106.     width: 85%;
  107.     padding: 10px 30px;
  108.     cursor: pointer;
  109.     display: block;
  110.     margin: auto;
  111.     background: linear-gradient(to right, #ff105f, #ffad06);
  112.     border: 0;
  113.     outline: none;
  114.     border-radius: 30px;
  115. }
  116. .check-box{
  117.     margin: 30px 10px 30px 0;
  118. }
  119. span{
  120.     color: #777;
  121.     font-size: 12px;
  122.     bottom: 68px;
  123.     position: absolute;
  124. }
  125. #LOGIN{
  126.     left: 50px;
  127. }
  128. #REGISTER{
  129.     left: 450px;
  130. }
  131. #EMPLOYEE{
  132.     left: 50px;
  133. }
  134. #HIRER{
  135.     left: 450px;
  136. }
  137. .resume-btn{
  138.     padding: 10px;
  139.     color: white;
  140.     background-color: #009578;
  141.     border: 1px solid #000;
  142.     border-radius: 5px;
  143.     cursor: pointer;
  144.     margin: 5px 0;
  145.     border-left: 0;
  146.     border-top: 0;
  147.     border-right: 0;
  148.     border-bottom: 0;
  149.     width: 100%;
  150. }
  151. .resume-btn:hover{
  152.     background-color: aquamarine;
  153. }
  154. .resume-btn-text{
  155.     margin-left: 10px;
  156.     font-family: sans-serif;
  157.     color: #aaa;
  158.     width: 100%;
  159.     padding: 20px 0;
  160.     margin: 5px 0;
  161.     border-left: 0;
  162.     border-top: 0;
  163.     border-right: 0;
  164.     border-bottom: 0;
  165.     background: transparent;
  166. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement