"MyRP BTN Colors"
Bootstrap 3.3.0 Snippet by KathrynParker

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<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="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<div class="container">
<div class="row">
<button type="button" class="btn btn-primary">Primary</button>
<button type="button" class="btn btn-default">Secondary</button>
<button type="button" class="btn btn-success">Success</button>
<button type="button" class="btn btn-warning">Warning</button>
<button type="button" class="btn btn-danger">Danger</button>
<button type="button" class="btn btn-info">Info</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
.btn {
display: inline-block;
margin: 10px;
font-weight: normal;
text-align: center;
border: 1px solid transparent;
white-space: nowrap;
padding: 6px 12px;
font-size: 16px;
line-height: 1.42857143;
border-radius: 4px;
}
/*Primary*/
.btn-primary {
color: #ffffff;
background-color: #00aeef;
border-color: #009bd6;
}
.btn-primary:hover {
color: #ffffff;
background-color: #0089bc;
border-color: #006f98;
}
.btn-primary:active {
color: #ffffff;
background-color: #0075b2;
border-color: #006f98;
}
/*Default*/
.btn-default {
color: #333333;
background-color: transparent;
border-color: #cccccc;
}
.btn-default:hover {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: