table

by John Doe

HTML

<table class="paleBlueRows">
<thead>
<tr>
<th>Termék</th>
<th>Biztosító</th>
<th>Státusz</th>
<th>Dátum</th>
<th>Dokumentum(ok)</th>
<th>Művelet</th>
</tr>
</thead>
<tbody>
<tr>
<td>cell1_1</td>
<td>cell2_1</td>
<td>cell3_1</td>
<td>cell4_1</td>
<td>cell5_1</td>
<td>cell6_1</td>
</tr>
<tr>
<td>cell1_2</td>
<td>cell2_2</td>
<td>cell3_2</td>
<td>cell4_2</td>
<td>cell5_2</td>
<td>cell6_2</td>
</tr>
<tr>
<td>cell1_3</td>
<td>cell2_3</td>
<td>cell3_3</td>
<td>cell4_3</td>
<td>cell5_3</td>
<td>cell6_3</td>
</tr>
<tr>
<td>cell1_4</td>
<td>cell2_4</td>
<td>cell3_4</td>
<td>cell4_4</td>
<td>cell5_4</td>
<td>cell6_4</td>
</tr>
<tr>
<td>cell1_5</td>
<td>cell2_5</td>
<td>cell3_5</td>
<td>cell4_5</td>
<td>cell5_4</td>
<td>cell6_4</td>
</tr>
</tbody>
</table>

CSS

table.paleBlueRows {
  font-family: Arial;
  border-collapse: collapse;
  width: 100%;
}

table.paleBlueRows td, table.paleBlueRows th {
  padding: 10px 10px;
  text-align: left;
}

table.paleBlueRows tbody td {
  font-size: 13px;
  padding: 10px 10px;
}

table.paleBlueRows tr:nth-child(even) {
  background: #D0E4F5;
}

table.paleBlueRows thead {
  background: #e9e9e9;
  color: #252525;
}

table.paleBlueRows thead th {
  font-size: 17px;
  font-weight: bold;
  border-left: 0px solid #FFFFFF;
}

table.paleBlueRows thead th:first-child {
  border-left: none;
}

table.paleBlueRows tfoot {
  font-size: 14px;
  font-weight: bold;
  color: #333333;
  background: #D0E4F5;
  border-top: 3px solid #444444;
}

table.paleBlueRows tfoot td {
  font-size: 14px;
}