Created
October 22, 2022 05:53
-
-
Save bobby1030/852ad232d9eee8e3ce535fe9d12f5f33 to your computer and use it in GitHub Desktop.
Miniflux CSS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
==UserCSS== | |
@name Miniflux CSS | |
@match | |
@version 1.0 | |
==/UserCSS== | |
*/ | |
@font-face { | |
font-family: "Charter Italic"; | |
src: local("CharterItalic"); | |
font-style: normal; | |
} | |
:root { | |
--entry-content-font-weight: 400; | |
--entry-content-font-family: Charter, Georgia, 'Times New Roman', Times, serif; | |
--entry-content-color: #444; | |
--entry-content-quote-font-family: var(--entry-content-font-family); | |
} | |
.entry-content { | |
line-height: 1.6em; | |
text-align: justify; | |
word-break: break-all; | |
} | |
.entry-content figure > figcaption { | |
line-height: 1.3em; | |
} | |
.entry-content blockquote { | |
font-family: 'Charter Italic', 'Kaiti TC', cursive; | |
} | |
/* 報導者縮略詞典 */ | |
.entry-content abbr { | |
font-family: 'Charter Italic', 'Kaiti TC', cursive; | |
padding: 0.5em 0; | |
} | |
.entry-content abbr p { | |
display: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment