/* source: https://github.com/Tom-Rawlings/Resizable.js with changes */

.contentWindow{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.resizer{
    position: absolute;
    z-index: 100;
    background-color: black;
}

.verticalResizer{
    cursor: ns-resize;
}

.horizontalResizer{
    cursor: ew-resize;
}

.resizable-top {
    top: 0;
    left: 0;
    right: 0;
}

.resizable-bottom {
    bottom: 0;
    left: 0;
    right: 0;
}

.resizable-left {
    top: 0;
    bottom: 0;
    left: 0;
}

.resizable-right {
    top: 0;
    bottom: 0;
    right: 0;
}