commit
83f1fe468a
|
|
@ -82,7 +82,15 @@
|
||||||
</main>
|
</main>
|
||||||
|
|
||||||
<footer>
|
<footer>
|
||||||
© Joshua Perry 2022
|
<a href="home/index.html">
|
||||||
|
<img src="assets/images/favicon.svg" id="footer_logo" alt="Logo"/>
|
||||||
|
<p>©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>
|
||||||
|
|
@ -61,7 +61,15 @@
|
||||||
</main>
|
</main>
|
||||||
|
|
||||||
<footer>
|
<footer>
|
||||||
© Joshua Perry 2022
|
<a href="home/index.html">
|
||||||
|
<img src="assets/images/favicon.svg" id="footer_logo" alt="Logo"/>
|
||||||
|
<p>©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>
|
||||||
|
|
@ -133,7 +133,15 @@
|
||||||
</aside>
|
</aside>
|
||||||
|
|
||||||
<footer>
|
<footer>
|
||||||
© Joshua Perry 2022
|
<a href="home/index.html">
|
||||||
|
<img src="assets/images/favicon.svg" id="footer_logo" alt="Logo"/>
|
||||||
|
<p>©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>
|
||||||
|
|
@ -53,7 +53,15 @@
|
||||||
</main>
|
</main>
|
||||||
|
|
||||||
<footer>
|
<footer>
|
||||||
© Joshua Perry 2022
|
<a href="home/index.html">
|
||||||
|
<img src="assets/images/favicon.svg" id="footer_logo" alt="Logo"/>
|
||||||
|
<p>©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>
|
||||||
|
|
@ -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;
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue