38 lines
793 B
CSS
38 lines
793 B
CSS
body {
|
|
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
|
|
font-size: 14px;
|
|
line-height: 1.42857143;
|
|
color: #333;
|
|
box-sizing: border-box;
|
|
text-align: left;
|
|
background-color: #fff;
|
|
margin: 0;
|
|
}
|
|
|
|
* {
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
table {
|
|
background-color: transparent;
|
|
border-spacing: 0;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
table.table {
|
|
width: 100%;
|
|
max-width: 100%;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th {
|
|
padding: 8px;
|
|
line-height: 1.42857143;
|
|
vertical-align: middle;
|
|
border-top: 1px solid #ddd;
|
|
text-align: left;
|
|
}
|
|
|
|
th { text-align: left; } |