2011-11-10 08:19:54 +04:00
|
|
|
* {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
font-family: Lucida Grande;
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
|
2012-03-16 03:18:26 +04:00
|
|
|
#root-view {
|
|
|
|
height: 100%;
|
2012-03-16 15:41:43 +04:00
|
|
|
height: 100%;
|
|
|
|
overflow-y: auto;
|
2012-03-16 03:18:26 +04:00
|
|
|
position: relative;
|
2012-03-15 04:28:23 +04:00
|
|
|
background-image: url(static/images/linen.png);
|
2011-11-10 08:19:54 +04:00
|
|
|
}
|
|
|
|
|
2012-03-21 01:51:22 +04:00
|
|
|
#root-view #panes {
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2012-04-12 04:37:22 +04:00
|
|
|
#root-view #panes .column {
|
2012-03-20 02:48:13 +04:00
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
2012-03-19 22:15:37 +04:00
|
|
|
height: 100%;
|
2012-03-20 02:48:13 +04:00
|
|
|
overflow-y: hidden;
|
2012-03-19 18:34:37 +04:00
|
|
|
}
|
|
|
|
|
2012-04-12 04:37:22 +04:00
|
|
|
#root-view #panes .row {
|
2012-03-20 02:48:13 +04:00
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
2012-03-19 22:37:53 +04:00
|
|
|
height: 100%;
|
2012-03-20 02:48:13 +04:00
|
|
|
overflow-x: hidden;
|
2012-03-19 22:37:53 +04:00
|
|
|
}
|
|
|
|
|
2012-04-12 04:37:22 +04:00
|
|
|
#root-view #panes .pane {
|
2012-03-20 02:48:13 +04:00
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2012-03-20 03:01:52 +04:00
|
|
|
box-sizing: border-box;
|
|
|
|
-webkit-box-shadow: inset 0px 0px 2px 2px rgba(0, 0, 0, .1);
|
2012-03-19 22:23:39 +04:00
|
|
|
}
|
|
|
|
|
2012-04-13 01:59:55 +04:00
|
|
|
.row > * + * {
|
2012-03-20 03:01:52 +04:00
|
|
|
border-left: 5px solid #515151;
|
|
|
|
}
|
|
|
|
|
2012-04-13 01:59:55 +04:00
|
|
|
.column > * + * {
|
2012-03-20 03:01:52 +04:00
|
|
|
border-top: 5px solid #515151;
|
|
|
|
}
|