﻿/* css classes related to pages/views in the app controller */

/* main edit page/form */
#formSave,
#formLock {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    position: fixed;
    text-align: center;
    background-color: rgba(0,0,0,0.8);
}

#formLock {
    display: block;
    background-color: rgba(128,0,0,0.8);
}

    #formSave > div,
    #formLock > div {
        position: fixed;
        text-align: center;
        margin-top: -25px;
        line-height: 50px;
        font-size: 50px;
        color: #ccc;
        top: 50%;
        left: 0;
        right: 0;
    }

#formMain {
    width: 79%;
    padding-right: 1%;
}

#formRail {
    position: fixed;
    left: 80%;
    width: 20%;
    top: 160px;
    background-color: rgba(0,0,0,0.2);
}

.label-large {
    margin: 6px;
    font-size: 12px;
    display: inline-block;
    vertical-align: middle;
}

/* attachments section */

#listAttachments {
    width: 100%;
}

    #listAttachments a {
        padding: 5%;
        width: 100%;
        display: block;
    }

.attachment {
    text-decoration: none;
}

    .attachment:hover {
        text-decoration: underline;
    }
