"Test"
Bootstrap 3.3.0 Snippet by lildwitte

<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 ----------> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> <div class="row"> <div class="col-md-4 col-sm-12"> <div class="serviceBox green"> <div class="service-icon"> <span><i class="fa fa-car"></i></span> </div> <div class="service-content"> <h3 class="title">One-Way Miles</h3> <p class="description">4.6</p> <p>1611 meters in a mile.</p> </div> </div> </div> <div class="col-md-4 col-sm-12"> <div class="serviceBox orange"> <div class="service-icon"> <span><i class="fa fa-clock-o"></i></span> </div> <div class="service-content"> <h3 class="title">Est. Drive Time</h3> <p class="description">8 minutes</p> <p>60 seconds in a minute.</p> </div> </div> </div> <div class="col-md-4 col-sm-12"> <div class="serviceBox blue"> <div class="service-icon"> <span><i class="fa fa-money"></i></span> </div> <div class="service-content"> <h3 class="title">Base Price</h3> <p class="description">$50</p> </div> </div> </div> </div>
body{ background-color: #525252; } .serviceBox{text-align: center;margin-top: 60px;position: relative;z-index: 1; margin-bottom: 21px;} .serviceBox .service-icon{width: 78px;height: 78px;border-radius:3px;background: #fff;margin: 0 auto;position: absolute;top: -34px;left: 0;right: 0;z-index: 1;transition: all 0.3s ease-out 0s;} .serviceBox:hover .service-icon{transform: rotate(45deg);} .serviceBox .service-icon span{display: inline-block;width: 60px;height: 60px;line-height: 60px;border-radius:3px;background: #727cb6;font-size: 30px;color: #fff;margin: auto;position: absolute;top: 0;left: 0;bottom: 0;right: 0;transition: all 0.3s ease-out 0s;} .serviceBox .service-icon span i{transition: all 0.3s ease-out 0s;} .serviceBox:hover .service-icon span i{transform: rotate(-45deg);} .serviceBox .service-content{background: #fff;border: 1px solid #e7e7e7;border-radius: 3px;padding: 55px 15px;position: relative;} .serviceBox .service-content:before{content: "";display: block;width: 80px;height: 80px;border: 1px solid #e7e7e7;border-radius: 3px;margin: 0 auto;position: absolute;top: -37px;left: 0;right: 0;z-index: -1;transition: all 0.3s ease-out 0s;} .serviceBox:hover .service-content:before{transform: rotate(45deg);} .serviceBox .title{font-size: 17px;font-weight: 500;color: #324545;text-transform: uppercase;margin: 0 0 25px 0;position: relative;transition: all 0.3s ease-out 0s;} .serviceBox:hover .title{color: #727cb6;} .serviceBox .description{font-size: 14px;font-weight: 500;line-height: 24px;margin-bottom: 0;} .serviceBox .read-more{display: block;width: 40px;height: 40px;line-height: 38px;border-radius: 50%;background: #fff;border: 1px solid #e7e7e7;font-size: 14px;color: #c4c2c2;margin: 0 auto;position: absolute;bottom: -17px;left: 0; right: 0;transition: all 0.3s ease-out 0s;} .serviceBox .read-more:hover{border: 1px solid #727cb6;color: #727cb6;text-decoration: none;} .serviceBox.green .service-icon span{ background: #008b8b; } .serviceBox.blue .service-icon span{ background: #3498db; } .serviceBox.orange .service-icon span{ background: #e67e22; } .serviceBox.green:hover .title{ color: #008b8b; } .serviceBox.blue:hover .title{ color: #3498db; } .serviceBox.orange:hover .title{ color: #e67e22; } .serviceBox:hover .read-more{border: 1px solid #727cb6;color: #727cb6;} .serviceBox.green:hover .read-more{border: 1px solid #008b8b;color: #008b8b;} .serviceBox.blue:hover .read-more{border: 1px solid #3498db;color: #3498db;} .serviceBox.orange:hover .read-more{border: 1px solid #e67e22;color: #e67e22;}

Related: See More


Questions / Comments: