"Bootstrap 3D buttons"
Bootstrap 3.2.0 Snippet by i-heart-php

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<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-capitalize btn-xs">hot button</button>
<button type="button" class="btn btn-sunny text-capitalize btn-xs">Sunny button</button>
<button type="button" class="btn btn-fresh text-capitalize btn-xs">Fresh button</button>
<button type="button" class="btn btn-sky text-capitalize btn-xs">Sky button</button>
</div>
<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>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
@import url(http://fonts.googleapis.com/css?family=Oswald);
body{
font-family: 'Oswald', sans-serif;
}
.btn{
margin: 4px;
box-shadow: 1px 1px 5px #888888;
}
.btn-xs{
font-weight: 300;
}
.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;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: