Files
atom/static/editor.css
2012-01-26 18:56:42 -08:00

32 lines
432 B
CSS

.editor {
font: 18px Inconsolata, Monaco, Courier !important;
position: relative;
width: 100%;
height: 100%;
background: #333;
color: white;
overflow-y: scroll;
}
.editor pre {
margin: 0;
z-index: 1;
}
.editor .cursor {
background: #9dff9d;
opacity: .3;
}
.editor .hidden-input {
position: fixed;
top: 0;
left: 100%;
}
.editor .selection {
position: absolute;
background: white;
opacity: .1;
}