]> git.quilime.com - clmpr.git/commitdiff
Increased tag size in tag view
authorGabriel Dunne <gdunne@quilime.com>
Wed, 21 Dec 2011 01:41:10 +0000 (17:41 -0800)
committerGabriel Dunne <gdunne@quilime.com>
Wed, 21 Dec 2011 01:41:10 +0000 (17:41 -0800)
style.css
tags.php

index 669166ee2e01e8683b7aad1dd4f025fb501b6858..6e2229c5185ac9e7516a966f38b52bfc1d0ab554 100644 (file)
--- a/style.css
+++ b/style.css
@@ -120,4 +120,9 @@ ul.tags li:after {
 }
 ul.tags li:last-child:after {
     content:"";
+}
+
+
+#tags li {
+    font-size:14px;
 }
\ No newline at end of file
index 1ce1df39f3b25dc0b8dea924daae53c37f9f6b15..ba97f9770cad15cdd0b22739a5cca5e8aedc994c 100644 (file)
--- a/tags.php
+++ b/tags.php
@@ -50,7 +50,7 @@ catch(PDOException $e)
 
 <hr />
 
-<ul class="tags">
+<ul class="tags" id="tags">
 <?php for($i = 0; $row = $q->fetch(); $i++ ): ?>
     <li><span class="tag"><a href="<?php echo $row['tag'] ?>"><?php echo $row['tag'] ?></a> <?php echo $row['count'] ?></span></li>
 <?php endfor; ?>