<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*css for font families
Notice that we are loading some fonts, and some with a restricted list of characters in base.html*/

/*Rashi Script - Seems we use it only for sheets*/
@font-face {
  font-family: 'Rashi Script';
  src: url('/static/fonts/Mekorot-Rashi.ttf');
}

/*Taamey Frank - Our main Hebrew font*/
@font-face {
  font-family: 'Taamey Frank';
  src: url('/static/fonts/Taamey-Frank/TaameyFrankCLM-Medium.ttf');
  unicode-range: U+0000-0040, U+005B-0060, U+007B-FB4F; /*All the glyphs in font except Latin characters*/
}
@font-face {
  font-family: 'Taamey Frank';
  src: url('/static/fonts/Taamey-Frank/TaameyFrankCLM-Bold.ttf');
  font-weight: bold;
  unicode-range: U+0000-0040, U+005B-0060, U+007B-FB4F; /*All the glyphs in font except Latin characters*/
}
@font-face {
  font-family: 'Taamey Frank';
  src: url('/static/fonts/Taamey-Frank/TaameyFrankCLM-MediumOblique.ttf');
  font-style: italic;
  unicode-range: U+0000-0040, U+005B-0060, U+007B-FB4F; /*All the glyphs in font except Latin characters*/
}
@font-face {
  font-family: 'Taamey Frank';
  src: url('/static/fonts/Taamey-Frank/TaameyFrankCLM-BoldOblique.ttf');
  font-style: italic;
  font-weight: bold;
  unicode-range: U+0000-0040, U+005B-0060, U+007B-FB4F; /*All the glyphs in font except Latin characters*/
}

/*Noto Color Emoji - flags emojis within Hebrew text*/
@font-face {
  font-family: 'Noto Color Emoji';
  src: url('/static/fonts/NotoColorEmoji.ttf');
  unicode-range: U+1F1E6-1F1FF;
}
/*Meltho - Syriac*/
@font-face {
  font-family: 'Meltho';
  src: url('/static/fonts/SyrCOMBatnan.otf');
  unicode-range: U+0700-074F;
}
/*Cardo - Greek*/
@font-face {
  font-family: 'Cardo';
  src: url('/static/fonts/Cardo-Regular.ttf');
  unicode-range: U+0300-036F, U+0370-03FF, U+1D00-1D7F, U+1DBF, U+1F00-1FFF, U+2126, U+AB65, U+10140-1018F, U+101A0, U+1D200-1D24F;
}

:root {
  /* font stacks */
  --english-sans-serif-font-family: "Roboto", "Helvetica Neue", "Helvetica", sans-serif;
  --hebrew-sans-serif-font-family: "Heebo", "Roboto", sans-serif;
  --english-serif-font-family:
          "Cardo", /*Greek*/
          "Meltho", /*Syriac*/
          "adobe-garamond-pro", /*basic English font (including punctuation etc.)*/
          "Taamey Frank", /*Hebrew (punctuation was already caught by adobe-garamond-pro*/
          "Crimson Text", /*this font is loaded in base.html only for some latin letters with diacritics*/
          "Georgia", /*this font ssems to be here for historical reasons, but actually it applies for Cyrillic*/
          "Times New Roman", serif, /*fallbacks*/
          "Noto Sans Samaritan"; /*Samaritan - this font is loaded in base.html for only Samaritan characters. it's here after adobe-garamond-pro because it has influence on font metrics*/
  --hebrew-serif-font-family:
          "Cardo", /*Greek*/
          "Noto Color Emoji", /*flag emojis*/
          "Taamey Frank", /*basic Hebrew font (including punctuation etc., but no English)*/
          "adobe-garamond-pro", /*English*/
          "Crimson Text", /*this font is loaded in base.html for only some latin letters with diacritics*/
          "Times New Roman", serif; /*fallbacks*/
}
</pre></body></html>