a7-css-shenanigans/css/button.css

35 lines
533 B
CSS

.btnanimate
{
transition: all 0.1s;
-webkit-transition: all 0.1s;
}
.action-button
{
position: relative;
padding: 10px 40px;
margin: 0px 10px 10px 0px;
float: left;
border-radius: 16px;
color: #FFF;
text-decoration: none;
}
.dabtn
{
background-color: #975ac5;
box-shadow: 0rem 0rem 1rem #cf9ef0;
}
.action-button:active
{
transform: translate(0px,2px);
-webkit-transform: translate(0px,2px);
border-bottom: 1px solid;
}
.fill-row {
display: flex;
flex-direction: column;
justify-content: space-between;
}