perl/modules/W3C/LinkChecker/docs linkchecker.css,1.2,1.3 checklink.html,1.16,1.17

Update of /sources/public/perl/modules/W3C/LinkChecker/docs
In directory hutz:/tmp/cvs-serv7629

Modified Files:
	linkchecker.css checklink.html 
Log Message:
quick attempt at styling link checker as the Markup Validator.
Fr the actial service, an idea would be to keep some of its inline style + a link to the stylesheet in the repository.



Index: checklink.html
===================================================================
RCS file: /sources/public/perl/modules/W3C/LinkChecker/docs/checklink.html,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- checklink.html	20 Apr 2004 17:13:28 -0000	1.16
+++ checklink.html	14 May 2004 01:37:16 -0000	1.17
@@ -17,8 +17,17 @@
       Link Checker</h1>
     </div>
 
-    <div id="main">
+    <ul class="navbar" id="menu">
+        <li><span class="hideme"><a href="#skip" accesskey="s" title="Skip past navigation to main part of page">Skip Navigation</a> |</span>
+        <li><a href="http://dev.w3.org/cvsweb/~checkout~/perl/modules/W3C/LinkChecker/docs/checklink.html?content-type=text/html;%20charset=utf-8" title="Documentation for this Link Checker Service">Docs</a></li>
+        <li><a href="http://search.cpan.org/dist/W3C-LinkChecker/" title="Download the source / Install this service ">Download</a></li>
+        <li>
+        <a href="http://validator.w3.org" accesskey="h" title="Validate your markup with the  W3C Markup Validation Service">Validator</a></li>
+    </ul>
+
 
+    <div id="main">
+   <a name="skip" id="skip"></a> 
     <ul>
       <li><a href="#about">About this service</a></li>
       <li><a href="#what">What it does</a></li>

Index: linkchecker.css
===================================================================
RCS file: /sources/public/perl/modules/W3C/LinkChecker/docs/linkchecker.css,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- linkchecker.css	20 Apr 2004 17:13:28 -0000	1.2
+++ linkchecker.css	14 May 2004 01:37:16 -0000	1.3
@@ -16,10 +16,11 @@
   border:           0;
 }
 
+.hideme {display: none}
+
 div#main {
   padding-top:      1em;
-  margin-left:      1em;
-  margin-right:     7.6em;
+  margin:      0;
 }
 
 div#main p {
@@ -87,14 +88,19 @@
 }
 
 address {
-  padding-top:       .5em;
+  padding-top:       0;
   padding-right:     1em;
   padding-left:      1em;
-  padding-bottom:    .5em;
-  margin-top:        3em;;
+  padding-bottom:    0;
+  margin-top:        3em;
   border-top:        1px solid black;
   background-color:  #eee;
   clear:             right;
+  background-image: url(http://validator.w3.org/images/footer);
+  background-repeat: no-repeat;
+  background-attachment: scroll;
+  height: 50px;
+  background-position: center;
 }
 
 p.copyright {
@@ -118,27 +124,25 @@
 
 /* Various header(ish) things. Definitions cribbed from the CORE Styles. */
 h1 {
-  font-family:       "Bitstream Vera Sans", Tahoma, Verdana, "Myriad Web", Syntax, sans-serif;
-  font-size-adjust:  .53;
-  font-size:         2em;
-  font-weight:       bold;
-  font-style:        normal;
-  text-decoration:   none;
-  color:             #053188;
-}
-#banner h1 {
-  font-size:         1.3em;
-  border-bottom:     1px solid black;
+  font-family: "Bitstream Vera Sans", Tahoma, Verdana, "Myriad Web", Syntax, sans-serif;
+  font-size-adjust: .53;
+  font-size: 2em;
+  font-weight: bold;
+  font-style: normal;
+  text-decoration: none;
+  color: #053188;
 }
+#banner h1 {font-size: 1.3em;
+display: inline}
 
 #banner {
-  /* background-image:  url(/validator/banner-qa.jpg); */
-  background-repeat: no-repeat;
-  background-attachment: scroll;
-  height:            50px;
-  background-position: right;
-  margin:            0;
-  padding:           0;
+background-image: url(http://validator.w3.org/images/header);
+background-repeat: no-repeat;
+background-attachment: scroll;
+height: 50px;
+background-position: right;
+margin:0; padding:0;
+border-bottom: 1px solid black;
 }
 
 h1#title {
@@ -172,3 +176,59 @@
   font-style:        normal;
   text-decoration:   none;
 }
+
+
+/*
+   Navbar
+*/
+
+#menu {
+/*  min-width: 63em; */
+  list-style-type: none;
+  padding: 0;
+  margin: 0;
+  height: 1.5em;
+  background-color: #eee;
+  border-bottom: solid 1px black;
+}
+
+#menu li {
+  display: inline;
+  padding: 0;
+  margin: 0;
+}
+
+#menu li a:link, #menu li a:visited {
+  text-decoration: none;
+  text-align: center;
+  float: left;
+  display: block;
+  width: 8em;
+  padding: 2px 0px;
+  margin: 0;
+  background-color: #eee;
+  color: #053188;
+  font-size: smaller;
+  font-variant: small-caps;
+  border-right: solid 1px #bbb;
+  border-bottom: solid 1px #ddd;
+}
+
+#menu li a#selected:link, #menu li a#selected:visited {
+  text-decoration: underline;
+  background-color: #fff;
+  color: #053188;
+}
+
+#menu li a:hover {
+  text-decoration: underline;
+  background-color: #fff;
+  color: #053188;
+}
+
+#menu li a:active {
+  background-color: #fff;
+  color: #053188;
+  border-right: solid 1px #ddd;
+}
+

Received on Thursday, 13 May 2004 21:38:39 UTC