1
0

Daniel's werk

This commit is contained in:
Christiaan Goossens 2017-03-31 09:32:35 +02:00
parent dea9ff308f
commit f3bcc012e1
2 changed files with 10 additions and 8 deletions

View File

@ -42,13 +42,17 @@ ul.nv {
color: white; color: white;
} }
/** Index **/
.clickable {
cursor: pointer;
}
.clickable:hover {
background: #0094ff;
}
/** Footer **/ /** Footer **/
.footer { .footer {
color: grey; color: grey;
margin-top: 50px; margin-top: 50px;
} }
/** Table Row **/
.clickable {
cursor: pointer;
}

View File

@ -4,15 +4,13 @@
<tr> <tr>
<th>IBAN</th> <th>IBAN</th>
<th>Saldo</th> <th>Saldo</th>
<!-- <th>TIJDELIJK</th> -->
</tr> </tr>
<?php <?php
foreach ($rekeningen as $rekening) { foreach ($rekeningen as $rekening) {
?> ?>
<tr onclick="document.location.href = 'rekeningen/<?php echo $rekening['nr'] ?>'"> <tr class="clickable" onclick="document.location.href = 'rekeningen/<?php echo $rekening['nr'] ?>'">
<td><?php echo $rekening['iban']; ?></td> <td><?php echo $rekening['iban']; ?></td>
<td><?php echo "&euro;" . $rekening['saldo']; ?></td> <td><?php echo "&euro;" . $rekening['saldo']; ?></td>
<!-- <td><?php echo $rekening['nr']; ?></td> -->
</tr> </tr>
<?php <?php