Commit d1b5be5ef3660acc88494a22ab579d94513d787f

Authored by grouille
1 parent 1c054ea1

Affichage du réseau

Showing 2 changed files with 7 additions and 2 deletions   Show diff stats
site/css/style.css
... ... @@ -62,3 +62,8 @@ a, a:hover {
62 62 .logo {
63 63 text-align:center;
64 64 }
  65 +
  66 +th td {
  67 + text-align: center;
  68 + vertical-align: middle;
  69 +}
... ...
site/network.php
... ... @@ -17,8 +17,8 @@ $raspberrys = getRaspberrys();
17 17 ?>
18 18 <table class="table table-striped table-bordered table-hover">
19 19 <thead class="thead-dark">
20   - <th valign="middle" align="center" width="20%"><img src="img/pi.png" alt="Raspberry" style="width:auto; height:50px;"></th>
21   - <th valign="middle" align="center" width="80%"><p style="font-size: 14px;"><?php echo $ip;?></p></th>
  20 + <th width="15%"><img src="img/pi.png" alt="Raspberry" style="width:auto; height:50px;"></th>
  21 + <th width="85%"><p style="font-size: 14px;"><?php echo $ip;?></p></th>
22 22 </thead>
23 23 <tbody>
24 24 <tr>
... ...