/*  This external CSS file is for use with Homework Assignment 4-2
    and formats the output within a web page.
*/

/* CSS formating for both web pages */
h1 {
    text-align: center;
}
/*ID that centers the validation text*/
#validation {
    text-align: center;
}

/* CSS formating for handle_posting.php */

/* Bolds the text for the specified variables */
.variables {
    font-weight: bold;
}

/* Centers the output from the form within the web page */
.center {
    margin: auto;
    width:65%;
    border: 3px solid #999;
    padding: 10px;
    background-color:#eee;
    border-radius: 5px;
}
/* Formats the location for the anchor tag that links back to posting.html */
.repost {
    margin: auto;
    width: 65%;
    border: 1px solid #fff;
    padding: 10px;
}

/* CSS formatting for posting.html */
.center_message {
    margin: auto;
    width: 50%;
    border: 3px solid orangered;
    padding: 10px;
    background-color:darksalmon;
}
.posting {
    vertical-align: top;
    font-weight: bold;
}
label {
    font-weight: bold;
}
textarea {
    margin: 5px;
}