Added Sans-Serif theme.

This commit is contained in:
Dave Z 2018-06-19 00:57:30 -04:00
parent c719cf7df0
commit be95e87e0e
3 changed files with 21 additions and 7 deletions

View File

@ -9,8 +9,9 @@ import "github.com/miniflux/miniflux/errors"
// Themes returns the list of available themes.
func Themes() map[string]string {
return map[string]string{
"default": "Default",
"black": "Black",
"default": "Default",
"black": "Black",
"sansserif": "Sans-Serif",
}
}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,11 @@
body,
.entry-content,
.entry-content blockquote,
.entry-content q {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
.entry-content {
font-size: 1.17em;
font-weight: 400;
}