File: overrides.css

package info (click to toggle)
qhttpengine 0.1.0%2Bdfsg1-1
  • links: PTS
  • area: main
  • in suites: buster, stretch
  • size: 524 kB
  • ctags: 288
  • sloc: cpp: 2,070; makefile: 21
file content (45 lines) | stat: -rw-r--r-- 996 bytes parent folder | download | duplicates (2)
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;
    }
}