WPTables Logo 128

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="header">
  <table cellspacing="5">
  <tr>
    <td></td>
    <td></td>
  </tr>
  </table>
</div>
<div id="body">
  
  <table cellspacing="5">
  <tr>
    <td></td>
    <td></td>
  </tr>
  <tr>
    <td></td>
    <td></td>
  </tr>
  <tr>
    <td></td>
    <td></td>
  </tr>
  </table>
</div>
<div id="title">
<b>WP</b><span class="lite">TABLES</span>
</div>
</div>

CSS

#container {
  background: #03A9F4;
  /* padding: 20px; */
  width: 128px;
  height: 128px;
  max-width: 128px;
  max-height: 128px;
  overflow: hidden;
}

#header {
  width: 70px;
  /* height: 40px; */
  margin: 0 auto;
  margin-top: 25px;
  background: #F44336;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

#body {
  width: 70px;
  /* height: 80px; */
  margin: 0 auto;
  background: white;
}

table {
  width: 100%;
}
table td {
  background: #000;
  opacity: 0.05;
  height: 5px;
}

table td:first-child {
  width: 30%;
}

#header table td {
  background: #fff;
  opacity: 0.5;
}

#title {
  color:white;
  font-family: 'Open Sans';
  text-align: center;
  font-size: 18px;
  padding-top: 6px;
}

#title b {
  font-weight: 600;
}

.lite {
  font-weight: 300;
}