Skip to content

Instantly share code, notes, and snippets.

@neicore
Created June 28, 2018 14:15
Show Gist options
  • Save neicore/5e78e073f5e8ef57edc11fb130aa46da to your computer and use it in GitHub Desktop.
Save neicore/5e78e073f5e8ef57edc11fb130aa46da to your computer and use it in GitHub Desktop.
Pricing brochures
<div class="container">
<div class="plans">
<ul class="priceBox">
<li class="header">Hatchling Plan</li>
<li class="minHeader">Now 60% OFF!</li>
<li class="text"><strong>Single</strong> domain</li>
<li class="text">One click installs</li>
<li class="text"><strong>Unmetered</strong> bandwidth</li>
<li class="footer text">Starting at Tsh 6250/month</li>
<p class="button1">Buy now</p>
</ul>
</div>
<div class="plans">
<ul class="priceBox">
<li class="header">Baby Plan</li>
<li class="minHeader">Now 60% OFF!</li>
<li class="text"><strong>Unlimited</strong> domain</li>
<li class="text">One click installs</li>
<li class="text"><strong>Unmetered</strong> bandwidth</li>
<li class="footer text">Starting at Tsh 9000/month</li>
<p class="button1">Buy now</p>
</ul>
</div>
<div class="plans">
<ul class="priceBox">
<li class="header">Business plan</li>
<li class="minHeader">Now 60% OFF!</li>
<li class="text"><strong>Unlimited</strong> domain</li>
<li class="text">One click installs</li>
<li class="text"><strong>Unmetered</strong> bandwidth</li>
<li class="text"><strong>Free</strong> Positive SSI</li>
<li class="text"><strong>Free</strong> dedicated IP</li>
<li class="text"><strong>Free</strong> VoIP Phone Service</li>
<li class="foooter text">Starting at Tsh 13500/month</li>
<p class="button">Buy now</p>
</ul>
</div>
</div>

Pricing brochures

A simple code design of pricing bronchures or pricing tables found on websites that offers various payment plans

A Pen by neicore on CodePen.

License.

alert("please use a wide pixels layout for better results");
body{
background-color: #003;
}
.container{
display: flex;
justify-content: 100px;
}
.plans{
width: 30%;
}
.priceBox{
height: 350px;
width: 245px;
background-color: #1919ff;
color: #fff;
border-radius: 10px;
box-shadow: 0.5px 0.5px 50px 0 #0c0c0c;
font-family: georgia;
line-height: 1.5;
padding: 0;
margin: 0;
}
li{
list-style: none;
line-height: 1.6;
}
.header{
text-align: center;
background-color: #000099;
height: 50px;
font-size: 24pt;
font-family: Times;
text-shadow: 0.5px 0.5px 10px #0c0c0c;
}
.minHeader{
text-align: center;
background-color: #0000c1;
height: 25px;
font-size: 12pt;
font-family: Times;
}
.text{
position: relative;
left: 30px;
}
strong{
color: #4f9;
}
.footer{
position: relative;
top: 90px;
color: #4f9;
font-size: 12.5pt;
}
.foooter{
position: relative;
top: 15px;
color: #4f9;
font-size: 12.5pt;
}
.button{
width: 150px;
height: 35px;
background-color: #0000c1;
position: relative;
left: 50px;
top: 20px;
text-align: center;
font-size: 15pt;
border-radius: 50px;
box-shadow: 0.5px 0.5px 10px #0c0c0c;
}
.button1{
width: 150px;
height: 35px;
background-color: #0000c1;
position: relative;
left: 50px;
top: 90px;
text-align: center;
font-size: 15pt;
border-radius: 50px;
box-shadow: 0.5px 0.5px 10px #0c0c0c;
}
.button:hover{
background-color: #0000f1;
}
.button1:hover{
background-color: #0000f1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment