/*
 * Copyright (c) 2012, Intel Corporation. All rights reserved.
 * File revision: 15 October 2012
 * Please see http://software.intel.com/html5/license/samples 
 * and the included README.md file for license terms and conditions.
 */


/*--- custom styles for main springboard page -----------------------------*/

.springboard {
	padding-top:1em;
	padding-bottom:1em;
}

/* outer container to used to lay everything out relatively */
.springboard-container {
    text-align: center;
    padding: 0;
}

/* custom (non-jQuery Mobile styled) header with large font and no toolbar */
.springboard-heading {
    font-size: 48px;
    margin: 12px 0px;
}

/* don't let image overflow springboard grid nor exceed its native width */
@media all and (max-width: 321px) and (min-width: 0px){
    .springboard img {
        height: 50px;
    }
}

@media all and (min-width: 322px){
    .springboard img {
        height: 75px;
    }
}

.springboard img:hover,
.springboard img:active { 
    -webkit-filter: drop-shadow( 0 0 0.3em gold) drop-shadow(0 0 0.3em red) drop-shadow(0 0 1em green) drop-shadow(0 0 2em gold); 
    filter:         drop-shadow( 0 0 0.3em gold) drop-shadow(0 0 0.3em red) drop-shadow(0 0 1em green) drop-shadow(0 0 2em gold); 
}

/* keep springboard caption close to its corresponding icon */
.springboard p {
    margin-top: -10px !important; 
}

/* specify custom hyperlink styling for springboard caption */
.springboard a {
}

/*--- custom styles for secondary springboard pages -----------------------------*/

/* custom image-based back button for jQM header */
.springboard-backbtn {
    position: absolute;
    top: 2px;
    left: 5px;
}

/* custom fixed-position non-toolbar footer */
.springboard-credits {
    position: absolute;
    bottom: 10px;
    width: 100%;
    margin-left: -15px;
    margin-right: -15px;
    text-align: center;
    /* TODO: could do css flexbox layout instead */
}

.springboard-credits a {
    text-decoration: none;
    font-weight: normal;
}
