"Bootstrap 3D buttons"
Bootstrap 3.2.0 Snippet by joshuaedwardk

<link href="//netdna.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//netdna.bootstrapcdn.com/bootstrap/3.2.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="container"> <div class="row"> <h2>3D Buttons</h2> <div class="well text-center"> <button type="button" class="btn btn-hot text-uppercase btn-sm">hot button</button> <button type="button" class="btn btn-sunny text-uppercase btn-sm">Sunny button</button> <button type="button" class="btn btn-fresh text-uppercase btn-sm">Fresh button</button> <button type="button" class="btn btn-sky text-uppercase btn-sm">Sky button</button> </div> <div class="well text-center"> <button type="button" class="btn btn-hot text-uppercase">hot button</button> <button type="button" class="btn btn-sunny text-uppercase">Sunny button</button> <button type="button" class="btn btn-fresh text-uppercase">Fresh button</button> <button type="button" class="btn btn-sky text-uppercase">Sky button</button> </div> <div class="well text-center"> <button type="button" class="btn btn-hot text-uppercase btn-lg">hot button</button> <button type="button" class="btn btn-sunny text-uppercase btn-lg">Sunny button</button> <button type="button" class="btn btn-fresh text-uppercase btn-lg">Fresh button</button> <button type="button" class="btn btn-sky text-uppercase btn-lg">Sky button</button> </div> </div> </div>
.btn-hot { color: #fff; background-color: #db5566; border-bottom:2px solid #af4451; } .btn-hot:hover, .btn-sky.active:focus, .btn-hot:focus, .open>.dropdown-toggle.btn-hot { color: #fff; background-color: #df6a78; border-bottom:2px solid #b25560; outline: none;} .btn-hot:active, .btn-hot.active { color: #fff; background-color: #c04b59; border-top:2px solid #9a3c47; margin-top: 2px; } .btn-sunny { color: #fff; background-color: #f4ad49; border-bottom:2px solid #c38a3a; } .btn-sunny:hover, .btn-sky.active:focus, .btn-sunny:focus, .open>.dropdown-toggle.btn-sunny { color: #fff; background-color: #f5b75f; border-bottom:2px solid #c4924c; outline: none; } .btn-sunny:active, .btn-sunny.active { color: #fff; background-color: #d69840; border-top:2px solid #ab7a33; margin-top: 2px; } .btn-fresh { color: #fff; background-color: #51bf87; border-bottom:2px solid #41996c; } .btn-fresh:hover, .btn-sky.active:focus, .btn-fresh:focus, .open>.dropdown-toggle.btn-fresh { color: #fff; background-color: #66c796; border-bottom:2px solid #529f78; outline: none; } .btn-fresh:active, .btn-fresh.active { color: #fff; background-color: #47a877; border-top:2px solid #39865f; outline: none; outline-offset: none; margin-top: 2px; } .btn-sky { color: #fff; background-color: #0bacd3; border-bottom:2px solid #098aa9; } .btn-sky:hover,.btn-sky.active:focus, .btn-sky:focus, .open>.dropdown-toggle.btn-sky { color: #fff; background-color: #29b6d8; border-bottom:2px solid #2192ad; outline: none; } .btn-sky:active, .btn-sky.active { color: #fff; background-color: #0a97b9; border-top:2px solid #087994; outline-offset: none; margin-top: 2px; } .btn:focus, .btn:active:focus, .btn.active:focus { outline: none; outline-offset: 0px; } }

Related: See More


Questions / Comments: