"3d button"
Bootstrap 3.0.0 Snippet by evarevirus

<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script> <script src="//code.jquery.com/jquery-1.11.1.min.js"></script> <!------ Include the above in your HEAD tag ----------> <div class="button">This is a button</div>
body { text-align: center; padding: 200px; } .button { display: inline-block; background: #4285f4; color: #fff; text-transform: uppercase; padding: 20px 30px; border-radius: 5px; box-shadow: 0px 17px 10px -10px rgba(0, 0, 0, 0.4); cursor: pointer; -webkit-transition: all ease-in-out 300ms; transition: all ease-in-out 300ms; } .button:hover { box-shadow: 0px 37px 20px -20px rgba(0, 0, 0, 0.2); -webkit-transform: translate(0px, -10px) scale(1.2); transform: translate(0px, -10px) scale(1.2); }

Related: See More


Questions / Comments: