Add a border and subtle inset shadow when panes are split.

This commit is contained in:
Nathan Sobo
2012-03-19 17:01:52 -06:00
parent 81e5a10ddd
commit c0dd87665a

View File

@@ -34,5 +34,14 @@ body {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
-webkit-box-shadow: inset 0px 0px 2px 2px rgba(0, 0, 0, .1);
}
.row > * + * {
border-left: 5px solid #515151;
}
.column > * + * {
border-top: 5px solid #515151;
}