﻿
.backdrop {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 2147483647;
}

.notify {
    position: absolute;
    left: 50%;
    top: 100px;
    margin-left: -315px;
    width: 600px;
    max-height: 650px;
    padding: 15px;
    background: #fafafa;
    color: #333;
    overflow: auto;
}

    .notify h3 {
        margin: 0;
        margin-bottom: 10px;
        color: #00ace4;
        font-size: 20px;
    }

.attachment {
    float: left;
    margin: 0;
    width: 340px;
    line-height: 33px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.read {
    float: right;
    margin: 0;
    padding: 7px 10px;
    background: #00ace4;
    color: #fafafa;
    border: none;
    border-radius: 2px;
}

    .read:hover {
        background: #b2d24b;
        cursor: pointer;
    }
