glenzac
seHp2JveXU

Tips to make cool Anki cards for STEM subjects

https://i.imgur.com/RMsdDsc.jpg

  • Here’s my card formatting code:

Basic Card:

Front Template:

<div class=frontbg>

{{Front}}

 </div>

Styling

.card {
 font-family: Bariol;
 font-size: 30px;
 text-align: left;
 color: black;
 background-color: white;
}

/* COLOR ACCENTS FOR BOLD-ITALICS-UNDERLINE */
b { color: #e74c3c !important; } /* BOLD STYLE */
u { color:##9b59b6; text-decoration: none;} /* UNDERLINE STYLE */
i  { color:#2ecc71; } /* ITALICS STYLE */
a { color: LightGray !important; text-decoration: none; font-size: 10px; font-style: normal; } /* LINK STYLE */

.frontbg {
 background-color: #fffff;
 border-radius: 7px;
 color: #e74c3c;
font-weight: bold;
 position: relative;
 left: 0;
}

.backbg {
 position: relative;
 top: -2px;
 background-color: #fff;
 padding: 10px;
 padding-bottom: 15px;
 padding-left: 20px;
 padding-right: 30px;
 border-radius: 0px 0px 10px 10px;
 color: #000000;
 font-size: 28px;
 text-align: left;
}

Back Template:

<div class=frontbg>
{{FrontSide}}
<div class=backbg>
<hr id=answer>

{{Back}}

</div>
  • Anki extensions to use
    • field-history
    • frozen-fields
    • image-occlusion-enhanced
    • large-and-colorful-buttons
    • mini-format-pack
    • more-overview-stats-21
    • review-heatmap
    • symbols
    • true-retention-by-card-maturity
    • load-balancer

Comments