/**
CSS file for all debugging and DEV use.
@TODO: exclude for production.
*/

a[href=''],
a[href='#'] {
    position: relative!important;
    background-color: #F06F37!important;
    color:#FFF!important;
    padding-left:5px!important;
    padding-right:5px!important;
}

a[href='']:after,
a[href='#']:after {
    content:'Empty link';
    color:#fff;
    background:#333;
    background:rgba(51,51,51,0.75);
    padding:10px;
    position:absolute;
    left:-9999px;
    opacity:0;
    bottom:100%;
    white-space:nowrap;
    -webkit-transition:0.25s linear opacity;
    font-size:1.5em;
    font-weight:bold;
}

a[href='']:hover:after,
a[href='#']:hover:after {
    left:5px;
    opacity:1;
}

/* end of css file */