﻿/* v1.0.0 Copyright 2011-2012 Tom Keller Consulting (free to use if you keep this notice) http://fuzzy-string.com/
 Since all these single-character HTML tags are deprecated, you might not be using them for any other purpose in your site.
*/

/* 1. Equality (e): no tag */

i { /* 2. Substitute (s): italic, add bold green */
    font-weight: bold;
    color: green;
}

s { /* 3. Delete (d): strikethrough, add bold red */
    font-weight: bold;
    color: red;
}

b { /* 4. Insert (i): bold, add border */
    border: solid 1px;
}

u { /* 5. Transpose (t): underline, add bold green */
    font-weight: bold;
    color: green;
}
