﻿/*Msg*/
.errorMsg {
    background-color: red;
    color: wheat;
    /*文字水平置中*/
    text-align: center;
    /*水平置中*/
    justify-content: center;
}

.successMsg {
    background-color: lightgreen;
    color: brown;
    /*文字水平置中*/
    text-align: center;
    /*水平置中*/
    justify-content: center;
}

/*NuGet安裝字體Awesome完畢後，需設置使用路徑*/
@font-face {
    font-family: 'FontAwesome';
    src: url('../fonts/fontawesome-webfont.woff2') format('woff2'); /* 注意文件路径 */
    font-weight: normal;
    font-style: normal
}

/*Sort*/
table.dataTable thead .sorting:after {
    content: "\f0dc";
    float: right;
    font-family: fontawesome;
    color: rgba(50, 50, 50, 0.5);
}

table.dataTable thead .sorting_desc:after {
    content: "\f0dd";
    float: right;
    font-family: fontawesome;
}
table.dataTable thead .sorting_asc:after {
    content: "\f0de";
    float: right;
    font-family: fontawesome;
}


/*固定位置*/
.fixed_bottom {
    position: fixed;
    z-index: 99;
    bottom: 0;
    right: 0;
}
.radius {
    width: 10vw;
    height: 10vw;
    background-color: antiquewhite;
    border-radius: 100%;
}


