From: Joey Schulze Date: Wed, 20 Sep 2006 16:20:14 +0000 (+0000) Subject: Added support for CSS X-Git-Url: https://git.infodrom.org/?p=infodrom.org%2Finfocon.infodrom.org;a=commitdiff_plain;h=50139e7f98293a3c3738c254477f7d03f44b45d1 Added support for CSS --- diff --git a/Makefile b/Makefile index e39b685..618df0d 100644 --- a/Makefile +++ b/Makefile @@ -11,6 +11,7 @@ endif FILES = --exclude "CVS/" --exclude "*imgdot-1x1-transp-ffffff.gif" --exclude "*imgdot-1x1-transp.gif" --include "*/" FILES+= --include "*.html" --include "*.shtml" --include "*.php3" FILES+= --include "*.jpg" --include "*.gif" --include "*.png" +FILES+= --include "infocon.css" FILES+= --exclude "*" build: diff --git a/Styles/infocon.style b/Styles/infocon.style index 2645725..2f60704 100644 --- a/Styles/infocon.style +++ b/Styles/infocon.style @@ -54,6 +54,7 @@ printf "Letzte <get-var title> + diff --git a/src/infocon.css b/src/infocon.css new file mode 100644 index 0000000..62e6505 --- /dev/null +++ b/src/infocon.css @@ -0,0 +1,55 @@ +/* + * General settings + * -------------------------------------------------- + */ +body { + font-family: Verdana, Helvetica, Arial, sans-serif; + background-color: #ffffff; +} + +/* + * No underline for links + * Nice dark blue values for links + */ +a:link { + text-decoration: none; +} +a:visited { + text-decoration: none; +} + +div#page { + padding-left: 8%; + padding-right: 8%; + margin-bottom: 2em; +} + +h3#pagetitle { + margin: 0; + position: relative; + top: -0.7em; + left: 15px; + border: 1px solid black; + background: white; + padding: 0 0.5em; + display: inline; +} + +div#border { + border: 1px solid #000000; + background-color: #e2e2e2; +} + +div#content { + padding-left: 8%; + padding-right: 8%; + margin-top: -1em; + font-size: normal; +} + +/* + * Local variables: + * mode: indented-text + * mode: auto-fill + * End: +*/