"MATERIAL TYPE BUTTONS"
Bootstrap 3.3.0 Snippet by jeevan123456

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.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>BUTTONS FOR BOOTSTRAP</h2>
<button type="button" class="btn btn-default buttons textblack">Default</button>
<button type="button" class="btn btn-primary buttons">Primary</button>
<button type="button" class="btn btn-success buttons">Success</button>
<button type="button" class="btn btn-info buttons">Info</button>
<button type="button" class="btn btn-warning buttons ">Warning</button>
<button type="button" class="btn btn-danger buttons red ">Danger</button>
<button type="button" class="btn btn-link ">Link</button>
</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
/************ BUTTONS CSS -
MATERIAL TYPE ****************/
.buttons {
text-align: center;
display: inline-block;
padding: 8px 30px;
border-radius: 2px;
letter-spacing: .5px;
border-radius: 2px;
text-decoration: none;
color: #fff;
overflow: hidden;
position: relative;
z-index: 0;
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
-webkit-transition: all 0.2s ease;
-moz-transition: all 0.2s ease;
-o-transition: all 0.2s ease;
transition: all 0.2s ease;
}
.textblack {
color:#1c1c1c;
}
/************ BACKGROUND COLOR FOR BUTTONS -
MATERIAL TYPE ****************/
.red {
background-color: #F44336;
}
.pink {
background-color: #E91E63;
}
.blue {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: