base.css (674B)
1 /* custom table tags */ 2 3 x-table { display: table; } 4 x-colgroup { display: table-column-group; } 5 x-col { display: table-column; } 6 x-tbody { display: table-row-group; } 7 x-thead { display: table-header-group; } 8 x-tfoot { display: table-footer-group; } 9 x-tr { display: table-row; } 10 x-td { display: table-cell; } 11 x-caption { display: table-caption; } 12 13 /* layout of the page */ 14 15 hr + p { font-weight: bold; margin-bottom: 0; } 16 p + p { margin-top: 0; } 17 18 html, body { padding: 0; margin: 0; } 19 main, #log { padding: 10px; width: 50%; box-sizing: border-box; } 20 main { float: left; } 21 #log { float: right; background: #eee; }