Files
atom/static/editor.css
Corey Johnson & Nathan Sobo 6af33c3337 Editor directs focus to a hidden input element.
Now we'll be able to listen for textInput events, which give us better
information about what character is being entered in the presence of
multi-keystroke compositions like alt-u,u for ü
2012-01-24 15:27:05 -08:00

26 lines
337 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;
}
.editor .cursor {
background: #9dff9d;
opacity: .3;
}
.editor .hidden-input {
position: fixed;
top: 0;
left: 100%;
}