Parcourir la source

add css and makefile basics

git-svn-id: svn://bind10.isc.org/svn/bind10/trunk@1527 e5f2f494-b856-4b98-b285-d166d9295462
Michael Graff il y a 15 ans
Parent
commit
e38c751876
2 fichiers modifiés avec 47 ajouts et 0 suppressions
  1. 13 0
      doc/userguide/Makefile
  2. 34 0
      doc/userguide/userguide.css

+ 13 - 0
doc/userguide/Makefile

@@ -0,0 +1,13 @@
+#
+# Quick and dirty makefile
+#
+
+userguide.html: userguide.xml
+	xsltproc --novalid --xinclude --nonet \
+		-o userguide.html \
+		--stringparam html.stylesheet userguide.css \
+		http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl \
+		userguide.xml
+
+clean:
+	rm -f userguide.html

+ 34 - 0
doc/userguide/userguide.css

@@ -0,0 +1,34 @@
+body {
+  background-color: #ffffff;
+  color: #333333;
+  font-family: "ArialMT", "Verdana", "Arial", "Helvetica", sans-serif;
+  font-size: 14px;
+  line-height: 18px;
+  margin: 2em;
+}
+
+.command {
+  font-family: "Courier New", "Courier", monospace;
+  font-weight: normal;
+}
+
+.note {
+  background-color: #ddeedd;
+  margin: 1em 0 1em 0;
+  padding: 0.5em 1em 0.5em 1em;
+  -moz-border-radius: 10px;
+  -webkit-border-radius: 10px;
+}
+
+.screen {
+  background-color: #ffffee;
+  border: 1px solid #ddddaa;
+  padding: 0.25em 1em 0.25em 1em;
+  margin: 1em 0 1em 0;
+  -moz-border-radius: 10px;
+  -webkit-border-radius: 10px;
+}
+
+.section {
+	padding-left: 1em;
+}