﻿
div.RSSIcon {
    font-size: 2rem;
    font-weight: 900;
    color: #FFFFFF;
    background-color: #FF9933;
    text-align: center;
    border: 1px solid #999999;
    padding : 5px;
    border-radius : 5px;

    flex-grow : 0;
    flex-shrink : 0;
}

    div.RSSIcon a {
        color: #FFFFFF;
    }


.downloadPdf
{
    margin-top : 0.5rem;
    font-size : 0.9rem;
}

.categoryContainer
{
    position : relative;
}

.belowHeading {
    margin-bottom: 2rem;
    margin-top: 1.5rem;
}


table.noticeList_outter {
    width: 100%;
}

/* 通告表格 */
.noticeList
{
    border : solid 1px;
    width: 100%;
    margin-top: 1rem;
    border-collapse: collapse;
    border-radius : 1rem;
}

    .noticeList tbody td, .noticeList thead th 
    {
        padding: 1rem;
    }

.noticeList thead th
{
    font-weight: 900;
    font-size: 1.2rem;
}

/* 通告表格，標頭，日期  */
.noticeList thead .date
{
    
}

/* 通告表格，標頭，通告名稱  */
    .noticeList thead .caption {
    }

.noticeList thead .category
{
	
}

/* 通告表格，日期  */
.noticeList tbody .date
{
    
}

/* 通告表格，通告名稱  */
.noticeList tbody .caption
{

}

    /* 通告表格，通告名稱超連結  */
    .noticeList tbody .caption a {
        color: #000000;
    }


.noticeList tbody .category
{
	
}


@media screen and (max-width: 600px) {
    table.noticeList {
        border: 0;
    }

        table.noticeList thead {
            border: none;
            clip: rect(0 0 0 0);
            height: 1px;
            margin: -1px;
            overflow: hidden;
            padding: 0;
            position: absolute;
            width: 1px;
        }

        table.noticeList tr {
            border-bottom: 1px solid #ddd;
            display: block;
            margin-bottom: .625em;
        }

        table.noticeList td {
            border-bottom: 1px solid #ddd;
            display: block;
            text-align: right;
        }

            table.noticeList td::before {
                content: attr(data-label);
                float: left;
                font-weight: bold;
            }

            table.noticeList td:last-child {
                border-bottom: 0;
            }
}

/* ================= Tool Tips ======================================== */
.tooltip {
    position: relative;
    display: inline-block;
}

    .tooltip .tooltiptext {
        visibility: hidden;
        width: 120px;
        background-color: #555;
        color: #fff;
        text-align: left;
        border-radius: 6px;
        padding: 5px 0;
        position: absolute;
        z-index: 1;
        left: 100%;
        margin-left: 10px;
        opacity: 0;
        transition: opacity 1s;
        bottom: 100%;
    }

        .tooltip .tooltiptext.bottom {
            bottom: auto;
            top: 125%;
        }

        .tooltip .tooltiptext::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: #555 transparent transparent transparent;
        }

    .tooltip:hover .tooltiptext {
        visibility: visible;
        opacity: 1;
    }



