File: pod.css

package info (click to toggle)
hivex 1.3.24-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,924 kB
  • sloc: ansic: 7,385; sh: 5,314; ml: 4,424; makefile: 559; perl: 528; python: 253; ruby: 123; xml: 104; sed: 16
file content (24 lines) | stat: -rw-r--r-- 488 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* CSS to make pod2html files look a little bit better. */
@import url("http://et.redhat.com/~rjones/css/standard.css");

/* Put the index on the right hand side in a floating box. */
div[name="index"] {
    float: right;
    width: 24em;
    background-color: white;
    margin-right: 2em;
}

/* Get rid of those horrible <hr>'s :-( */
hr { display: none; }

/* Demote <h1>'s. */
h1 {
    font-size: 100%;
    border-bottom: none;
}

h2 {
    font-size: 120%;
    border-bottom: none;
}