Tweaking styles

This commit is contained in:
Greg Shuflin 2025-02-05 02:45:50 -08:00
parent 3cb122306a
commit b597d179f0
2 changed files with 10 additions and 6 deletions

View File

@ -4,4 +4,5 @@
--sidebar-bg: #2b2c33; --sidebar-bg: #2b2c33;
--text-color: #ffffff; --text-color: #ffffff;
--text-muted: #9da2b3; --text-muted: #9da2b3;
--read-bg: #2d2e36;
} }

View File

@ -511,16 +511,14 @@ button:disabled {
/* Feed entry styles */ /* Feed entry styles */
.feed-entry { .feed-entry {
background-color: var(--sidebar-bg); padding: 20px;
margin-bottom: 15px;
border-radius: 8px; border-radius: 8px;
padding: 1.5rem; background-color: var(--sidebar-bg);
margin-bottom: 1rem;
transition: opacity 0.2s ease, background-color 0.2s ease;
} }
.feed-entry.read { .feed-entry.read {
background-color: var(--dark-bg); background-color: var(--read-bg);
opacity: 0.8;
} }
.feed-entry.read .feed-entry-title a { .feed-entry.read .feed-entry-title a {
@ -531,6 +529,11 @@ button:disabled {
color: var(--text-muted); color: var(--text-muted);
} }
.feed-entry:hover {
background-color: var(--sidebar-bg);
opacity: 1;
}
.feed-entry-title { .feed-entry-title {
display: flex; display: flex;
align-items: center; align-items: center;