
/* Misa: CSS styling for the enhancement of this plugin */


/**
 * Styling for placeholder container
 *
 */
.misa-placeholder {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
}

/**
 * View attachment button
 *
 */
.misa-placeholder-btn {
    background: #1e73be;
    color:#fff;
    display: inline-block;
    font-size: 20px;
    padding: 15px;
    width: 170px;
    cursor: pointer;
    cursor: hand;
}

.misa-placeholder-btn:active, .misa-placeholder-btn:focus {
    background: #2e83ce;
}

/**
 * Placeholder gradient effect
 *
 */
.misa-attach-target {

    /* fallback */
    background-color: #eee;

    /* Safari 4-5, Chrome 1-9 */
    background: -webkit-gradient(radial, center center, 0, center center, 460, from(#ccc), to(#fff));

    /* Safari 5.1+, Chrome 10+ */
    background: -webkit-radial-gradient(circle, #ccc, #fff);

    /* Firefox 3.6+ */
    background: -moz-radial-gradient(circle, #ccc, #fff);

    /* IE 10 */
    background: -ms-radial-gradient(circle, #ccc, #fff);

    cursor: pointer;
    cursor: hand;


}

