@font-face {
    font-family: 'TsangerYuYangT03';
    src: url('./lib/TsangerYuYangT-W03.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


html, body, .joint-app {
    position: relative;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    -webkit-user-select: none;
    -moz-user-select: -moz-none;
    user-select: none;
    font-family: TsangerYuYangT03, sans-serif, Arial;
    overflow: hidden;
    display:block;
}

.app-header {
    position: relative;
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.app-body {
    position: relative;
    height: -moz-calc(100% - 60px);
    height: -webkit-calc(100% - 60px);
    height: calc(100% - 60px);
}

.mini-map {
    display: inline-block;
    width: 300px;
    height: 150px;
    padding: 0;
}

#mini-resize {
    position: absolute;
right: 0;
bottom: 0;
width: 10px;
height: 10px;
cursor: nwse-resize;
margin: 0 -7px -7px 0;
    border-radius: 50%;
border: 2px solid #31d0c6;
background-color: #fff;
}

/*  Toolbar  */
.title-container {
    display: inline-block;
    position: absolute;
    height: 100%;
    left: 300px;
    right: 0;
    box-sizing: border-box;
    background-color: #f0f8ff;
    z-index: 10;
    overflow: auto;
}

.left-container {
    position: absolute;
    left: 0;
    top: 0;
    width: 10px;
    height: 100%;
    overflow: auto;
    background-color: #f0f8ff;
    z-index: 10;
}


.main-container {
    position: absolute;
    top: 0;
    left: 10px;
    right: 306px;
    bottom: 150px;
    overflow: hidden;
    border:2px solid #D15DEE;
    box-sizing: border-box;
}

#app-resize{
    position: absolute;
    top: 0;
    width: 6px;
    right: 300px;
    bottom: 150px;
    background-color: #eeeeee;
    cursor:ew-resize;    
}
#app-resize:hover{
    background-color:#ee5d70;
}

/*  Inspector  */
.right-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    bottom: 150px; /* navigator height */
    /*width: 100%;*/
    border:2px solid #ee5d70;
    box-sizing: border-box;
    overflow: auto;
    background-color: #f0f8ff;
}

/*  Navigator  */
.bottom-container {
    position: absolute;
    right: 0;
    bottom: 0;
    left:10px;
    width: 100%;
    height: 150px;
    background-color: #f0f8ff;
    z-index: 10;
}




