@import url("fonts/monaco.css");
/* Note: on Firefox, it won't work on localhost ( http://stackoverflow.com/questions/2856502/ ) */

pre {
  font-family: Monaco, "MonacoRegular", "Andale Mono", "Courier New", monospace !important;
  font-size: 14px;  /* 12px is fine too */
  line-height: 1.5em !important;

  /*
    We increase the letter spacing for readability. See:

       http://www.w3schools.com/cssref/pr_text_letter-spacing.asp
       https://css-tricks.com/almanac/properties/l/letter-spacing/  **
         http://bricss.net/post/22718920352/subpixel-layout-coming-to-webkit
  */
  l-etter-spacing: 1px;  /* The minimum on Opera. */
  l-etter-spacing: 0.0625em;  /* Too spacy. We lose the "comic" style. */
  letter-spacing: 0.04em;  /* A compromise. */
}
