r807 - webspace

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Sat Jun 17 03:46:19 EDT 2006


Author: floam
Date: 2006-06-17 03:46:19 -0400 (Sat, 17 Jun 2006)
New Revision: 807

Modified:
   webspace/index.php
   webspace/ioq3.css
Log:
Listify the link list in footer.


Modified: webspace/index.php
===================================================================
--- webspace/index.php	2006-06-16 21:44:44 UTC (rev 806)
+++ webspace/index.php	2006-06-17 07:46:19 UTC (rev 807)
@@ -15,7 +15,7 @@
 <body>
 	<div id="header">
 		<h1>icculus.org/quake3</h1>
-		<ul id="navigation">
+		<ul id="navigation" class="skinnylist">
 <?php
 foreach ($navlist as $file => $alias) {
 	echo "<li>";
@@ -31,10 +31,11 @@
 <?php include_safe("$page.php"); ?>
 	</div>
 	<div id="footer">
-		<a href="http://jigsaw.w3.org/css-validator/validator?uri=http://icculus.org/quake3/ioq3.css&amp;warning=0">Valid CSS</a> |
-		<a href="http://validator.w3.org/check?uri=referer">Valid XHTML</a> |
-		<a href="http://icculus.org">icculus.org</a>
-		<br />
+		<ul class="skinnylist">
+			<li><a href="http://jigsaw.w3.org/css-validator/validator?uri=http://icculus.org/quake3/ioq3.css&amp;warning=0">Valid CSS</a></li>
+			<li><a href="http://validator.w3.org/check?uri=referer">Valid XHTML</a></li>
+			<li><a href="http://icculus.org">icculus.org</a></li>
+		</ul>
 		Website designed and handled by <a href="http://floam.sh.nu" title="floam">Aaron Gyes</a>.
 	</div>
 </body>

Modified: webspace/ioq3.css
===================================================================
--- webspace/ioq3.css	2006-06-16 21:44:44 UTC (rev 806)
+++ webspace/ioq3.css	2006-06-17 07:46:19 UTC (rev 807)
@@ -38,20 +38,36 @@
 	color: black;
 }
 
+#footer li {
+	border-right: thin solid #888;
+	padding-right: .2em;
+}
+
+#footer li:last-child {
+	border-right: 0;
+}
+
 #navigation {
 	float: right;
-	list-style: none;
-	background-color: #aaaaaa;
+	background-color: #aaa;
 	color: black;
-	margin-bottom: 0;
-	padding: 0;
+	margin-top: 1em;
 }
 
 #navigation li {
-	display: inline;
 	padding: .3em;
 }
 
+.skinnylist {
+	list-style: none;
+	margin: 0;
+	padding: 0;
+}
+
+.skinnylist li {
+	display: inline;
+}
+
 :link, :visited {
 	color: black;
 	font-weight: bold;




More information about the quake3-commits mailing list