"plans horizontal"
Bootstrap 4.1.1 Snippet by armis

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="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/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" type="text/css" href="https://fonts.googleapis.com/css?family=Open+Sans:Condensed" />
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,800' rel='stylesheet' type='text/css'>
<div id="plan">
<div class="title">
<h1>$299 <span>/month</span></h1>
<p>Simple</p>
</div>
<div class="containDetails">
<ul class="details">
<li class="first">5 <span>Accounts</span></li>
<li>50GB<span>Storage</span></li>
<li>1 <span>Domain</span></li>
<li>500GB<span>Bandwidth</span></li>
</ul>
</div>
<div class="end">
<div class="select">
<a href="#" class="button button-flat-royal button-pill">Select Plan</a>
</div></div>
</div>
<div id="plan">
<div class="title">
<h1>$1199 <span>/month</span></h1>
<p>Gold</p>
</div>
<div class="containDetails">
<ul class="details">
<li class="first">5 <span>Accounts</span></li>
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
#plan{
width:945px;
height:200px;
background-color:#f6f6f6;
background: -webkit-linear-gradient(left, #efefef, #e6e6e6);
background: -moz-linear-gradient(left, #efefef, #e6e6e6);
background: -ms-linear-gradient(left, #efefef, #e6e6e6);
background: -o-linear-gradient(left, #efefef, #e6e6e6);
margin: 0 auto;
margin-top: 30px;
}
.title{
width:200px;
height:200px;
background-color: #a3a3a3;
float:left;
-webkit-transition: background-color 0.3s ease-out 0.3s, width 0.3s ease-out 0.3s;
-moz-transition:background-color width 0.3s ease-out 0.3s, width 0.3s ease-out 0.3s;
-o-transition: background-color width 0.3s ease-out 0.3s, width 0.3s ease-out 0.3s;
transition: background-color width 0.3s ease-out 0.3s, width 0.3s ease-out 0.3s;
}
.title h1{
color:white;
font-family:'Open Sans';
text-transform:uppercase;
font-size:30px;
font-weight: 100;
text-align:center;
margin:0px;
padding:0px;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: