/* style sheet to show the anchors */

/* was: @import url("http://www.dcs.ex.ac.uk/~pjbrown/edit_annotations/replacements.css"); */
@import url("replacements.css");

/*  ANCHORS (covers both SPAN and DIV  */
  span.ar {color: green; background: white;
     text-decoration: line-through} /* anchor for replacement */
  span.ac {color: lime; background: white;
     } /* anchor for comment */
  span.ad {color: #00FFFF /* blue-green = rgb(0,255,255) */; background: white;
    text-decoration: line-through} /* anchor for deletion */

  span.i:before {content: "^"}  /* pseudo anchor for insertion */
  span.ac:before {content: "{{"}  /* start of comment anchor  */

  div.ar {color: green; background: white;
     text-decoration: line-through} /* anchor for replacement */
  div.ac {color: lime; background: white;
     } /* anchor for comment */
  div.ad {color: #00FFFF /* blue-green = rgb(0,255,255) */; background: white;
    text-decoration: line-through} /* anchor for deletion */

  /* WAS: SPAN.ai {color: yellow; background: white} anchor for insertion
     (after) */

  div.i:before {content: "^"}  /* pseudo anchor for insertion */
  div.ac:before {content: "{{"}  /* start of comment anchor  */

