launcher/src/main/resources/org/apidesign/bck2brwsr/dew/css/app.css
author phrebejk
Tue, 15 Jan 2013 15:56:45 +0100
branchdew
changeset 460 c0f1788183dd
child 541 927a5f9fa430
permissions -rw-r--r--
Web development server initial prototype.
     1 /* app css stylesheet */
     2 .code-editor, .mono-font, .CodeMirror {
     3     font-family: "Inconsolata","Monaco","Consolas","Andale Mono","Bitstream Vera Sans Mono","Courier New",Courier,monospace;
     4     font-size: 13px;
     5     line-height: 15px;
     6 }
     7 
     8 .CodeMirror {                    
     9     border: 1px solid #d9edf7;      
    10     height: 300px;
    11 }
    12       
    13 .CodeMirror-scroll {
    14     overflow-y: auto;
    15     overflow-x: auto;
    16 }
    17 
    18 .ic-html5 {
    19   display: inline-block;  
    20   height: 20px;
    21   width: 20px;
    22   vertical-align: text-bottom;
    23   background-repeat: no-repeat;  
    24   background-image: url("../img/html5.png");  
    25 }
    26 
    27 .ic-java {
    28   display: inline-block;  
    29   height: 20px;
    30   width: 20px;
    31   vertical-align: text-bottom;
    32   background-repeat: no-repeat;  
    33   background-image: url("../img/java.png"); 
    34  
    35 }
    36