/*
 *                          Unisoc - The University of Canterbury Unicycle Society
 *
 * layout.css: Styles the content of a page (i.e. everything inside the 'content' <div>). This is
 *             done so that multiple layouts could be used if desired while keeping the format of
 *             the content itself the same.
 */

h1{
    font-size: 2.5em;
    text-align: center;
}

h2{
    font-size: 1.5em;
    text-align: center;
}

h3{
    font-size: 1.2em;
    text-indent: 2em;
}

span.byline{
    font-size: 0.7em;
    font-weight: bold;
}

span.underline{
    text-decoration: underline;
}

span.highlight{
    background: #FF3;
}

ul li{
    list-style-type: square;
    margin-top: 10px;
}

a{
    color: #33C;
    text-decoration: underline;
}

a:hover{
    color: #F00;
}

div.centreForm{
    background: #FFC;
    border: 1px solid #000;
    margin: 15px 20%;
    padding: 10px;
    text-align: center;
}

.centre{
    text-align: center;
}

div.error{
    color: #F00;
    font-weight: bold;
}

form.fullWidth{
    text-align: center;
}

form.fullWidth input.textbox{
    width: 50%;
}

form.fullWidth textarea{
    height: 300px;
    margin: 10px;
    width: 90%;
}

div.newsPreview{
    background: #FFC;
    border: 1px solid #000;
    margin: 10px;
    padding: 10px;
}

table{
    border: 1px solid #358;
    border-collapse: collapse;
    margin: 10px auto;
    width: 100%;
}

table td{
    border: 1px solid #358;
    padding: 2px;
}

table th{
    background: #358;
    border-left: 1px solid #FFF;
    color: #FFF;
    padding: 5px;
    text-align: center;
}

table th:first-child{
    border-left: none;
}