mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2025-04-05 03:10:57 -04:00
additional styling and formatting
This commit is contained in:
parent
231902ab6d
commit
4417dec46a
7 changed files with 85 additions and 50 deletions
|
@ -130,8 +130,11 @@ input {
|
||||||
}
|
}
|
||||||
|
|
||||||
footer {
|
footer {
|
||||||
position: absolute;
|
justify-content: center;
|
||||||
bottom: 0;
|
}
|
||||||
|
|
||||||
|
.full-page {
|
||||||
|
height: 90vh;
|
||||||
}
|
}
|
||||||
|
|
||||||
.divider {
|
.divider {
|
||||||
|
@ -169,11 +172,12 @@ footer {
|
||||||
}
|
}
|
||||||
|
|
||||||
.center-horizontal {
|
.center-horizontal {
|
||||||
|
text-align: center;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
margin: 0 auto;
|
gap: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hero__heading {
|
.hero__heading {
|
||||||
|
@ -228,40 +232,62 @@ footer {
|
||||||
.feed-heading {
|
.feed-heading {
|
||||||
margin-left: 1em;
|
margin-left: 1em;
|
||||||
text-transform: capitalize;
|
text-transform: capitalize;
|
||||||
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.feed-heading span {
|
.feed-heading span {
|
||||||
text-transform: initial;
|
text-transform: initial;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.author__meta {
|
||||||
|
gap: 0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
.grid {
|
.grid {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
/*grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));*/
|
||||||
gap: 1em;
|
gap: 1em;
|
||||||
padding: 2em;
|
padding: 2em;
|
||||||
grid-auto-flow: dense;
|
grid-auto-flow: dense;
|
||||||
|
margin: 0 auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.grid-item {
|
.grid-item {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
|
gap: 2em;
|
||||||
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
.grid-item.card {
|
.grid-item.card {
|
||||||
border: 1px solid black;
|
border: 1px solid black;
|
||||||
|
border-radius: 0.5em;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
padding: 1.5em 1.5em 0.5em;
|
background: var(--500-blue);
|
||||||
|
}
|
||||||
|
|
||||||
|
.grid-item > p {
|
||||||
|
padding: 5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.grid__card__metadata {
|
.grid__card__metadata {
|
||||||
|
position: absolute;
|
||||||
|
bottom: 0;
|
||||||
|
display: flex;
|
||||||
font-size: 0.8em;
|
font-size: 0.8em;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
|
width: 100%;
|
||||||
|
padding: 0 0.9em 0.7em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.likes {
|
.likes {
|
||||||
flex: 1;
|
display: flex;
|
||||||
flex-grow: 0;
|
align-self: center;
|
||||||
|
width: auto;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
gap: 0.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.card__likes {
|
.card__likes {
|
||||||
|
@ -337,6 +363,11 @@ footer {
|
||||||
#main > .container.flex {
|
#main > .container.flex {
|
||||||
gap: 10em;
|
gap: 10em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.grid {
|
||||||
|
width: 100%;
|
||||||
|
max-width: 750px;
|
||||||
|
}
|
||||||
.grid__span_two {
|
.grid__span_two {
|
||||||
grid-column-end: span 2;
|
grid-column-end: span 2;
|
||||||
}
|
}
|
||||||
|
|
|
@ -33,36 +33,36 @@ VALUES ("jim", "$2a$10$Bmjre5WSpSSAi.nWBfLZFOlhQhbIAoY/MM7ikJz3Ho9tqeXCExaB6"),
|
||||||
|
|
||||||
INSERT OR REPLACE INTO messages (message_id, message, media, date, user_id)
|
INSERT OR REPLACE INTO messages (message_id, message, media, date, user_id)
|
||||||
VALUES
|
VALUES
|
||||||
(1, "When life gives you lemons, make lemonade.", NULL, strftime('%s', 'now'), 1),
|
(1, "When life gives you lemons, make lemonade.", NULL, strftime('%s', 'now')*1000, 1),
|
||||||
(2, "Rome wasn’t built in a day – take your time.", NULL, strftime('%s', 'now'), 1),
|
(2, "Rome wasn’t built in a day – take your time.", NULL, strftime('%s', 'now')*1000, 1),
|
||||||
(3, "The grass is always greener on the other side.", NULL, strftime('%s', 'now'), 1),
|
(3, "The grass is always greener on the other side.", NULL, strftime('%s', 'now')*1000, 1),
|
||||||
(4, "If it ain’t broke, don’t fix it.", NULL, strftime('%s', 'now'), 1),
|
(4, "If it ain’t broke, don’t fix it.", NULL, strftime('%s', 'now')*1000, 1),
|
||||||
(5, "You can’t have your cake and eat it too.", NULL, strftime('%s', 'now'), 1),
|
(5, "You can’t have your cake and eat it too.", NULL, strftime('%s', 'now')*1000, 1),
|
||||||
(6, "Better late than never.", NULL, strftime('%s', 'now'), 1),
|
(6, "Better late than never.", NULL, strftime('%s', 'now')*1000, 1),
|
||||||
(7, "What doesn’t kill you makes you stronger.", NULL, strftime('%s', 'now'), 1),
|
(7, "What doesn’t kill you makes you stronger.", NULL, strftime('%s', 'now')*1000, 1),
|
||||||
(8, "Every cloud has a silver lining.", NULL, strftime('%s', 'now'), 1),
|
(8, "Every cloud has a silver lining.", NULL, strftime('%s', 'now')*1000, 1),
|
||||||
(9, "Don’t bite the hand that feeds you.", NULL, strftime('%s', 'now'), 1),
|
(9, "Don’t bite the hand that feeds you.", NULL, strftime('%s', 'now')*1000, 1),
|
||||||
(10, "Absence makes the heart grow fonder.", NULL, strftime('%s', 'now'), 1),
|
(10, "Absence makes the heart grow fonder.", NULL, strftime('%s', 'now')*1000, 1),
|
||||||
(11, "Always trust your gut feeling – it’s usually right.", NULL, strftime('%s', 'now'), 2),
|
(11, "Always trust your gut feeling – it’s usually right.", NULL, strftime('%s', 'now')*1000, 2),
|
||||||
(12, "Money can’t buy happiness, but it sure helps.", NULL, strftime('%s', 'now'), 2),
|
(12, "Money can’t buy happiness, but it sure helps.", NULL, strftime('%s', 'now')*1000, 2),
|
||||||
(13, "Everything happens for a reason.", NULL, strftime('%s', 'now'), 2),
|
(13, "Everything happens for a reason.", NULL, strftime('%s', 'now')*1000, 2),
|
||||||
(14, "Don’t go to bed angry – resolve conflicts before sleeping.", NULL, strftime('%s', 'now'), 2),
|
(14, "Don’t go to bed angry – resolve conflicts before sleeping.", NULL, strftime('%s', 'now')*1000, 2),
|
||||||
(15, "The early bird catches the worm.", NULL, strftime('%s', 'now'), 2),
|
(15, "The early bird catches the worm.", NULL, strftime('%s', 'now')*1000, 2),
|
||||||
(16, "You only live once – make the most of it.", NULL, strftime('%s', 'now'), 2),
|
(16, "You only live once – make the most of it.", NULL, strftime('%s', 'now')*1000, 2),
|
||||||
(17, "Hard work pays off in the end.", NULL, strftime('%s', 'now'), 2),
|
(17, "Hard work pays off in the end.", NULL, strftime('%s', 'now')*1000, 2),
|
||||||
(18, "Family is everything – cherish them.", NULL, strftime('%s', 'now'), 2),
|
(18, "Family is everything – cherish them.", NULL, strftime('%s', 'now')*1000, 2),
|
||||||
(19, "Don’t put off until tomorrow what you can do today.", NULL, strftime('%s', 'now'), 2),
|
(19, "Don’t put off until tomorrow what you can do today.", NULL, strftime('%s', 'now')*1000, 2),
|
||||||
(20, "A smile costs nothing but gives so much.", NULL, strftime('%s', 'now'), 2),
|
(20, "A smile costs nothing but gives so much.", NULL, strftime('%s', 'now')*1000, 2),
|
||||||
(21, "You can’t please everyone – focus on yourself.", NULL, strftime('%s', 'now'), 2),
|
(21, "You can’t please everyone – focus on yourself.", NULL, strftime('%s', 'now')*1000, 2),
|
||||||
(22, "Health is wealth – take care of your body.", NULL, strftime('%s', 'now'), 2),
|
(22, "Health is wealth – take care of your body.", NULL, strftime('%s', 'now')*1000, 2),
|
||||||
(23, "Patience is a virtue – good things take time.", NULL, strftime('%s', 'now'), 2),
|
(23, "Patience is a virtue – good things take time.", NULL, strftime('%s', 'now')*1000, 2),
|
||||||
(24, "Don’t judge a book by its cover.", NULL, strftime('%s', 'now'), 2),
|
(24, "Don’t judge a book by its cover.", NULL, strftime('%s', 'now')*1000, 2),
|
||||||
(25, "Actions speak louder than words.", NULL, strftime('%s', 'now'), 2),
|
(25, "Actions speak louder than words.", NULL, strftime('%s', 'now')*1000, 2),
|
||||||
(26, "Learn from your mistakes – they make you wiser.", NULL, strftime('%s', 'now'), 2),
|
(26, "Learn from your mistakes – they make you wiser.", NULL, strftime('%s', 'now')*1000, 2),
|
||||||
(27, "Kindness costs nothing but means everything.", NULL, strftime('%s', 'now'), 2),
|
(27, "Kindness costs nothing but means everything.", NULL, strftime('%s', 'now')*1000, 2),
|
||||||
(28, "Life is short – eat the cake.", NULL, strftime('%s', 'now'), 2),
|
(28, "Life is short – eat the cake.", NULL, strftime('%s', 'now')*1000, 2),
|
||||||
(29, "Comparison is the thief of joy – focus on your journey.", NULL, strftime('%s', 'now'), 2),
|
(29, "Comparison is the thief of joy – focus on your journey.", NULL, strftime('%s', 'now')*1000, 2),
|
||||||
(30, "The best things in life are free.", NULL, strftime('%s', 'now'), 2);
|
(30, "The best things in life are free.", NULL, strftime('%s', 'now')*1000, 2);
|
||||||
|
|
||||||
-- ALTER TABLE likes
|
-- ALTER TABLE likes
|
||||||
-- ADD COLUMN user_id INTEGER REFERENCES users(user_id);
|
-- ADD COLUMN user_id INTEGER REFERENCES users(user_id);
|
||||||
|
|
|
@ -7,6 +7,7 @@ function getEveryNote() {
|
||||||
FROM messages LEFT JOIN users ON messages.user_id = users.user_id
|
FROM messages LEFT JOIN users ON messages.user_id = users.user_id
|
||||||
LEFT JOIN likes ON messages.message_id = likes.message_id
|
LEFT JOIN likes ON messages.message_id = likes.message_id
|
||||||
GROUP BY messages.message_id, message, media, date, users.username
|
GROUP BY messages.message_id, message, media, date, users.username
|
||||||
|
ORDER BY date DESC
|
||||||
`,
|
`,
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
|
@ -11,18 +11,22 @@
|
||||||
<% }; %>
|
<% }; %>
|
||||||
<div class="grid-item card<%= extraMessageClass %>">
|
<div class="grid-item card<%= extraMessageClass %>">
|
||||||
<p class="card__message"><%= note.message %></p>
|
<p class="card__message"><%= note.message %></p>
|
||||||
<div class="container flex grid__card__metadata">
|
<div class="container grid__card__metadata">
|
||||||
|
<div class="flex author__meta">
|
||||||
<p class="card__author"><a href="/profile?userId=<%= note.user_id %>"><%= note.user %></a></p>
|
<p class="card__author"><a href="/profile?userId=<%= note.user_id %>"><%= note.user %></a></p>
|
||||||
<div class="likes flex">
|
<p class="card__likes">•</p>
|
||||||
|
<p class="card__likes"><%= new Date(note.date).toLocaleString() %></p>
|
||||||
|
</div>
|
||||||
|
<% if (currentUser.user_id === note.user_id) { %>
|
||||||
|
<a href="/delete?userId=<%= currentUser.user_id %>&messageId=<%= note.message_id %>">delete post</a>
|
||||||
|
<% }; %>
|
||||||
|
<div class="likes">
|
||||||
|
|
||||||
<a href="/like?noteId=<%= note.message_id %>">
|
<a href="/like?noteId=<%= note.message_id %>">
|
||||||
<% if (likedPost) { %><i class="fa-solid fa-heart red"></i><% } else { %><i class="fa-regular fa-heart red"></i><% }; %>
|
<% if (likedPost) { %><i class="fa-solid fa-heart red"></i><% } else { %><i class="fa-regular fa-heart red"></i><% }; %>
|
||||||
</a>
|
</a>
|
||||||
<p class="card__likes"><%= note.likes_count %></p>
|
<p class="card__likes"><%= note.likes_count %></p>
|
||||||
</div>
|
</div>
|
||||||
<% if (currentUser.user_id === note.user_id) { %>
|
|
||||||
<a href="/delete?userId=<%= currentUser.user_id %>&messageId=<%= note.message_id %>"> X</a>
|
|
||||||
<% }; %>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<% }); %>
|
<% }); %>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<footer>
|
<footer class="footer flex">
|
||||||
<div> Test </div>
|
Test
|
||||||
</footer>
|
</footer>
|
||||||
<script src="/js/script.js"></script>
|
<script src="/js/script.js"></script>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<form action="/new" method="POST" class="center-horizontal">
|
<form action="/new" method="POST" class="center-horizontal">
|
||||||
<div class="form-item flex">
|
<div class="form-item flex">
|
||||||
<label for="message">Message</label>
|
<label for="message">Message</label>
|
||||||
<input type="text" name="message" required/>
|
<textarea type="text" name="message" required></textarea>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-item flex">
|
<div class="form-item flex">
|
||||||
<label for="media">Media</label>
|
<label for="media">Media</label>
|
||||||
|
|
|
@ -1,12 +1,11 @@
|
||||||
<%- include("header") %>
|
<%- include("header") %>
|
||||||
|
|
||||||
<div class="container flex center-horizontal">
|
<div class="full-page container center-horizontal">
|
||||||
<h1 class="username"><%= user.username %></h1>
|
<h1 class="username"><%= user.username %></h1>
|
||||||
<h2 class="email"><%= user.user_email %></h2>
|
<% if(currentUser.user_id === user.user_id ) { %>
|
||||||
|
<p>This is your profile page.</p>
|
||||||
|
<% }; %>
|
||||||
<p><%= totalPosts %> Posts</p>
|
<p><%= totalPosts %> Posts</p>
|
||||||
|
|
||||||
<% if(currentUser.user_id === user.user_id ) { %>
|
|
||||||
This is your profile page.
|
|
||||||
<% }; %>
|
|
||||||
</div>
|
</div>
|
||||||
<%- include("footer") %>
|
<%- include("footer") %>
|
||||||
|
|
Loading…
Add table
Reference in a new issue