Merge pull request 'FooterAnsEnde' (#9) from footerAnsEnde into dev

Reviewed-on: #9
This commit was merged in pull request #9.
This commit is contained in:
2026-05-26 12:30:37 +02:00
4 changed files with 14 additions and 9 deletions
@@ -10,10 +10,10 @@
<meta name="description" content="EduForge"> <meta name="description" content="EduForge">
<meta name="author" content="Niklas Ortmann"> <meta name="author" content="Niklas Ortmann">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<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"> <link rel="stylesheet" href="../css/footer.css">
<title>EduForge</title> <title>EduForge</title>
</head> </head>
-2
View File
@@ -1,7 +1,5 @@
/* FooterGrundlayout */ /* FooterGrundlayout */
footer { footer {
position: fixed;
bottom: 0;
width: 100%; width: 100%;
background: #333d43; background: #333d43;
text-align: center; text-align: center;
+7
View File
@@ -3,12 +3,19 @@ main {
max-width:1200px; max-width:1200px;
margin: 0 auto; margin: 0 auto;
padding: 20px; padding: 20px;
width: 100%;
box-sizing: border-box;
} }
body { body {
background-color: #eef2f7; background-color: #eef2f7;
color: #1f2937; color: #1f2937;
margin: 0; margin: 0;
min-height: 100vh;
display: grid;
grid-template-rows: auto 1fr auto; /* Header(auto), Inhalt (bekommt Rest), Footer(auto) */
} }
a, button, input, select, textarea, label, main{ a, button, input, select, textarea, label, main{
+3 -3
View File
@@ -1,5 +1,5 @@
<footer> <footer>
<a href="impressum.php">Impressum</a> <a href="index.php?pfad=impressum">Impressum</a>
<a href="datenschutz.php">Datenschutz</a> <a href="index.php?pfad=datenschutz">Datenschutz</a>
<a href="nutzungsbedingungen.php">Nutzungsbedingungen</a> <a href="index.php?pfad=nutzungsbedingungen">Nutzungsbedingungen</a>
</footer> </footer>