Skip to content

Instantly share code, notes, and snippets.

@XXpE3
Last active August 13, 2019 11:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save XXpE3/2e3452574ca1a6788319dcbb991ab73c to your computer and use it in GitHub Desktop.
Save XXpE3/2e3452574ca1a6788319dcbb991ab73c to your computer and use it in GitHub Desktop.
Tiny Tiny RSS Font Size
/* Google font CDN */
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+SC|Source+Code+Pro&display=");
/* Code pre font */
body.ttrss_main #content-insert pre, body.ttrss_main #headlines-frame pre, body.ttrss_main .dijitContentPane pre {
font-family: 'Source Code Pro';
font-size: 20px;
}
/* Read font */
body.ttrss_main.ttrss_index.flat .dijitMenu .dijitMenuItemLabel, body.ttrss_main.ttrss_index.flat .content-inner, body.ttrss_main.ttrss_index.flat #content-insert, body.ttrss_main.ttrss_index.flat .cdm .content, body.ttrss_main.ttrss_index.flat .post .content {
font-size: 20px ! important;
font-family: 'Noto Sans SC';
}
body.ttrss_main h1 {
font-size: 29px;
font-family: 'Noto Sans SC';
}
body.ttrss_main h2 {
font-size: 27px;
font-family: 'Noto Sans SC';
}
body.ttrss_main h3 {
font-size: 25px;
font-family: 'Noto Sans SC';
}
body.ttrss_main h4 {
font-size: 23px;
font-family: 'Noto Sans SC';
}
body.ttrss_main h5 {
font-size: 22px;
font-family: 'Noto Sans SC';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment