diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2025-05-12 14:53:31 -0400 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2025-05-12 14:53:31 -0400 |
commit | b7c5853de5f0f04625eab6389cba9de8b02e48fb (patch) | |
tree | 1764a974e1b93b024c90f98246590d0bac5430ef /app/assets | |
parent | 4016070f2caf30f576d0b0df8a65a7b4b468e951 (diff) | |
download | thoughts-b7c5853de5f0f04625eab6389cba9de8b02e48fb.tar.gz thoughts-b7c5853de5f0f04625eab6389cba9de8b02e48fb.tar.bz2 thoughts-b7c5853de5f0f04625eab6389cba9de8b02e48fb.zip |
Added streams index
Diffstat (limited to 'app/assets')
-rw-r--r-- | app/assets/stylesheets/main/entries.scss | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/app/assets/stylesheets/main/entries.scss b/app/assets/stylesheets/main/entries.scss index 6ccaf7e..d67ae67 100644 --- a/app/assets/stylesheets/main/entries.scss +++ b/app/assets/stylesheets/main/entries.scss | |||
@@ -472,3 +472,46 @@ | |||
472 | .next-post { | 472 | .next-post { |
473 | float: right; | 473 | float: right; |
474 | } | 474 | } |
475 | |||
476 | #streams-index { | ||
477 | width: 100%; | ||
478 | border-collapse: collapse; | ||
479 | |||
480 | #streams-index-header-row { | ||
481 | th { | ||
482 | background-color: #bdbdbd; | ||
483 | padding-left: 0.5em; | ||
484 | border-top: 1px solid #848484; | ||
485 | border-bottom: 1px solid #848484; | ||
486 | } | ||
487 | } | ||
488 | |||
489 | th { | ||
490 | padding-bottom: 0.5em; | ||
491 | padding-top: 0.5em; | ||
492 | text-align: left; | ||
493 | } | ||
494 | |||
495 | td { | ||
496 | padding-top: 1em; | ||
497 | padding-left: 0.5em; | ||
498 | |||
499 | time { | ||
500 | font-size: .75em; | ||
501 | } | ||
502 | |||
503 | .stream-link { | ||
504 | font-weight: bold; | ||
505 | text-decoration: none; | ||
506 | |||
507 | &, &:visited { | ||
508 | color: #ee2c2c; | ||
509 | } | ||
510 | |||
511 | &:hover { | ||
512 | text-decoration: underline; | ||
513 | color: #9ea1ad; | ||
514 | } | ||
515 | } | ||
516 | } | ||
517 | } | ||