config/vimb/style.css
changeset 59 a3e588dcdcb3
equal deleted inserted replaced
58:b36c5ed3c360 59:a3e588dcdcb3
       
     1 *,div,pre,textarea,body,input,td,tr,p {
       
     2     background-color: #000 !important;
       
     3     /*background-image: none !important;*/
       
     4     color: #00ff00 !important;
       
     5 }
       
     6 h1,h2,h3,h4 {
       
     7     background-color: #111 !important;
       
     8     color: #08ff08 !important;
       
     9 }
       
    10 a {
       
    11     color: #00ff70 !important;
       
    12 }
       
    13 a:hover,a:focus {
       
    14     color: #00ffe0 !important;
       
    15 }
       
    16 a:visited {
       
    17     color: #00ff70 !important;
       
    18 }
       
    19 img {
       
    20     opacity: .5;
       
    21 }
       
    22 img:hover {
       
    23     opacity: 1;
       
    24 }
       
    25 
       
    26 /* Hint mode color styling
       
    27  * Color scheme: Base16 Eighties (https://github.com/chriskempson/base16)
       
    28  *
       
    29  * The precedence of the user style is lower than that of the website so you
       
    30  * have to mark your style definition to have higher priority.
       
    31  */
       
    32 span[vimbhint^='label'] {
       
    33     background-color: #f2f0ec !important;
       
    34     border: 1px solid #2d2d2d !important;
       
    35     color: #2d2d2d !important;
       
    36     font: bold 10pt monospace !important;
       
    37     opacity: 1 !important;
       
    38     padding: .1em .4em !important;
       
    39     text-transform: uppercase !important;
       
    40 }
       
    41 span[vimbhint='label focus'] {
       
    42     font: bold 13pt monospace !important;
       
    43 }
       
    44 *[vimbhint^='hint'] {
       
    45     background-color: #ffcc66 !important;
       
    46     color: #2d2d2d !important;
       
    47 }
       
    48 *[vimbhint='hint focus'] {
       
    49     background-color: #6699cc !important;
       
    50     color: #2d2d2d !important;
       
    51 }
       
    52