I need to Custom my checkbox like this image. How can I do that? Please help me to do this.
Here is My code. But its Just a tag and contents only. I need to select these tags when a user clicks. and also user can deselect this tags. This should work like a checkbox.
.off-white-one{
background-color: #e4e8f2;
}
.off-white-two{
background-color: #dde2ee;
}
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-beta.3/css/bootstrap.css" rel="stylesheet"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="container">
<div class="row mt-30">
<a href="" class="col-sm-4 col-xs-12 wrapper-xl dk fadeInRight animated off-white-two a-block" data-animation="fadeInRight" data-delay="500">
<p class="text-center">
<span class="fa fa-stack fa-2x">
<i class="fa fa-circle fa-stack-2x text-white"></i>
<i class="fa fa-clock-o fa-stack-1x text-info"></i>
</span>
</p>
<div>
<h3 class="text-center">Late Check-outs</h3>
</div>
</a>
<a href="" class="col-sm-4 col-xs-12 wrapper-xl fadeInDown animated off-white-one a-block" data-animation="fadeInDown" data-delay="750">
<p class="text-center">
<span class="fa fa-stack fa-2x">
<i class="fa fa-circle fa-stack-2x text-white"></i>
<i class="fa fa-tint fa-stack-1x text-info"></i>
</span>
</p>
<div>
<h3 class="text-center">Mid-Stay Cleaning</h3>
</div>
</a>
<a href="" class="col-sm-4 col-xs-12 wrapper-xl dker fadeInLeft animated off-white-two a-block data-animation="fadeInLeft" data-delay="1000">
<p class="text-center">
<span class="fa fa-stack fa-2x">
<i class="fa fa-circle fa-stack-2x text-white"></i>
<i class="fa fa-plus-circle fa-stack-1x text-info"></i>
</span>
</p>
<div>
<h3 class="text-center">More towels & Sheetbeds</h3>
</div>
</a>
</div>
</div>
2
Answers
One sample custom check box is designed as per your requirement,
you can change image, colors and size there as you need.