1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
|
html,
body {
height: 100%;
}
body {
margin: 0 30px;
padding-bottom: 125px;
overflow-x: hidden;
}
a {
color: #23a7e2;
}
.header {
padding: 1px 0 30px;
white-space: nowrap;
overflow: hidden;
color: #2f2e31;
}
.subheader {
position: absolute;
top: -35px;
width: 100%;
color: #2f2e31;
}
.inline-block-child {
display: inline-block;
}
.control {
height: 20%;
}
.content {
height: 80%;
}
.src,
.dst {
width: 49%;
position: relative;
float: left;
height: 100%;
}
.info,
.options {
width: 49%;
position: relative;
float: left;
height: 100%;
padding: 5px;
}
#info_text {
resize: none;
height: 100%;
width: 100%;
}
.dst .options {
float: right;
}
.src .info .CodeMirror {
background-color: #fffffb;
border: 1px solid #888;
border-radius: 3px;
box-shadow: 0 0 3px #ccc inset;
}
.dst .options .CodeMirror {
background-color: #f8f8f8;
border: 1px solid #eee;
border-radius: 3px;
}
/*.CodeMirror-scroll {
height: 500px;
line-height: 1.2;
}*/
.CodeMirror {
height: 100%;
font-size: 13px;
}
.CodeMirror .cm-comment {
color: #4c4a4f;
}
.CodeMirror .cm-number {
color: #c63b00;
}
.CodeMirror .cm-string {
color: #106f1b;
}
|