1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
/**
* Overrides for Doxygen CSS
* Copyright 2015 - Nathan Osman
*/
/* Ensure that a sane font is selected by default since
the current stylesheet uses Roboto if available */
body, table, div, p, dl {
font-family: Helvetica, Arial, sans-serif;
}
/* Remove the underline from the titlearea and increase the margin */
#titlearea {
border-bottom: 0;
margin-bottom: 16px;
}
/* The .footer class is also used in the img at the bottom for some reason */
.footer img {
width: auto;
}
/* Add the border back to the tab list */
.tabs {
border-top: 1px solid #5373b4;
}
/* The next two rules fix up the search box */
.tabs .tablist li:last-child {
float: right;
position: relative;
}
.tablist {
width: 100%;
}
/* Ensure that certain parts of the page are never wider than about 900px */
@media (min-width: 992px) {
#top, .header, .contents, .footer {
margin-left: auto !important;
margin-right: auto !important;
width: 800px;
}
}
|