diff --git a/static/css/root.css b/static/css/root.css index 900aacb..9958ff4 100644 --- a/static/css/root.css +++ b/static/css/root.css @@ -4,4 +4,5 @@ --sidebar-bg: #2b2c33; --text-color: #ffffff; --text-muted: #9da2b3; + --read-bg: #2d2e36; } \ No newline at end of file diff --git a/static/css/style.css b/static/css/style.css index d9e674e..d27eb2a 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -511,16 +511,14 @@ button:disabled { /* Feed entry styles */ .feed-entry { - background-color: var(--sidebar-bg); + padding: 20px; + margin-bottom: 15px; border-radius: 8px; - padding: 1.5rem; - margin-bottom: 1rem; - transition: opacity 0.2s ease, background-color 0.2s ease; + background-color: var(--sidebar-bg); } .feed-entry.read { - background-color: var(--dark-bg); - opacity: 0.8; + background-color: var(--read-bg); } .feed-entry.read .feed-entry-title a { @@ -531,6 +529,11 @@ button:disabled { color: var(--text-muted); } +.feed-entry:hover { + background-color: var(--sidebar-bg); + opacity: 1; +} + .feed-entry-title { display: flex; align-items: center;