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.
phrebejk@460
     1
/* app css stylesheet */
phrebejk@460
     2
.code-editor, .mono-font, .CodeMirror {
phrebejk@460
     3
    font-family: "Inconsolata","Monaco","Consolas","Andale Mono","Bitstream Vera Sans Mono","Courier New",Courier,monospace;
phrebejk@460
     4
    font-size: 13px;
phrebejk@460
     5
    line-height: 15px;
phrebejk@460
     6
}
phrebejk@460
     7
phrebejk@460
     8
.CodeMirror {                    
phrebejk@460
     9
    border: 1px solid #d9edf7;      
phrebejk@460
    10
    height: 300px;
phrebejk@460
    11
}
phrebejk@460
    12
      
phrebejk@460
    13
.CodeMirror-scroll {
phrebejk@460
    14
    overflow-y: auto;
phrebejk@460
    15
    overflow-x: auto;
phrebejk@460
    16
}
phrebejk@460
    17
phrebejk@460
    18
.ic-html5 {
phrebejk@460
    19
  display: inline-block;  
phrebejk@460
    20
  height: 20px;
phrebejk@460
    21
  width: 20px;
phrebejk@460
    22
  vertical-align: text-bottom;
phrebejk@460
    23
  background-repeat: no-repeat;  
phrebejk@460
    24
  background-image: url("../img/html5.png");  
phrebejk@460
    25
}
phrebejk@460
    26
phrebejk@460
    27
.ic-java {
phrebejk@460
    28
  display: inline-block;  
phrebejk@460
    29
  height: 20px;
phrebejk@460
    30
  width: 20px;
phrebejk@460
    31
  vertical-align: text-bottom;
phrebejk@460
    32
  background-repeat: no-repeat;  
phrebejk@460
    33
  background-image: url("../img/java.png"); 
phrebejk@460
    34
 
phrebejk@460
    35
}
phrebejk@460
    36