Merge pull request #6 from jpez-development/footer

Footer
This commit is contained in:
Joshua Perry 2022-04-14 17:47:23 +01:00 committed by GitHub
commit 83f1fe468a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
13 changed files with 58 additions and 5 deletions

View File

@ -82,7 +82,15 @@
</main> </main>
<footer> <footer>
&copy; Joshua Perry 2022 <a href="home/index.html">
<img src="assets/images/favicon.svg" id="footer_logo" alt="Logo"/>
<p>&copy;Joshua Perry 2022</p>
</a>
<a href="blog/blog.html"><h1>Blog</h1></a>
<a href="site/report.html"><h1>Site Report</h1></a>
<a href="site/map.html"><h1>Site Map</h1></a>
<a href="legal/terms.html"><h1>Terms</h1></a>
<a href="legal/privacy.html"><h1>Privacy</h1></a>
</footer> </footer>
</body> </body>
</html> </html>

View File

@ -61,7 +61,15 @@
</main> </main>
<footer> <footer>
&copy; Joshua Perry 2022 <a href="home/index.html">
<img src="assets/images/favicon.svg" id="footer_logo" alt="Logo"/>
<p>&copy;Joshua Perry 2022</p>
</a>
<a href="blog/blog.html"><h1>Blog</h1></a>
<a href="site/report.html"><h1>Site Report</h1></a>
<a href="site/map.html"><h1>Site Map</h1></a>
<a href="legal/terms.html"><h1>Terms</h1></a>
<a href="legal/privacy.html"><h1>Privacy</h1></a>
</footer> </footer>
</body> </body>
</html> </html>

View File

@ -133,7 +133,15 @@
</aside> </aside>
<footer> <footer>
&copy; Joshua Perry 2022 <a href="home/index.html">
<img src="assets/images/favicon.svg" id="footer_logo" alt="Logo"/>
<p>&copy;Joshua Perry 2022</p>
</a>
<a href="blog/blog.html"><h1>Blog</h1></a>
<a href="site/report.html"><h1>Site Report</h1></a>
<a href="site/map.html"><h1>Site Map</h1></a>
<a href="legal/terms.html"><h1>Terms</h1></a>
<a href="legal/privacy.html"><h1>Privacy</h1></a>
</footer> </footer>
</body> </body>
</html> </html>

0
legal/privacy.html Normal file
View File

0
legal/terms.css Normal file
View File

0
legal/terms.html Normal file
View File

View File

@ -53,7 +53,15 @@
</main> </main>
<footer> <footer>
&copy; Joshua Perry 2022 <a href="home/index.html">
<img src="assets/images/favicon.svg" id="footer_logo" alt="Logo"/>
<p>&copy;Joshua Perry 2022</p>
</a>
<a href="blog/blog.html"><h1>Blog</h1></a>
<a href="site/report.html"><h1>Site Report</h1></a>
<a href="site/map.html"><h1>Site Map</h1></a>
<a href="legal/terms.html"><h1>Terms</h1></a>
<a href="legal/privacy.html"><h1>Privacy</h1></a>
</footer> </footer>
</body> </body>
</html> </html>

0
site/map.css Normal file
View File

0
site/map.html Normal file
View File

0
site/report.css Normal file
View File

View File

@ -14,8 +14,22 @@ body {
} }
footer { footer {
background-color: rgba(255, 255, 255, 60%);
grid-area: footer; grid-area: footer;
color: #e5e5e5; display: grid;
grid-template-columns: 15% 10% 10% 10% 10% 10%;
}
footer > a {
font-family: headers;
text-decoration: none;
font-size: larger;
color: #14213d;
}
footer > a > p {
margin-top: 1.8em;
font-family: body;
} }
main { main {
@ -149,4 +163,11 @@ nav > .link:hover {
.hidenav { .hidenav {
display: none; display: none;
}
#footer_logo {
margin-top: 1.6em;
margin-right: 0.2em;
float: left;
max-width: 2em;
} }