Created
May 7, 2013 22:45
-
-
Save zabbarob/5536786 to your computer and use it in GitHub Desktop.
Anki cards, CSS and HTML templates.
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
@font-face { | |
font-family: junicode; | |
src: url('_junicode.ttf'); | |
} | |
.card, table { | |
font-family: Helvetica, sans-serif, junicode; | |
font-size: 20px; | |
text-align: center; | |
color: #d03030; | |
background-color: #fafaf5; | |
} | |
table { | |
margin: auto; | |
border-collapse: collapse; | |
} | |
.deck, .hint, table.declension td:first-child { | |
font-size: 12px; | |
color: lightgrey; | |
} | |
.deck { font-size: 9px; } | |
.letter { font-size: 32px; } | |
.code { | |
font-family: Inconsolata, Courier New, monospace; | |
font-size: 16px; | |
} | |
table.declension { text-align: left; } | |
table.declension td:first-child { text-align: right; } | |
table.i-umlaut td { | |
border: 1px solid lightgray; | |
height: 2em; | |
width: 4.5em; | |
} |
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
{{FrontSide}} | |
<hr> | |
{{Front}} |
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
{{Back}} | |
<div class="deck">{{Deck}}</div> |
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
{{FrontSide}} | |
<hr> | |
{{Back}} |
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
{{Front}} | |
<div class="deck">{{Deck}}</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment