Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- button.Cheatbutton {
- position: relative;
- background-color: #4CAF50;
- border: none;
- font-size: 15px;
- color: #FFFFFF;
- padding: 0px;
- height: 27px;
- width: 70px;
- text-align: center;
- -webkit-transition-duration: 0.4s; /* Safari */
- transition-duration: 0.4s;
- text-decoration: none;
- overflow: hidden;
- cursor: pointer;
- }
- button.Cheatbutton:after {
- content: "";
- background: #90EE90;
- display: block;
- position: absolute;
- padding-top: 300%;
- padding-left: 350%;
- margin-left: -20px!important;
- margin-top: -120%;
- opacity: 0;
- transition: all 0.8s
- }
- button.Cheatbutton:active:after {
- padding: 0;
- margin: 0;
- opacity: 1;
- transition: 0s
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement