pulsar/static/atom.css

53 lines
788 B
CSS
Raw Normal View History

2011-11-10 08:19:54 +04:00
* {
margin: 0;
padding: 0;
}
body {
font-family: Lucida Grande;
font-size: 12px;
}
#root-view {
height: 100%;
height: 100%;
overflow-y: auto;
position: relative;
background-image: url(static/images/linen.png);
2011-11-10 08:19:54 +04:00
}
#root-view #panes {
height: 100%;
width: 100%;
}
#root-view #panes .column {
position: absolute;
width: 100%;
height: 100%;
overflow-y: hidden;
}
#root-view #panes .row {
position: absolute;
width: 100%;
height: 100%;
overflow-x: hidden;
}
#root-view #panes .pane {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
-webkit-box-shadow: inset 0px 0px 2px 2px rgba(0, 0, 0, .1);
}
.row > .pane + .pane {
border-left: 5px solid #515151;
}
.column > .pane + .pane {
border-top: 5px solid #515151;
}