mirror of
https://gitlab.isc.org/isc-projects/kea
synced 2025-08-29 13:07:50 +00:00
add css and makefile basics
git-svn-id: svn://bind10.isc.org/svn/bind10/trunk@1527 e5f2f494-b856-4b98-b285-d166d9295462
This commit is contained in:
parent
9a4fcb7207
commit
e38c751876
13
doc/userguide/Makefile
Normal file
13
doc/userguide/Makefile
Normal file
@ -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
doc/userguide/userguide.css
Normal file
34
doc/userguide/userguide.css
Normal file
@ -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;
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user