/*
 * CrackStation, a web-based hash cracking website.
 * Copyright (C) 2013  Taylor Hornby
 * 
 * This file is part of CrackStation.
 * 
 * CrackStation is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 * 
 * CrackStation is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 * 
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

/* dw_cyan with a few modifications */
.vimhighlight a { color: inherit; }  /* use the source code color for links */
.vimhighlight pre {
    padding: 10px; 
    font-family: monospace;
    color: #c0c0c0;
    background-color: #000000;
    border-radius: 15px;
    box-shadow: 6px 6px 4px 2px #888 ;
    background-image: url('/images/code-top.png');
    background-repeat: repeat-x;

    /* Use horizontal scroller if needed; for Firefox 2, not needed in Firefox 3 */
    overflow-x: auto;
    /* css-3 */
    white-space: pre-wrap;
    /* Mozilla, since 1999 */
    white-space: -moz-pre-wrap !important;
    /* Opera 4-6 */
    white-space: -pre-wrap;
    /* Opera 7 */
    white-space: -o-pre-wrap;
    width: 99%;
    /* Internet Explorer 5.5+ */
    word-wrap: break-word; 
}
.vimhighlight .lnr { color: #008888; }
.vimhighlight .Constant { color: #00ffff; }
.vimhighlight .Function { color: #00ffff; }
.vimhighlight .PreProc { color: #ffffff; }
.vimhighlight .Boolean { color: #00ffff; }
.vimhighlight .Identifier { color: #00cccc; }
.vimhighlight .String { color: #00bbbb; }
.vimhighlight .Operator { color: #696969; }
.vimhighlight .Statement { color: #00ffff; font-weight: bold; }
.vimhighlight .Type { color: #ffffff; }
.vimhighlight .Comment { color: #696969; }
.vimhighlight .Special { color: #ffffff; }
