﻿html, body {
    height: 100%;
    font-size: 1rem;
}
/*側邊Menu相關*/
.menu_section h3 {
    color: #fff !important;
    text-transform: capitalize !important;
    font-size: 14px !important;
    padding: 10px;
    background-color: #36414d !important;
    text-align: center;
}
.nav.side-menu > li > a, .nav.child_menu > li > a {
    color: #E7E7E7 !important;
}

.nav > ol, ul, dl {
    padding: 0px !important;
}

/*置底置頂按鈕位置*/
.btnGoTo {
    position: fixed; /* Fixed/sticky position */
    bottom: 80px; /* Place the button at the bottom of the page */
    right: 20px; /* Place the button 30px from the right */
    z-index: 1000; /* Make sure it does not overlap */
}

/*多檔案上傳拖拉區塊*/
.dv-dropzone {
    width: 100%;
    height: 100px;
    text-align: center;
    font-weight: bold;
    border: dashed 2px;
    padding-top: 40px;
}

    .dv-dropzone.in {
        font-size: larger;
    }

    .dv-dropzone.hover {
        background: lawngreen;
    }

    .dv-dropzone.fade {
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
        opacity: 1;
    }