Skip to content

Commit 7091b36

Browse files
committed
Fixes to feed preview CSS
1 parent 50e315c commit 7091b36

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

pages/reader/reader.css

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
--card-background: white;
77
--text-color: black;
88
--media-background: #f9f9fa;
9+
--blockquote-background: #fafafa;
910
--deemphasized-text-color: #4a4a4f;
1011
--link-color: #0060df;
1112
--visited-link-color: #8000d7;
@@ -16,6 +17,7 @@
1617
--card-background: #38383d;
1718
--text-color: #f9f9fa;
1819
--media-background: #2a2a2e;
20+
--blockquote-background: #2a2a2e;
1921
--deemphasized-text-color: #b1b1b3;
2022
--link-color: #45a1ff;
2123
--visited-link-color: #c069ff;
@@ -124,7 +126,7 @@ main {
124126

125127
.item blockquote {
126128
border-left: solid .25em;
127-
background: #fafafa;
129+
background: var(--blockquote-background);
128130
padding: 20px;
129131
margin: 20px 0;
130132
}
@@ -142,11 +144,15 @@ main {
142144

143145
.item_desc {
144146
margin-top: 0.5em;
145-
display:block;
147+
display: block;
146148
}
147149

148150
.item_media {
149151
margin-top: 1em;
150152
padding: 0.5em;
151-
background-color: #f9f9fa;
153+
background-color: var(--media-background);
154+
}
155+
156+
.item_media ul {
157+
padding-inline-start: 1em;
152158
}

0 commit comments

Comments
 (0)