Mal:Sankewiki bokside/boksider.css

/* CSS styles Sankewikiboken

The container class containes the rules for the top and bottom text-area while the banner class contains the rules for the banner across the middle of the page.

*/


.container {

    background-color:#f2ffe6;
    padding:1em;

}
/* Hides gallery with slideshow on mobile */
@media screen and (max-width: 720px){
    
    .gallery-container-wide {

    display:none;

    }

    .banner {
        position:sticky;
        top:0;
        z-index:1000;
        text-align:center;
        font-size:larger;
        background-color:#ffcc66;
        padding:1em;

    }

}

/* Hides {{{bilde}}} on screen resoloutions above 600px */
@media screen and (min-width: 721px){
    .banner {
        position:sticky;
        top:0px;
        z-index:1000;
        text-align:center;
        font-size:larger;
        background-color:#ffcc66;
        padding:1em;

    }
    .gallery-container-narrow {

    display:none;

    }
}