"Bootstrap radius stylist buttons"
Bootstrap 3.3.0 Snippet by taruns715

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<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">
<center>
<div class="btn-group">
<button type="button" class="btn-stylist text-uppercase btn-stylist-green">Accept</button>
<button type="button" class="btn-un-stylist">Reject</button>
</div>
<div class="clearfix"></div>
<br>
<div class="btn-group">
<button type="button" class="btn-stylist text-uppercase btn-stylist-primary">Accept</button>
<button type="button" class="btn-un-stylist ">REJECT</button>
</div>
</center>
</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
.btn-stylist {
width: 140px;
height: 52px;
border-top-left-radius: 30px;
border-bottom-left-radius: 30px;
border: none;
font-size: 16px;
}
.btn-stylist-green {
background: #55ce63;
color: #fff;
}
.btn-stylist-primary{
background: #009efb;
color: #fff;
}
.btn-un-stylist {
width: 140px;
height: 52px;
background: #f7f7f7;
border-top-right-radius: 30px;
border-bottom-right-radius: 30px;
border: none;
color: #555555;
font-size: 16px;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: