Files
atom/static/atom.css
Nathan Sobo 454557b502 Merge branch 'master' into global-find
Conflicts:
	spec/extensions/command-panel-spec.coffee
	src/app/buffer.coffee
	src/extensions/command-panel/command-panel.coffee
	src/extensions/command-panel/keymap.coffee
2012-07-24 17:59:49 -06:00

74 lines
1.1 KiB
CSS

* {
margin: 0;
padding: 0;
}
body {
font: 16px Inconsolata, Monaco, Courier !important;
}
#root-view {
height: 100%;
overflow-y: auto;
position: relative;
background-image: url(static/images/linen.png);
}
#root-view #horizontal {
display: -webkit-box;
height: 100%;
}
#root-view #vertical {
-webkit-box-flex: 1;
display: -webkit-box;
-webkit-box-orient: vertical;
}
#root-view #panes {
-webkit-box-flex: 1;
position: relative;
}
#root-view #panes .column {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
overflow-y: hidden;
}
#root-view #panes .row {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
overflow-x: hidden;
}
#root-view #panes .pane {
position: absolute;
display: -webkit-box;
-webkit-box-orient: vertical;
top: 0;
bottom: 0;
left: 0;
right: 0;
box-sizing: border-box;
}
#root-view #panes .row > * + * {
border-left: 5px solid #515151;
}
#root-view #panes .column > * + * {
border-top: 5px solid #515151;
}
.error {
background: #991212;
-webkit-transition: background 200ms ease-out;
}