diff options
author | etienne <etienne@07715635-78ed-41b0-aaf1-0afda6c37f35> | 2010-03-27 17:06:03 +0000 |
---|---|---|
committer | etienne <etienne@07715635-78ed-41b0-aaf1-0afda6c37f35> | 2010-03-27 17:06:03 +0000 |
commit | 95729368a48257b110ea33dfb005785f8ed6734f (patch) | |
tree | 8b99b375a4b4a2e121a9192910af15485ea2b7c3 /docs | |
parent | 8ded76ae513b38d14773449e46543b54cf48ef49 (diff) | |
download | Papillon-95729368a48257b110ea33dfb005785f8ed6734f.tar.bz2 Papillon-95729368a48257b110ea33dfb005785f8ed6734f.zip |
Rearrange directories - include documentation
Diffstat (limited to 'docs')
-rwxr-xr-x | docs/generate | 5 | ||||
-rw-r--r-- | docs/style.css | 67 |
2 files changed, 72 insertions, 0 deletions
diff --git a/docs/generate b/docs/generate new file mode 100755 index 0000000..936ba03 --- /dev/null +++ b/docs/generate @@ -0,0 +1,5 @@ +#!/bin/sh +txt2tags --encoding utf-8 --css-sugar --style style.css --toc -t xhtml -o INSTALL.html INSTALL.t2t +txt2tags --encoding utf-8 --toc -t txt -o INSTALL INSTALL.t2t +awk '{gsub("\t"," ");print}' INSTALL > ../INSTALL +rm INSTALL diff --git a/docs/style.css b/docs/style.css new file mode 100644 index 0000000..5ba1a2f --- /dev/null +++ b/docs/style.css @@ -0,0 +1,67 @@ +html{ +background-color:#dfcbff; +font-family:arial; +font-size:80%; +} + +body{ +padding:20px; +background-color:white; +} + +a{ +color:#b400ff; +} + +h1{ +font-size:22px; +margin-left:auto; +margin-right:auto; +margin-bottom:10px; +padding-left:20px; +color:white; +background-color:#b488ff; +} + +h2{ +font-size:18px; +padding-left:20px; +color:#b400ff; +} + +h3{ +padding-left:20px; +font-weight:normal; +font-style:italic; +color:#b400ff; +} + +pre{ +background-color:#dfcbff; +padding:10px 6px; +} + +table{ +border-spacing:0px; +border:1px solid; +border-right:None; +} + +td, th, tr{ +border:None; +margin:0; +padding:0; +border-spacing:0px; +border-right:1px solid; +} + +td{ +padding:4px 8px; +} + +th{ +background-color:#dfcbff; +padding:8px; +border-bottom:1px solid; +} + |