Advertisement
TROLERMASTERH

Style

May 14th, 2016
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.75 KB | None | 0 0
  1. button.Cheatbutton {
  2.     position: relative;
  3.     background-color: #4CAF50;
  4.     border: none;
  5.     font-size: 15px;
  6.     color: #FFFFFF;
  7.     padding: 0px;
  8.     height: 27px;
  9.     width: 70px;
  10.     text-align: center;
  11.     -webkit-transition-duration: 0.4s; /* Safari */
  12.     transition-duration: 0.4s;
  13.     text-decoration: none;
  14.     overflow: hidden;
  15.     cursor: pointer;
  16. }
  17.  
  18. button.Cheatbutton:after {
  19.     content: "";
  20.     background: #90EE90;
  21.     display: block;
  22.     position: absolute;
  23.     padding-top: 300%;
  24.     padding-left: 350%;
  25.     margin-left: -20px!important;
  26.     margin-top: -120%;
  27.     opacity: 0;
  28.     transition: all 0.8s
  29. }
  30.  
  31. button.Cheatbutton:active:after {
  32.     padding: 0;
  33.     margin: 0;
  34.     opacity: 1;
  35.     transition: 0s
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement