
/* main css */
/*
Make changes to the apps css and then when you do python manage.py collectstatic
the changes here will be moved to the css in the projects static folder.
*/


#header {
    border-style: none;
    width: 800px;
    height: auto;
}

#wrapper {
    display: block;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    background-color: #FFFFFF;
    padding: 10px;
    width: 800px;
}

#warning {
    color: #F50505;
}

.warning {
    color: red;
}

.bigger {
    font-size: 150%;
}

body {
     background-color: #D5F3F4;
     background-image: url(trackonly.png);
     background-size: 350px;
     color: #8B1A1A;
}

#logo {
    padding: 10px;
}

#nav li {
    padding-top: 5px;
    padding-bottom: 10px;
    font-size: 1em;
    list-style-type: none;
    border-bottom: thin solid #5F5F5F;
    color: #4C4C4C;
    left: 0px;
    list-style-position: inside;
    margin-left: -10px;
}

#nav li a {
    text-decoration: none;
}

#leftsidebar {
    width: 180px;
    height: auto; /* the height of the sidebar away from the footer */
    float: left;
    padding-right: 30px;
}

#footer {
    text-align: left;
    font-size: 0.8em;
    margin-top: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #FFFFFF;
    border-top: thin solid #BBBBBB;
    clear: both;
    color: #969696;
}

/* HERE IS THE SECTION FOR THE FORM IN DJANGO THAT I EDIT */
#id_felt_priority {
    width:300px;
}

#id_list{
    list-style:none;
}

/*END THE FORM EDIT*/
.change {
    text-align:right;
    margin-right:200px;
    margin-left:auto;
}

.helptext {
    font-size: 0.8em;
    color: red;
}

.table1 {
     border: 1px solid black;
     width: 350px;
     border-spacing: 0px;
}

.table1 td, .table1 th {
    border: thin solid #BBBBBB;
    text-align: left;
    word-break: break-all;
    padding: 5px;
}

.table2 {
     border-left: 1px solid black;
     width: 350px;
     border-spacing: 0px;
}

.table2 th, .table2 td {
    border: thin solid #BBBBBB;
    padding: 5px;
}

.button {
    background-color: #8A8A8A;
    border: none;
    color: black;
    padding: 6px 18px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    margin: 4px 2px;
    /* -webkit-transition-duration: 0.4s; / Safari / */
    transition-duration: 0.4s;
    cursor: pointer;
}

.button:hover {
    background-color: #007a87;
    color: orangeq;
}

a:link{
    text-decoration:none;
}

.errorlist
    {
        color: 38b03a;
        font-size: 1.25em;
    }

/*Not sure how to make these work. Currently I have them in each html. */
.readonly {
    /* line-height: 1.0; */
    /* margin-bottom: 0px; */
    background-color: lightgray;
}

.footnote {
    /* line-height: 1.0; */
    /* margin-bottom: 0px; */
    background-color: lightskyblue;
}

.highlight {
    background-color: yellow;
}
/**
@media screen and (max-width: 500px) and (min-width: 310px) {
    #wrapper {
    width: 350px;
}
}

@media screen and (max-width: 300px) and (min-width: 200px) {
    #wrapper {
    width: 350px;
}
}
**/
