diff options
Diffstat (limited to 'html_template')
-rwxr-xr-x | html_template/template.html | 27 | ||||
-rwxr-xr-x | html_template/unbiased.css | 5 |
2 files changed, 20 insertions, 12 deletions
diff --git a/html_template/template.html b/html_template/template.html index 76b8681..071e1a4 100755 --- a/html_template/template.html +++ b/html_template/template.html @@ -16,32 +16,35 @@ <div id="page-container">
<div id="top-stories">
- <a target="_blank" href="xxURL1-1xx" id="top-story-1">
- <div class="top-story">
+ <div class="top-story">
+ <a target="_blank" href="xxURL1-1xx" id="top-story-1">
<div class="top-stories-img">
<img src="xxImg1-1xx" />
</div>
<div class="top-stories-hed">xxTitle1-1xx</div>
- </div>
- </a>
+ </a>
+ <div class="top-stories-desc">xxDesc1-1xx</div>
+ </div>
- <a target="_blank" href="xxURL1-2xx" id="top-story-2">
- <div class="top-story">
+ <div class="top-story">
+ <a target="_blank" href="xxURL1-2xx" id="top-story-2">
<div class="top-stories-img">
<img src="xxImg1-2xx" />
</div>
<div class="top-stories-hed">xxTitle1-2xx</div>
- </div>
- </a>
+ </a>
+ <div class="top-stories-desc">xxDesc1-2xx</div>
+ </div>
- <a target="_blank" href="xxURL1-3xx" id="top-story-3">
- <div class="top-story">
+ <div class="top-story">
+ <a target="_blank" href="xxURL1-3xx" id="top-story-3">
<div class="top-stories-img">
<img src="xxImg1-3xx" />
</div>
<div class="top-stories-hed">xxTitle1-3xx</div>
- </div>
- </a>
+ </a>
+ <div class="top-stories-desc">xxDesc1-3xx</div>
+ </div>
</div>
<div id="middle-stories">
diff --git a/html_template/unbiased.css b/html_template/unbiased.css index d1b1460..564b6a7 100755 --- a/html_template/unbiased.css +++ b/html_template/unbiased.css @@ -59,6 +59,11 @@ vertical-align:text-bottom;
}
+.top-stories-desc{
+ font-size:.8em;
+ padding-top:.5em;
+}
+
#middle-stories{
clear:both;
width:1000px;
|