Skip to content

Commit 0251e88

Browse files
committed
Add footer to site
1 parent 51de07f commit 0251e88

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

site/index.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,5 +99,10 @@ <h1 class="title">
9999
{:body {:items (jdbc/execute! db ["SELECT * FROM items"])}}))</code></pre>
100100
</div>
101101
</section>
102+
<footer class="footer">
103+
<div class="content has-text-centered">
104+
<p>Created by James Reeves (2025)</p>
105+
</div>
106+
</footer>
102107
</body>
103108
</html>

site/style.css

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,19 @@
1616
height: 92px;
1717
}
1818

19-
.hero .hero-body {
19+
body {
20+
background: #14161a;
21+
}
22+
23+
html, .hero .hero-body, .footer {
2024
background: #292929;
2125
}
2226

27+
.footer {
28+
margin-top: 3rem;
29+
padding-bottom: 3rem;
30+
}
31+
2332
.nav-buttons {
2433
margin-top: -22px;
2534
}

0 commit comments

Comments
 (0)