adfc color, start

This commit is contained in:
Walter Hupfeld 2024-02-22 16:53:10 +01:00
parent 8b6632d36f
commit c2f8c93ef3
2 changed files with 17 additions and 3 deletions

View File

@ -93,3 +93,8 @@ i.wa {
z-index: 1000; z-index: 1000;
display:none; display:none;
} }
.jumbotron {
background-color:orange;
}
a, a:active, a:visited, a:active {color:orange;}

View File

@ -39,12 +39,21 @@
</div> </div>
<p style="clear:both";> <p style="clear:both";>
<h3>Teilnehmende Kreise und kreisfreie Städte</h3> <h3>Teilnehmende Kreise und kreisfreie Städte</h3>
<div>
<div class="row">
<div class="col-4">
<?php <?php
$i=0;
foreach ($arrDistrict as $key => $strTitle):?> foreach ($arrDistrict as $key => $strTitle):?>
<a href="<?php echo "./".$key ?>"><?=$strTitle?></a><br> <a href="<?php echo "./".$key ?>"><?=$strTitle?></a><br>
<?php endforeach; ?> <?php
$i++;
if ($i%20==0) echo "</div><div class='col-4'>";
endforeach; ?>
</div> </div>
</div>
<hr>
© ADFC NRW
</div> </div>
</body> </body>