Tweaking styles
This commit is contained in:
parent
3cb122306a
commit
b597d179f0
@ -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;
|
||||||
}
|
}
|
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user