Added Sans-Serif theme.
This commit is contained in:
parent
c719cf7df0
commit
be95e87e0e
3 changed files with 21 additions and 7 deletions
|
@ -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
11
ui/static/css/sansserif.css
Normal file
11
ui/static/css/sansserif.css
Normal 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;
|
||||
}
|
Loading…
Reference in a new issue