"Circle Button"
Bootstrap 3.0.0 Snippet by escapedlion

<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//netdna.bootstrapcdn.com/bootstrap/3.0.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 ----------> <link href="https://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.min.css" rel="stylesheet"> <h2>credit card</h2> <button type="button" class="btn btn-default btn-circle btn-xl"><i class="fa fa-credit-card"></i></button> <button type="button" class="btn btn-primary btn-circle btn-xl"><i class="fa fa-credit-card fa-lg"></i></button> <button type="button" class="btn btn-success btn-circle btn-xl"><i class="fa fa-credit-card fa-lg"></i></button> <button type="button" class="btn btn-info btn-circle btn-xl"><i class="fa fa-credit-card"></i></button> <button type="button" class="btn btn-warning btn-circle btn-xl"><i class="fa fa-credit-card"></i></button> <button type="button" class="btn btn-danger btn-circle btn-xl"><i class="fa fa-credit-card"></i></button> <h2>ticket</h2> <button type="button" class="btn btn-default btn-circle btn-xl colorCycle"><i class="fa fa-ticket fa-lg"></i></button> <button type="button" class="btn btn-primary btn-circle btn-xl"><i class="fa fa-ticket"></i></button> <button type="button" class="btn btn-success btn-circle btn-xl"><i class="fa fa-ticket"></i></button> <button type="button" class="btn btn-info btn-circle btn-xl"><i class="fa fa-ticket"></i></button> <button type="button" class="btn btn-warning btn-circle btn-xl"><i class="fa fa-ticket"></i></button> <button type="button" class="btn btn-danger btn-circle btn-xl"><i class="fa fa-ticket"></i></button>
body{margin:40px;} .btn-circle { width: 30px; height: 30px; text-align: center; padding: 6px 0; font-size: 12px; line-height: 1.428571429; border-radius: 15px; } .btn-circle.btn-xl { width: 70px; height: 70px; padding: 10px 16px; font-size: 24px; line-height: 1.33; border-radius: 35px; } .colorCycle { background-color: rgb(50, 118, 177); border: 0; padding-top: 5px; padding-right: 7px; padding-bottom: 7px; padding-left: 7px; color: #FFF; text-align: center; animation-name: homeCycle; animation-duration:6s; animation-direction:alternate; animation-iteration-count:infinite; -webkit-animation-name: homeCycle; -webkit-animation-duration:6s; -webkit-animation-direction:alternate; -webkit-animation-iteration-count:infinite; } @keyframes homeCycle { 0% {background-color: rgb(71, 164, 71);} 25% {background-color: rgb(57, 179, 215);} 50% {background-color: rgb(237, 156, 40);} 75% {background-color: rgb(210, 50, 45);} } @-webkit-keyframes homeCycle { 0% {background-color:#006;} 25% {background-color:#060;} 50% {background-color:#CC3200;} 75% {background-color:#603;} }

Related: See More


Questions / Comments: