Update UI
by Farzad Cyrus
HTML
<div class="wrapper">
<div class="container">
<table>
<tr><th>UI ELement</th><th>UI API</th><th>UI Status</th></tr>
<tr><th>Sidebar</th><td>app.UI(name, show/hide, width/height);</td><td></td></tr>
</table>
</div>
</div>
CSS
body,
html {
margin: 0;
padding: 16px;
background: #eeeeee;
font-family: sans-serif, Arial, Tahoma;
font-size: 12px;
}
* {
box-sizing: border-box;
position: relative;
}
.wrapper {
background: #ffffff;
border: 1px solid #cccccc;
width: 80%;
height: 100%;
margin: 0 auto;
padding: 16px;
box-shadow: 0 0 8px 0 rgba(0, 0, 0 , 0.1);
}
table {
border: 1px solid #dddddd;
border-spacing: 0;
text-align: center;
}
table th,
table td {
padding: 8px;
line-height: 24px;
text-align: left;
}
table th {
font-weight: normal;
background: #cccccc;
}