Advertisement
Guest User

Untitled

a guest
Nov 17th, 2019
253
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.41 KB | None | 0 0
  1.  
  2. /*--Asterios.ws--*/
  3. .container-login100-form-btn {
  4.   display: -webkit-box;
  5.   display: -webkit-flex;
  6.   display: -moz-box;
  7.   display: -ms-flexbox;
  8.   display: flex;
  9.   flex-wrap: wrap;
  10.   justify-content: center;
  11.   padding-top: 13px;
  12. }
  13.  
  14. .wrap-login100-form-btn {
  15.   width: 100%;
  16.   display: block;
  17.   position: relative;
  18.   z-index: 1;
  19.   border-radius: 25px;
  20.   overflow: hidden;
  21.   margin: 0 auto;
  22. }
  23.  
  24. .login100-form-bgbtn {
  25.   position: absolute;
  26.   z-index: -1;
  27.   width: 300%;
  28.   height: 100%;
  29.   background: #a64bf4;
  30.   background: -webkit-linear-gradient(right, #21d4fd, #b721ff, #21d4fd, #b721ff);
  31.   background: -o-linear-gradient(right, #21d4fd, #b721ff, #21d4fd, #b721ff);
  32.   background: -moz-linear-gradient(right, #21d4fd, #b721ff, #21d4fd, #b721ff);
  33.   background: linear-gradient(right, #21d4fd, #b721ff, #21d4fd, #b721ff);
  34.   top: 0;
  35.   left: -100%;
  36.  
  37.   -webkit-transition: all 0.4s;
  38.   -o-transition: all 0.4s;
  39.   -moz-transition: all 0.4s;
  40.   transition: all 0.4s;
  41. }
  42.  
  43. .login100-form-btn {
  44.   font-family: Poppins-Medium;
  45.   font-size: 15px;
  46.   color: #fff;
  47.   line-height: 1.2;
  48.   text-transform: uppercase;
  49.  
  50.   display: -webkit-box;
  51.   display: -webkit-flex;
  52.   display: -moz-box;
  53.   display: -ms-flexbox;
  54.   display: flex;
  55.   justify-content: center;
  56.   align-items: center;
  57.   padding: 0 20px;
  58.   width: 100%;
  59.   height: 50px;
  60. }
  61.  
  62. .wrap-login100-form-btn:hover .login100-form-bgbtn {
  63.   left: 0;
  64. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement