/*
 * Append a small and angry red skull and crossbones symbol to anchor links marked with rel='nofollow'
 *
 * Author      : christian gorbach
 * Updated     : June 29th, 2007
 * Website     : http://rimien.com/
 * Description : Mark nofollow links
 * Usage       : Use with Stylish Firefox extension (http://userstyles.org/) or copy to your Firefox userContent.css file
 * Thanks to   : My Wife
 */

a[rel~="nofollow"]::after {
    content: "\2620" !important ;
    color: #933 !important;
    font-size: medium !important;
}