mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2025-04-04 19:10:56 -04:00
feat: add footer and styling
This commit is contained in:
parent
eda40eb113
commit
289b95d957
4 changed files with 28 additions and 1 deletions
|
@ -2,3 +2,5 @@ function test(event) {
|
|||
const messageId = event.target.dataset.messageId;
|
||||
window.location.href = `comment?id=${messageId}`;
|
||||
}
|
||||
|
||||
document.getElementById("year").textContent = `${new Date().getFullYear()}`;
|
||||
|
|
|
@ -4,6 +4,25 @@
|
|||
background-color: #eff3ea;
|
||||
}
|
||||
|
||||
html,
|
||||
body {
|
||||
min-height: 100vh;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
footer {
|
||||
flex: 1;
|
||||
align-self: center;
|
||||
align-items: end;
|
||||
display: flex;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #86a788;
|
||||
font-weight: 600;
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
<footer>
|
||||
<div class="footer">
|
||||
<span>Designed by <a href="https://thecodedom.com/">TheCodeDom</a></span>
|
||||
© <span id="year"></span>
|
||||
</div>
|
||||
</footer>
|
||||
<script src="/script.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<%- include('header') %>
|
||||
<div class="container msg-feed">
|
||||
<div class="headline">
|
||||
<h1><a href="new">Join the chat!</a></h1>
|
||||
<h1><a href="new">Click here to chat!</a></h1>
|
||||
</div>
|
||||
<% msgs.forEach((msg) => { %>
|
||||
<div class="card">
|
||||
|
|
Loading…
Add table
Reference in a new issue