expat/doc expat.png, NONE, 1.1 reference.html, 1.52, 1.53 style.css, 1.5, 1.6

"Fred L. Drake" <[email protected]> Mon, 20 Oct 2003 07:40:46 -0700
Newsgroups gmane.text.xml.expat.cvs
Message-ID <[email protected]>
Update of /cvsroot/expat/expat/doc
In directory sc8-pr-cvs1:/tmp/cvs-serv12393

Modified Files:
	reference.html style.css 
Added Files:
	expat.png 
Log Message:
Steal a bit of look-n-feel from the website; this document was just looking
incredibly bland.


--- NEW FILE: expat.png ---
(This appears to be a binary file; contents omitted.)

Index: reference.html
===================================================================
RCS file: /cvsroot/expat/expat/doc/reference.html,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -d -r1.52 -r1.53
--- reference.html	15 Oct 2003 20:46:53 -0000	1.52
+++ reference.html	20 Oct 2003 14:40:44 -0000	1.53
@@ -13,9 +13,17 @@
   <link href="style.css" rel="stylesheet" type="text/css" />
 </head>
 <body>
-<h1>Expat XML Parser</h1>
-
-<p><em>Release 1.95.7.</em></p>
+  <table cellspacing="0" cellpadding="0" width="100%">
+    <tr>
+      <td class="corner"><img src="expat.png" alt="(Expat logo)" /></td>
+      <td class="banner"><h1>The Expat XML Parser</h1></td>
+    </tr>
+    <tr>
+      <td class="releaseno">Release 1.95.7</td>
+      <td></td>
+    </tr>
+  </table>
+<div class="content">
 
 <p>Expat is a library, written in C, for parsing XML documents. It's
 the underlying XML parser for the open source Mozilla project, Perl's
@@ -1999,5 +2007,6 @@
 <p><a href="http://validator.w3.org/check/referer"><img
         src="valid-xhtml10.png" alt="Valid XHTML 1.0!"
         height="31" width="88" class="noborder" /></a></p>
+</div>
 </body>
 </html>

Index: style.css
===================================================================
RCS file: /cvsroot/expat/expat/doc/style.css,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- style.css	8 Oct 2003 03:32:25 -0000	1.5
+++ style.css	20 Oct 2003 14:40:44 -0000	1.6
@@ -1,5 +1,37 @@
 body {
-  background-color: white
+  background-color: white;
+  border: 0px;
+  margin: 0px;
+  padding: 0px;
+}
+
+.corner {
+  width: 200px;
+  height: 80px;
+  text-align: center;
+}
+
+.banner {
+  background-color: rgb(110,139,61);
+  color: rgb(255,236,176);
+  padding-left: 2em;
+}
+
+.banner h1 {
+  font-size: 200%;
+}
+
+.content {
+  padding: 0em 2em 1em 2em;
+}
+
+.releaseno {
+  background-color: rgb(110,139,61);
+  color: rgb(255,236,176);
+  padding-bottom: 0.3em;
+  padding-top: 0.5em;
+  text-align: center;
+  font-weight: bold;
 }
 
 .noborder {