diff options
| author | Adam Mathes <adam@adammathes.com> | 2026-02-13 20:47:45 -0800 |
|---|---|---|
| committer | Adam Mathes <adam@adammathes.com> | 2026-02-13 20:47:45 -0800 |
| commit | d438ff62ad8ba890fbab5380785b723ed25afd34 (patch) | |
| tree | 41ebaef42f7ebfb6822098a599804a0b4da5398d /vanilla/style.css | |
| parent | 408f88e4d26048396a01bf82e36eb133db3feb24 (diff) | |
| download | neko-d438ff62ad8ba890fbab5380785b723ed25afd34.tar.gz neko-d438ff62ad8ba890fbab5380785b723ed25afd34.tar.bz2 neko-d438ff62ad8ba890fbab5380785b723ed25afd34.zip | |
feat(vanilla): implement read/star toggle and filtering (NK-d4c8jv)
Diffstat (limited to 'vanilla/style.css')
| -rw-r--r-- | vanilla/style.css | 39 |
1 files changed, 38 insertions, 1 deletions
diff --git a/vanilla/style.css b/vanilla/style.css index f83011f..729787b 100644 --- a/vanilla/style.css +++ b/vanilla/style.css @@ -96,6 +96,34 @@ body { .entry-header { margin-bottom: 0.5rem; + position: relative; + padding-left: 0; +} + +.entry-controls { + display: inline-block; + vertical-align: middle; + margin-right: 0.5rem; +} + +.btn-star, +.btn-read { + background: none; + border: none; + cursor: pointer; + font-size: 1rem; + padding: 2px 4px; + margin-right: 4px; + color: #ccc; +} + +.btn-star.active { + color: orange; +} + +.btn-star:hover, +.btn-read:hover { + color: #888; } .entry-title { @@ -103,13 +131,22 @@ body { font-weight: bold; color: var(--link-color); text-decoration: none; - display: block; + display: inline-block; + /* Changed to inline-block for alignment */ + vertical-align: middle; margin-bottom: 0.25rem; } +.entry-title.read { + font-weight: normal; + color: #555; + text-decoration: none; +} + .entry-meta { font-size: 0.85rem; color: #666; + margin-top: 4px; } .entry-content { |
