about summary refs log tree commit diff stats
path: root/app/assets/stylesheets/main
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2023-11-05 20:32:13 -0500
committerStar Rauchenberger <fefferburbia@gmail.com>2023-11-05 20:32:13 -0500
commit65808633a2e0259b54cefb268ebf79418b49e67c (patch)
tree39336c2a9204dd0da317e915a09a15abd3c53bd7 /app/assets/stylesheets/main
parentb047d1c54fb86742490b3bece574c2b84eb17f99 (diff)
downloadthoughts-65808633a2e0259b54cefb268ebf79418b49e67c.tar.gz
thoughts-65808633a2e0259b54cefb268ebf79418b49e67c.tar.bz2
thoughts-65808633a2e0259b54cefb268ebf79418b49e67c.zip
Added forward and back links to blog posts
Diffstat (limited to 'app/assets/stylesheets/main')
-rw-r--r--app/assets/stylesheets/main/entries.scss24
1 files changed, 24 insertions, 0 deletions
diff --git a/app/assets/stylesheets/main/entries.scss b/app/assets/stylesheets/main/entries.scss index 3b7215c..fd03de9 100644 --- a/app/assets/stylesheets/main/entries.scss +++ b/app/assets/stylesheets/main/entries.scss
@@ -426,3 +426,27 @@
426 text-decoration: none; 426 text-decoration: none;
427 } 427 }
428} 428}
429
430.back-post, .next-post {
431 margin-left: 1em;
432 margin-bottom: 1em;
433 margin-right: 1em;
434
435 a, a:visited {
436 color: #555d66;
437 text-decoration: none;
438 font-size: .75em;
439 }
440
441 a:hover {
442 text-decoration: underline;
443 }
444}
445
446.back-post {
447 float: left;
448}
449
450.next-post {
451 float: right;
452}