Button by adamgiebl
#e8e8e8
1button { 2 position: relative; 3 padding: 10px 40px; 4 margin: 0px 10px 10px 0px; 5 float: left; 6 border-radius: 3px; 7 font-size: 20px; 8 color: #FFF; 9 text-decoration: none; 10 background-color: #2ecc71; 11 border: none; 12 border-bottom: 5px solid #27ae60; 13 text-shadow: 0px -2px #27ae60; 14 -webkit-transition: all 0.1s; 15 transition: all 0.1s; 16} 17 18button:hover, button:active { 19 -webkit-transform: translate(0px,5px); 20 -ms-transform: translate(0px,5px); 21 transform: translate(0px,5px); 22 border-bottom: 1px solid #2ecc71; 23}
4.3K views
4.3K views
Comments
MIT License