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;
--text-color: #ffffff;
--text-muted: #9da2b3;
--read-bg: #2d2e36;
}

View File

@ -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;