"card(Hover Effect)"
Bootstrap 3.0.0 Snippet by okrish

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
28
29
30
31
32
33
34
35
36
37
<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 rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" />
<h1 class="demo-title">Material responsive pricing tables</h1>
<div class="pricing-table">
<div class="pricing-option">
<i class="material-icons">important_devices</i>
<h1>Ui design</h1>
<hr />
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Sapiente harum voluptatum, sit cum voluptatibus inventore quae qui provident eveniet dicta at, quibusdam ipsam iusto reprehenderit hic saepe nesciunt sed illo.</p>
<hr />
<div class="price">
<div class="front">
<span class="price">199 <b>$</b></span>
</div>
<div class="back">
<a href="#" class="button">Purchase now</a>
</div>
</div>
</div>
<div class="pricing-option">
<i class="material-icons">perm_identity</i>
<h1>Ux design</h1>
<hr />
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Sapiente harum voluptatum, sit cum voluptatibus inventore quae qui provident eveniet dicta at, quibusdam ipsam iusto reprehenderit hic saepe nesciunt sed illo.</p>
<hr />
<div class="price">
<div class="front">
<span class="price">399 <b>$</b></span>
</div>
<div class="back">
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
28
29
30
31
32
33
34
35
36
37
@import url(https://fonts.googleapis.com/css?family=Josefin+Sans:400,300,300italic,400italic,600,700,600italic,700italic);
body {
font-family: "Josefin Sans", sans-serif;
line-height: 1;
padding: 20px;
height: 100%;
background: #eee;
}
.demo-title {
text-align: center;
font-size: 3rem;
margin-bottom: 50px;
}
.pricing-table {
display: table;
width: 100%;
}
.pricing-table .pricing-option {
width: 28%;
background: white;
float: left;
padding: 2%;
text-align: center;
-webkit-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
}
.pricing-table .pricing-option:nth-child(even) {
margin: 0 2%;
}
.pricing-table .pricing-option:hover {
cursor: pointer;
box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.3);
-webkit-transform: scale(1.04);
transform: scale(1.04);
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: