Skip to content

Commit

Permalink
Styling
Browse files Browse the repository at this point in the history
  • Loading branch information
bbdoc committed Aug 31, 2023
1 parent fe37d46 commit 86e6fed
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions pages/display/pokemon.php
Original file line number Diff line number Diff line change
Expand Up @@ -206,26 +206,26 @@ class="btn btn-danger"><?php echo i8ln("DELETE"); ?></a>
<ul class="pagination justify-content-left ml-1">
<li class="page-item <?php if (@$_GET['gen'] == "all") { echo "active";}; ?>">
<a class="page-link gen-link" href="?type=display&page=pokemon&gen=all">
<center><font size=2><?php echo i8ln("ALL"); ?></font><br><small><?php echo $genall; ?></small></center>
<center><small><b><?php echo i8ln("ALL"); ?></b><br><?php echo $genall; ?></small></center>
</a></li>
<li class="page-item <?php if (@$_GET['gen'] == 1) { echo "active";}; ?>">
<a class="page-link gen-link" href="?type=display&page=pokemon&gen=1"><center>G1<br><small><?php echo $gen1; ?></small></center></a></li>
<a class="page-link gen-link" href="?type=display&page=pokemon&gen=1"><center><small><b>G1</b><br><?php echo $gen1; ?></small></center></a></li>
<li class="page-item <?php if (@$_GET['gen'] == 2) { echo "active";}; ?>">
<a class="page-link gen-link" href="?type=display&page=pokemon&gen=2"><center>G2<br><small><?php echo $gen2; ?></small></center></a></li>
<a class="page-link gen-link" href="?type=display&page=pokemon&gen=2"><center><small><b>G2</b><br><?php echo $gen2; ?></small></center></a></li>
<li class="page-item <?php if (@$_GET['gen'] == 3) { echo "active";}; ?>">
<a class="page-link gen-link" href="?type=display&page=pokemon&gen=3"><center>G3<br><small><?php echo $gen3; ?></small></center></a></li>
<a class="page-link gen-link" href="?type=display&page=pokemon&gen=3"><center><small><b>G3</b><br><?php echo $gen3; ?></small></center></a></li>
<li class="page-item <?php if (@$_GET['gen'] == 4) { echo "active";}; ?>">
<a class="page-link gen-link" href="?type=display&page=pokemon&gen=4"><center>G4<br><small><?php echo $gen4; ?></small></center></a></li>
<a class="page-link gen-link" href="?type=display&page=pokemon&gen=4"><center><small><b>G4</b><br><?php echo $gen4; ?></small></center></a></li>
<li class="page-item <?php if (@$_GET['gen'] == 5) { echo "active";}; ?>">
<a class="page-link gen-link" href="?type=display&page=pokemon&gen=5"><center>G5<br><small><?php echo $gen5; ?></small></center></a></li>
<a class="page-link gen-link" href="?type=display&page=pokemon&gen=5"><center><small><b>G5</b><br><?php echo $gen5; ?></small></center></a></li>
<li class="page-item <?php if (@$_GET['gen'] == 6) { echo "active";}; ?>">
<a class="page-link gen-link" href="?type=display&page=pokemon&gen=6"><center>G6<br><small><?php echo $gen6; ?></small></center></a></li>
<a class="page-link gen-link" href="?type=display&page=pokemon&gen=6"><center><small><b>G6</b><br><?php echo $gen6; ?></small></center></a></li>
<li class="page-item <?php if (@$_GET['gen'] == 7) { echo "active";}; ?>">
<a class="page-link gen-link" href="?type=display&page=pokemon&gen=7"><center>G7<br><small><?php echo $gen7; ?></small></center></a></li>
<a class="page-link gen-link" href="?type=display&page=pokemon&gen=7"><center><small><b>G7</b><br><?php echo $gen7; ?></small></center></a></li>
<li class="page-item <?php if (@$_GET['gen'] == 8) { echo "active";}; ?>">
<a class="page-link gen-link" href="?type=display&page=pokemon&gen=8"><center>G8<br><small><?php echo $gen8; ?></small></center></a></li>
<a class="page-link gen-link" href="?type=display&page=pokemon&gen=8"><center><small><b>G8</b><br><?php echo $gen8; ?></small></center></a></li>
<li class="page-item <?php if (@$_GET['gen'] == 9) { echo "active";}; ?>">
<a class="page-link gen-link" href="?type=display&page=pokemon&gen=9"><center>G9<br><small><?php echo $gen9; ?></small></center></a></li>
<a class="page-link gen-link" href="?type=display&page=pokemon&gen=9"><center><small><b>G9</b><br><?php echo $gen9; ?></small></center></a></li>
</ul>
</nav>

Expand Down

0 comments on commit 86e6fed

Please sign in to comment.