Created
August 28, 2022 12:33
-
-
Save aalemayhu/d96129b46f66441bc423467cce7dcd98 to your computer and use it in GitHub Desktop.
Anki Basic centered flashcard
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
<!-- Front template --> | |
<div class="front"> | |
{{Front}} | |
</div> | |
<!-- Back template --> | |
<div class="back"> | |
{{FrontSide}} | |
<hr id=answer> | |
{{Back}} | |
</div> | |
<!-- Styling (make sure to remove the <style> and </style>) --> | |
<style> | |
body { | |
display: flex; | |
align-items: center; | |
flex-direction: column; | |
justify-content: center; | |
height: 80vh; | |
} | |
.card { | |
font-family: arial; | |
font-size: 20px; | |
text-align: center; | |
color: black; | |
background-color: white; | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment