Last active
October 22, 2021 13:32
-
-
Save nfitzen/66c23c7896126a33c43162ef51678aa5 to your computer and use it in GitHub Desktop.
Simple AniList CSS for Markdown formatting.
This file contains 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
/* SPDX-License-Identifier: CC0-1.0 */ | |
/* SPDX-FileCopyrightText: 2021 nfitzen <https://anilist.co/nfitzen> */ | |
/* I have zero clue how to select every (4n+k)th element. */ | |
.markdown ol { | |
list-style-type: decimal; | |
} | |
.markdown ol ol { | |
list-style-type: lower-alpha; | |
} | |
.markdown ol ol ol { | |
list-style-type: lower-roman; | |
} | |
.markdown ol ol ol ol { | |
list-style-type: decimal; | |
} | |
.markdown i em, .markdown em i, .markdown em cite, .markdown i cite { | |
font-style: normal; | |
} | |
.markdown blockquote { | |
font-style: normal; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment