# HG changeset patch
# User paulo@twcdns.fastsearch.net
# Date 1282630908 25200
# Node ID bc72be51af822dc8061f4ecdb0535e93af0372ba
# Parent  f6be2a5839f08117bda40eb1f575f14cb10ceb5d
thule_fit_kits/index.*: add div.kit_id

diff -r f6be2a5839f0 -r bc72be51af82 thule_fit_kits/index.css
--- a/thule_fit_kits/index.css	Mon Aug 23 22:53:43 2010 -0700
+++ b/thule_fit_kits/index.css	Mon Aug 23 23:21:48 2010 -0700
@@ -1,9 +1,13 @@
 @import "/index.css";
 
+div.kit_id
+{
+	font-size: 200%;
+}
+
 a
 {
 	font-weight: bold;
-	font-size: 200%;
 }
 
 td
diff -r f6be2a5839f0 -r bc72be51af82 thule_fit_kits/index.php
--- a/thule_fit_kits/index.php	Mon Aug 23 22:53:43 2010 -0700
+++ b/thule_fit_kits/index.php	Mon Aug 23 23:21:48 2010 -0700
@@ -43,13 +43,13 @@
 	$results = mysql_query($query);
 
 	while ($row = mysql_fetch_assoc($results)) {
-		echo '<TR><TD>';
+		echo '<TR><TD><DIV class="kit_id">';
 		$pdf_filename = 'pdf/thule-fit-kit-' . $row['kit_id']. '-instructions.pdf';
 		if (file_exists($pdf_filename))
 			echo '<A HREF="'. $pdf_filename . '">' . $row['kit_id'] . '</A>';
 		else
 			echo $row['kit_id'];
-		echo '</TD><TD>';
+		echo '</DIV></TD><TD>';
 		$cars = explode(';', $row['car']);
 		foreach ($cars as $car)
 			echo $car . '<br>';