/*************************************************************
 * Custom CSS File for Doxygen                               *
 *                                                           *
 * Any CSS here will be applied to the Doxygen HTML output.  *
 *************************************************************/

/*#titlearea {
    background: #000;
    color: #fff;
}*/

/* Fix images being absolutely giant */
.image img {
    max-width: 50%;
}

/* Fix project logo being also giant, and reduce padding */
#projectlogo img {
    max-height: 200px;
    margin: -6px -33px -26px -39px;

    display: none; /*actually gonna just hide it for rn*/
}

/* nicer stylization for <code> tags */
code {
    outline: 1px solid #d3dbeb;
    color: #d00000; /* was #0045d0;*/
    font-size: 13px;
    padding: 0px 4px 2px 4px;
    background: #f7f7f7;
    height: 18px;
}

/*
dl.todo {
    background: rgb(227, 248, 252);
    border: 1px solid #00c0e0;
    display: inline-block;
    padding-right: 0px;
}
dl.todo dt {
    font-size: 20px;
    background: #00c0e0;
    padding: 4px 9px;
    margin-bottom: 5px;
}

dl.todo dt a.el {
    color: #fff;
}

dl.todo dd {
    -webkit-margin-start: initial;
    padding-left: 8px;
    padding-bottom: 4px;
    padding-right: 8px;
}
*/

/* make image captions visually distinct from regular text */
.image .caption {
    background: #f1e2b1;
    outline: 1px solid #000;
    font-style: italic;
    max-width: 50%;
    margin-left: 25%;
    margin-top: 1px;
    font-weight: normal;
}

.image img:hover {
    transition: 0.2s;
    background: #e8e8e8;
}

.image img {
    transition: 0.2s;
}