Font Size Addon - 651521808

Does anyone know of an addon that will set the font size for just the cards but leave everything else the default font size e.g. decks, browser. I can zoom in to make the card font larger when I start doing cards in a deck but not sure if there is anything out there to have the card font already set.

Thank you in advance!

You can do that with regular anki

Watch this video (very outdated design, but the principles stands)

then add

font-size
The size of the font in pixels. When changing it, make sure you leave px at the end.

e.g:

.card {
  font-family: arial;
  font-size: 20px;
  text-align: center;
  color: black;
  background-color: white;
}

If you want to learn more
Styling & HTML - Anki Manual

alternative video