main.scss 3.5 KB
html, body{
    width: 100%;
    height: 100%;
}
.programing{
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    background-color: #999;
}

// 头部菜单
.record-title{
    width: 100%;
    height: 36px;
    background-image: -webkit-linear-gradient(left, #1FB6FF 0%, #62DCF5 100%);
    background-image: linear-gradient(to right, #1FB6FF 0%, #62DCF5 100%);
    position: absolute;
    top: 0;
    z-index: 9999;
    padding-left: 28px;

}

// 录制区
.record-wrap{
    width: 100%;
    height: 100%;
    position: absolute;
    box-sizing: border-box;
    padding-top: 36px;
    padding-bottom: 300px;

    #ideDir{
        width: 170px;
        height: 100%;
        padding-top: 24px;
        float: left;
        background-color: #FFF;
        overflow-y: scroll;

        .tree-header{
            text-indent: 14px;
        }
    }

    #ideEditer{
        width: calc(100% - 170px);
        float: left;
        height: 100%;
        background-color: #00F;

        #recordzone, #replayzone, .coding{
            height: 100%;
        }

    }

    #folder{
        height: 100%;
        min-height: 300px;
    }

    .gxb-record{
        position: relative;
        height: 100%;
    }
}

// 展示、控制区
.record-toolbox{
    width: 100%;
    position: absolute;
    bottom: 0;
    z-index: 999;

    .console-wrap{
        width: 100%;
        background-color: #FFF;
        height: 240px;
        border-top: 1px solid #999d9e;

        #toolbar{
            width: 100%;
            height: 36px;
            overflow: hidden;
            background-color: #e3e3e3;
            .result-tabs{
                height: 30px;
                border-radius: 30px;
                background-color: #62DCF5;
                overflow: hidden;
                margin: 3px 16px;
                color: #fff;
            }
            .text{
                color: #fff;
            }
            .result-tabs>li.active>a, .result-tabs>li.active>a:hover, .result-tabs>li>a:hover, .result-tabs>li.active>a:focus{
                color: #1FB6FF;
                background-color: #fff;
                box-shadow: 0px 0px 2px 0px #B3E5FF;
                border: none;
            }
            .result-tabs>li>a, .result-tabs>li.active>a:hover{
                padding: 4px 36px;
                border: none;
                margin: 1px;
                border-radius: 15px;
                font-size: 14px;
                // color: #fff;
                transition: all 0.1s ease;
            }

            .func{
                height: 36px;
                padding-top: 3px;
            }
        }
    }
    
    #full-screen, #back-screen{
        margin: 0;
        background-image: linear-gradient(90deg, #1FB6FF 0%, #62DCF5 100%);
        border-radius: 100px;
        padding: 6px 7px;
        margin: 0 16px;
        color: #fff;
    }

    #resultoutput{
        height: 204px;
        overflow: auto;
    }

    #compileBtn{
        background-image: -webkit-linear-gradient(left, #1FB6FF 0%, #62DCF5 100%);
        background-image: linear-gradient(to right, #1FB6FF 0%, #62DCF5 100%);
        -webkit-transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) all !important;
        transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) all !important;
        border: none;
        color: #fff;
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .record-ctrl{
        height: 60px;
        width: 100%;
        z-index: 999;
        padding: 0 136px;
        background-color: #23383f;
    }
}