From b441817c340249272a59c5375fe720b812702463 Mon Sep 17 00:00:00 2001 From: Richard Jones Date: Fri, 19 Feb 2010 16:35:04 +0000 Subject: [PATCH] Add html/ directory, include POD CSS. --- .gitignore | 4 ++++ html/pod.css | 24 ++++++++++++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 html/pod.css diff --git a/.gitignore b/.gitignore index bf0b8cc..68450c0 100644 --- a/.gitignore +++ b/.gitignore @@ -28,6 +28,10 @@ hivex/*.3 hivex/hivexsh hivex/hivexml hivex/tools/*.opt +html/hivex.3.html +html/hivexget.1.html +html/hivexml.1.html +html/hivexsh.1.html install-sh *.la .libs diff --git a/html/pod.css b/html/pod.css new file mode 100644 index 0000000..9a0b4b5 --- /dev/null +++ b/html/pod.css @@ -0,0 +1,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
's :-( */ +hr { display: none; } + +/* Demote

's. */ +h1 { + font-size: 100%; + border-bottom: none; +} + +h2 { + font-size: 120%; + border-bottom: none; +} -- 1.8.3.1