"Bootstrap radius stylist buttons"
Bootstrap 3.3.0 Snippet by taruns715

<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>
.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; }

Related: See More


Questions / Comments: