mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2025-12-24 20:42:43 +00:00
58 lines
1.1 KiB
Plaintext
58 lines
1.1 KiB
Plaintext
|
|
.splitPane{
|
|
position : relative;
|
|
display : flex;
|
|
height : 100%;
|
|
outline : none;
|
|
flex-direction : row;
|
|
.pane{
|
|
overflow-x : hidden;
|
|
overflow-y : hidden;
|
|
flex : 1;
|
|
}
|
|
.divider{
|
|
display : table;
|
|
height : 100%;
|
|
width : 15px;
|
|
cursor : ew-resize;
|
|
background-color : #bbb;
|
|
text-align : center;
|
|
.dots{
|
|
display : table-cell;
|
|
vertical-align : middle;
|
|
text-align : center;
|
|
i{
|
|
display : block;
|
|
margin : 10px 0px;
|
|
font-size : 6px;
|
|
color : #666;
|
|
}
|
|
}
|
|
&:hover{
|
|
background-color: #999;
|
|
}
|
|
}
|
|
.arrow{
|
|
position : absolute;
|
|
width : 25px;
|
|
height : 25px;
|
|
border : 2px solid black;
|
|
border-radius : 15px;
|
|
text-align : center;
|
|
font-size : 1.2em;
|
|
cursor : pointer;
|
|
background-color : #ddd;
|
|
z-index : 999;
|
|
box-shadow : 0 4px 5px #0000007f;
|
|
&.left{
|
|
top : 30px;
|
|
}
|
|
&.right{
|
|
top : 60px;
|
|
}
|
|
&:hover{
|
|
background-color: #666;
|
|
}
|
|
}
|
|
}
|