/* static/base.css */

body {
    margin:0;
    padding:0;
    font-family:helvetica, sans-serif;
}

a {
    color: rgb(7 89 133);
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    color: #2299dd;
    text-decoration: underline;
}

#header {
    background:#fff;
    color:#075985;
    border-bottom:4px solid #0c5004;
    font-size:18px;
}

#header ul.menu {
    list-style:none;
    margin-right: 5rem;
}

#header ul.menu li {
    margin-right: 2rem;
    font-weight: bold;
}

#header a {
    color: rgb(7 89 133);
    text-decoration: none;
}

#header a:hover {
    color: #2299dd;
    text-decoration: underline;
}

#header .user {
    color: rgb(132 176 38);
    font-size:18px;
    font-weight: bold;
}

#header .user form {
    display:inline;
}

#header .user button {
    background:none;
    color: rgb(7 89 133);
    border:none;
    cursor:pointer;
    font-size:16px;
}

#content {
    padding:30px 100px;
}

#home-heading {
    color: rgb(132 176 38);
}

/* Django form errors are rendered with the class 'errorlist'. */
.errorlist {
    background-color: rgb(255, 243, 205);
    color: rgb(204, 0, 0);
}
