/*
    This just adds a coloured bar at the top of the admin
    interface to let you know which server you're on.
*/

main#main::before {
    height: 21px;
    display: block;
    width: 100%;
    color: white;
    background-color: red;
    content: "PRODUCTION";
    text-align: center;
}
