You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 4, 2020. It is now read-only.
As I mentioned in another thread, I'd prefer a different font and background color for the reading pane in Feedbin. In case it helps anyone else, this is the code I have added to my UserContent.css file to change the settings for Feedbin in Firefox. I'm no CSS expert but it seems to work okay:
@namespaceurl(http://www.w3.org/1999/xhtml);
/* Feedbin font and leading for third column */@-moz-document domain(feedbin.me) {
body
{ font-family:Calibri, sans-serif !important;
font-size:14px!important;
line-height:19px!important;
}
/* Feedbin background color of third column */
.entry-content
{ background-color:#DCDCDC!important;
}
}