Files
chrome-extensions-samples/mini-code-edit/style.css
2012-06-27 23:19:03 -07:00

51 lines
571 B
CSS

body {
margin: 0;
padding: 0;
overflow: hidden;
}
button {
margin: 0;
}
.CodeMirror {
margin: 0;
padding: 0;
}
.CodeMirror-scroll {
height: auto;
overflow-y: hidden;
overflow-x: auto;
}
#editor {
position: absolute;
top: 29px;
bottom: 24px;
left: 0;
right: 0;
background: #262626;
}
.info {
font-family: monospace;
white-space: nowrap;
position: absolute;
bottom: 0;
background: #eee;
padding: 2px;
height: 20px;
left: 0;
right: 0;
}
.info label {
font-weight: bold;
}
.buttons {
padding: 2px;
height: 25px;
}