34 lines
650 B
CSS
34 lines
650 B
CSS
|
|
.button {
|
|
position: relative;
|
|
border: none;
|
|
color: #ffffff;
|
|
text-align: center;
|
|
-webkit-transition-duration: 0.4s; /* Safari */
|
|
transition-duration: 0.4s;
|
|
text-decoration: none;
|
|
overflow: hidden;
|
|
cursor: pointer;
|
|
}
|
|
.button:after {
|
|
content: "";
|
|
background-color: #6752e0;
|
|
/* background: #4f46e5; */
|
|
display: block;
|
|
position: absolute;
|
|
padding-top: 300%;
|
|
padding-left: 350%;
|
|
margin-left: -20px !important;
|
|
margin-top: -120%;
|
|
opacity: 0;
|
|
transition: all 0.8s;
|
|
}
|
|
|
|
.button:active:after {
|
|
padding: 0;
|
|
margin: 0;
|
|
opacity: 1;
|
|
transition: 0s;
|
|
}
|
|
|