WPCharts Logo
by Ian Sadovy
HTML
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800" rel="stylesheet">
<!-- <button onclick="save()">Save</button> -->
<div id="container">
<div id="body">
<table cellspacing="10">
<tr>
<td><div class='bar bar-1'></div></td>
<td><div class='bar bar-2'></div></td>
<td><div class='bar bar-3'></div></td>
</tr>
</table>
</div>
<div id="title">
<b>WP</b><span class="lite">CHARTS</span>
</div>
</div>
CSS
#container {
background: #F44336;/*#FF6D00;*/
/* padding: 20px; */
width: 256px;
height: 256px;
max-width: 256px;
max-height: 256px;
overflow: hidden;
position: relative;
}
#body {
width: 140px;
margin: 0 auto;
/* background: white; */
margin-top: 40px;
border-bottom: 5px solid white;
}
table {
width: 100%;
}
#title {
color:white;
font-family: 'Open Sans';
text-align: center;
font-size: 36px;
position: absolute;
bottom: 38px;
left: 0;
right: 0;
}
#title b {
font-weight: 600;
}
.lite {
font-weight: 300;
}
table td {
vertical-align: bottom;
}
.bar {
width: 100%;
min-height: 10px;
background: black;
}
.bar-1 {
height: 40px;
background: #FFEB3B;
}
.bar-2 {
height: 65px;
background: #8BC34A;
}
.bar-3 {
height: 90px;
background: #03A9F4;
}