footer.css
This commit is contained in:
@@ -13,6 +13,7 @@
|
|||||||
<link rel="icon" type="image/x-icon" href="images/logos/logo_icon.ico">
|
<link rel="icon" type="image/x-icon" href="images/logos/logo_icon.ico">
|
||||||
<link rel="stylesheet" href="css/main.css">
|
<link rel="stylesheet" href="css/main.css">
|
||||||
<link rel="stylesheet" href="css/navbar.css">
|
<link rel="stylesheet" href="css/navbar.css">
|
||||||
|
<link rel="stylesheet" href="css/footer.css">
|
||||||
<title>EduForge</title>
|
<title>EduForge</title>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
@@ -32,11 +33,9 @@
|
|||||||
</p>
|
</p>
|
||||||
</main>
|
</main>
|
||||||
|
|
||||||
<footer style="position:fixed;bottom:0;width:100%;background:#fff;text-align:center;">
|
<?php
|
||||||
<a href="legal/impressum.php">Impressum</a>
|
include_once 'includes/footer.php';
|
||||||
<a href="legal/datenschutz.php">Datenschutz</a>
|
?>
|
||||||
<a href="legal/nutzungsbedingungen.php">Nutzungsbedingungen</a>
|
|
||||||
</footer>
|
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
/* Footer‑Grundlayout */
|
||||||
|
footer {
|
||||||
|
position: fixed;
|
||||||
|
bottom: 0;
|
||||||
|
width: 100%;
|
||||||
|
background: #333d43;
|
||||||
|
text-align: center;
|
||||||
|
padding: 10px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer a {
|
||||||
|
color: #333;
|
||||||
|
text-decoration: none;
|
||||||
|
margin: 0 12px;
|
||||||
|
transition: color 0.2s ease; /* Farbwechsel */
|
||||||
|
}
|
||||||
|
|
||||||
|
footer a:hover,
|
||||||
|
footer a:focus {
|
||||||
|
color: #0066cc;
|
||||||
|
}
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
<footer>
|
||||||
|
<a href="legal/impressum.php">Impressum</a>
|
||||||
|
<a href="legal/datenschutz.php">Datenschutz</a>
|
||||||
|
<a href="legal/nutzungsbedingungen.php">Nutzungsbedingungen</a>
|
||||||
|
</footer>
|
||||||
@@ -13,6 +13,7 @@
|
|||||||
<link rel="icon" type="image/x-icon" href="images/logos/logo_icon.ico">
|
<link rel="icon" type="image/x-icon" href="images/logos/logo_icon.ico">
|
||||||
<link rel="stylesheet" href="css/main.css">
|
<link rel="stylesheet" href="css/main.css">
|
||||||
<link rel="stylesheet" href="css/navbar.css">
|
<link rel="stylesheet" href="css/navbar.css">
|
||||||
|
<link rel="stylesheet" href="css/footer.css">
|
||||||
<title>EduForge</title>
|
<title>EduForge</title>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
@@ -25,11 +26,9 @@
|
|||||||
include_once 'content/home.php';
|
include_once 'content/home.php';
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<footer style="position:fixed;bottom:0;width:100%;background:#fff;text-align:center;">
|
<?php
|
||||||
<a href="legal/impressum.php">Impressum</a>
|
include_once 'includes/footer.php';
|
||||||
<a href="legal/datenschutz.php">Datenschutz</a>
|
?>
|
||||||
<a href="legal/nutzungsbedingungen.php">Nutzungsbedingungen</a>
|
|
||||||
</footer>
|
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
Reference in New Issue
Block a user