@import './console.css';

.darkglass{
    background-color: #00000077;
}
.container{
    display: flex;
    flex-direction: row;
    flex-grow: 1;
    flex-shrink: 1;
    width: 100%;
}
.debug .container>.pages,
.debug .container>.root{
    background-color: rgba(0, 255, 255, 0.287);
}
.container>.pages{
    width: 280px;
}
.container>.nv{
    display: block;
    margin: 10px;
    width: 5px;
    height: 100%;
    background-color: rgb(53, 53, 53);
}
.showx>.body{
    display: flex;
    flex-direction: column;
}
.container>.root{
    flex-grow: 1;
    flex-shrink: 1;
}
.button{
    height: 30px;
    font-size: 20px;
    line-height: 30px;
    display: block;
    white-space: nowrap;
}
.button.ico::before {
    display: inline-block;
    content: '>';
    color: #66ccff;
    padding: 0 5px 0 5px;
    transform: rotate(0deg);
    transition: transform 0.1s;
}
.button.ico.pagedown:hover::before,
.button.ico.pagedown.active::before{
    transform: rotate(90deg);
}
.button.ico::after{
    display: inline-block;
    content: '<';
    color: #66ccff;
    position: relative;
    transition: left 0.5s, opacity 0.5s;
    left: 100px;
    opacity: 0;
}
.button.ico:hover::after,
.button.ico.active::after{
    left: 20px;
    opacity: 1;
}
.make-package-view-pool{
    display: block;
    background-color: #00000066;
    font-family: monospace;
    white-space: pre;
}
.make-package-view-file{
    color: #23a9d1;
}
.make-package-view-title{
    color: #f1af14;
}
.make-package-view-const{
    position: relative;
    left: 0;
    top: 0;
    padding-left: 15px;
}
.make-package-view-const::before{
    transition: background-color .3s;
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: #ffffff30;
    display: block;
}
.make-package-view-const:hover::before{
    background-color: #fffffff0;
}
@media (max-width: 700px){
    .container{
        flex-direction: column-reverse;
    }
    .container>.pages{
        width: auto;
    }
}