diff --git a/keynotes.app/public/css/style.css b/keynotes.app/public/css/style.css index 35f9433..78e1fe6 100644 --- a/keynotes.app/public/css/style.css +++ b/keynotes.app/public/css/style.css @@ -130,8 +130,11 @@ input { } footer { - position: absolute; - bottom: 0; + justify-content: center; +} + +.full-page { + height: 90vh; } .divider { @@ -169,11 +172,12 @@ footer { } .center-horizontal { + text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; - margin: 0 auto; + gap: 1em; } .hero__heading { @@ -228,40 +232,62 @@ footer { .feed-heading { margin-left: 1em; text-transform: capitalize; + text-align: center; } .feed-heading span { text-transform: initial; } +.author__meta { + gap: 0.5em; +} + .grid { display: grid; - grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); + /*grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));*/ gap: 1em; padding: 2em; grid-auto-flow: dense; + margin: 0 auto; } .grid-item { display: flex; flex-direction: column; justify-content: space-between; + gap: 2em; + position: relative; } .grid-item.card { border: 1px solid black; + border-radius: 0.5em; text-align: center; - padding: 1.5em 1.5em 0.5em; + background: var(--500-blue); +} + +.grid-item > p { + padding: 5em; } .grid__card__metadata { + position: absolute; + bottom: 0; + display: flex; font-size: 0.8em; justify-content: space-between; + width: 100%; + padding: 0 0.9em 0.7em; } .likes { - flex: 1; - flex-grow: 0; + display: flex; + align-self: center; + width: auto; + align-items: center; + justify-content: center; + gap: 0.5em; } .card__likes { @@ -337,6 +363,11 @@ footer { #main > .container.flex { gap: 10em; } + + .grid { + width: 100%; + max-width: 750px; + } .grid__span_two { grid-column-end: span 2; } diff --git a/keynotes.app/src/models/init.sql b/keynotes.app/src/models/init.sql index a2d792e..601b0c7 100644 --- a/keynotes.app/src/models/init.sql +++ b/keynotes.app/src/models/init.sql @@ -33,36 +33,36 @@ VALUES ("jim", "$2a$10$Bmjre5WSpSSAi.nWBfLZFOlhQhbIAoY/MM7ikJz3Ho9tqeXCExaB6"), INSERT OR REPLACE INTO messages (message_id, message, media, date, user_id) VALUES - (1, "When life gives you lemons, make lemonade.", NULL, strftime('%s', 'now'), 1), - (2, "Rome wasn’t built in a day – take your time.", NULL, strftime('%s', 'now'), 1), - (3, "The grass is always greener on the other side.", NULL, strftime('%s', 'now'), 1), - (4, "If it ain’t broke, don’t fix it.", NULL, strftime('%s', 'now'), 1), - (5, "You can’t have your cake and eat it too.", NULL, strftime('%s', 'now'), 1), - (6, "Better late than never.", NULL, strftime('%s', 'now'), 1), - (7, "What doesn’t kill you makes you stronger.", NULL, strftime('%s', 'now'), 1), - (8, "Every cloud has a silver lining.", NULL, strftime('%s', 'now'), 1), - (9, "Don’t bite the hand that feeds you.", NULL, strftime('%s', 'now'), 1), - (10, "Absence makes the heart grow fonder.", NULL, strftime('%s', 'now'), 1), - (11, "Always trust your gut feeling – it’s usually right.", NULL, strftime('%s', 'now'), 2), - (12, "Money can’t buy happiness, but it sure helps.", NULL, strftime('%s', 'now'), 2), - (13, "Everything happens for a reason.", NULL, strftime('%s', 'now'), 2), - (14, "Don’t go to bed angry – resolve conflicts before sleeping.", NULL, strftime('%s', 'now'), 2), - (15, "The early bird catches the worm.", NULL, strftime('%s', 'now'), 2), - (16, "You only live once – make the most of it.", NULL, strftime('%s', 'now'), 2), - (17, "Hard work pays off in the end.", NULL, strftime('%s', 'now'), 2), - (18, "Family is everything – cherish them.", NULL, strftime('%s', 'now'), 2), - (19, "Don’t put off until tomorrow what you can do today.", NULL, strftime('%s', 'now'), 2), - (20, "A smile costs nothing but gives so much.", NULL, strftime('%s', 'now'), 2), - (21, "You can’t please everyone – focus on yourself.", NULL, strftime('%s', 'now'), 2), - (22, "Health is wealth – take care of your body.", NULL, strftime('%s', 'now'), 2), - (23, "Patience is a virtue – good things take time.", NULL, strftime('%s', 'now'), 2), - (24, "Don’t judge a book by its cover.", NULL, strftime('%s', 'now'), 2), - (25, "Actions speak louder than words.", NULL, strftime('%s', 'now'), 2), - (26, "Learn from your mistakes – they make you wiser.", NULL, strftime('%s', 'now'), 2), - (27, "Kindness costs nothing but means everything.", NULL, strftime('%s', 'now'), 2), - (28, "Life is short – eat the cake.", NULL, strftime('%s', 'now'), 2), - (29, "Comparison is the thief of joy – focus on your journey.", NULL, strftime('%s', 'now'), 2), - (30, "The best things in life are free.", NULL, strftime('%s', 'now'), 2); + (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')*1000, 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')*1000, 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')*1000, 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')*1000, 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')*1000, 1), + (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')*1000, 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')*1000, 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')*1000, 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')*1000, 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')*1000, 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')*1000, 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')*1000, 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')*1000, 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')*1000, 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')*1000, 2); -- ALTER TABLE likes -- ADD COLUMN user_id INTEGER REFERENCES users(user_id); diff --git a/keynotes.app/src/models/query.js b/keynotes.app/src/models/query.js index 849d236..ea57016 100644 --- a/keynotes.app/src/models/query.js +++ b/keynotes.app/src/models/query.js @@ -7,6 +7,7 @@ function getEveryNote() { FROM messages LEFT JOIN users ON messages.user_id = users.user_id LEFT JOIN likes ON messages.message_id = likes.message_id GROUP BY messages.message_id, message, media, date, users.username + ORDER BY date DESC `, ); diff --git a/keynotes.app/src/views/feed.ejs b/keynotes.app/src/views/feed.ejs index 0068bb7..3d5a393 100644 --- a/keynotes.app/src/views/feed.ejs +++ b/keynotes.app/src/views/feed.ejs @@ -11,18 +11,22 @@ <% }; %>