﻿
/* 段落內容來自 Activity Photo ========================================= */
a.eachActivity {
    display: block;
    width: 100%;
    color: #000000;
    text-decoration: none;
    border-bottom: dashed 1px #b6b5b5;
    padding: 10px;
    overflow: hidden;
    line-height: 2rem;
}

img.thumbnail {
    width: 25%;
    height: auto;
    float: left;
    margin: 0 10px 10px 0;
    border-radius: 0.5rem;
}

span.date {
    display: block;
    font-size: 0.8rem;
}

span.caption {
    display: block;
    font-weight: 600;
}

/* 自建網頁導覽列 ====================================================== */


nav.customPageMenu a {
    color: #FFF;
}

nav.customPageMenu {
    margin : 1rem 0;
    background-color: var(--color08);
}

    nav.customPageMenu ul {
        padding: 0;
        margin: 0;
        list-style: none;
        position: relative;
    }

        nav.customPageMenu ul li {
            display: inline-block;
            background-color: var(--color08);
        }

    nav.customPageMenu a {
        display: block;
        padding: 0 10px;
        color: #FFF;
        font-size: 1rem;
        line-height: 2rem;
        text-decoration: none;
    }

        nav.customPageMenu a:hover {
            background-color: #000000;
        }

    /* Hide Dropdowns by Default */
    nav.customPageMenu ul ul {
        display: none;
        position: absolute;
        top: 2rem; /* the height of the main nav */
    }

    /* Display Dropdowns on Hover */
    nav.customPageMenu ul li:hover > ul {
        display: inherit;
    }

    /* Fisrt Tier Dropdown */
    nav.customPageMenu ul ul li {
        width: 170px;
        float: none;
        display: list-item;
        position: relative;
    }

    /* Second, Third and more Tiers	*/
    nav.customPageMenu ul ul ul li {
        position: relative;
        top: -60px;
        left: 170px;
    }


/* Change this in order to change the Dropdown symbol */
nav.customPageMenu li > a:after {
    content: ' +';
}

nav.customPageMenu li > a:only-child:after {
    content: '';
}

/* 自建網頁內容 ================================================== */
div.wraper > div.eachParagraph
{
    margin : 1rem 0;
}

    div.wraper > div.eachParagraph > h3.paragraphHeading
    {

    }



    div.wraper > div.eachParagraph > div.paragraphContent
    {
        line-height : 2rem;
    }

    div.wraper > div.eachParagraph > div.paragraphContent ol {
        list-style : decimal;
        list-style-position : inside;
    }

        div.wraper > div.eachParagraph > div.paragraphContent ul {
            list-style: circle;
            list-style-position: inside;
        }

div.wraper img
{
    max-width: 100%;
    height : auto;
}
div.wraper table 
{
    max-width: 100%;
}

