/*
 * Hunter Davis - (2012) - I'm basing my stylesheet on the excellent
 * impress.js stylesheet.  Improvements and custom styles will come iteratively
 * and slowly I imagine over time
 */

/**
 * This is a stylesheet for a demo presentation for impress.js
 * 
 * It is not meant to be a part of impress.js and is not required by impress.js.
 * I expect that anyone creating a presentation for impress.js would create their own
 * set of styles.
 */


.step {
    font-family: 'PT Serif', georgia, serif;

    font-size: 48px;
    line-height: 1.0;
    -webkit-transition: opacity 1s;
    -moz-transition:    opacity 1s;
    -ms-transition:     opacity 1s;
    -o-transition:      opacity 1s;
    transition:         opacity 1s;
}

.step:not(.active) {
    opacity: 0.3;
}

.slide {
    display: block;

    padding-top: 100px;

    border-radius: 10px;

    background-color: white;

    box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
    border: 1px solid rgba(0, 0, 0, .3);

    font-family: 'Open Sans', Arial, sans-serif;

    color: rgb(102, 102, 102);
    text-shadow: 0 2px 2px rgba(0, 0, 0, .1);

    font-size: 30px;
    line-height: 36px;

    letter-spacing: -1px;
    z-index: 50;
}

/* hint always visible */
div#hint {
    position: fixed;
    left: 0;
    right: 0;
    top: 000px;
    width: 100%;

    background: rgba(0,0,0,0.5);
    color: #EEE;
    text-align: center;
    font-size: 20px;
    z-index: 100;
    opacity: 1;
    -webkit-transform: translateZ(1px);
}


/* IMPRESS NOT SUPPORTED STYLES */

.fallback-message {
    font-family: sans-serif;
    line-height: 1.3;
    
    display: none;
    width: 780px;
    padding: 10px 10px 0;
    margin: 20px auto;

    border-radius: 10px;
    border: 1px solid #E4C652;
    background: #EEDC94;
}

.fallback-message p {
    margin-bottom: 10px;
}

.impress-not-supported .step {
    position: relative;
    opacity: 1;
    margin: 20px auto;
}

.impress-not-supported .fallback-message {
    display: block;
}





