Skip to content

Commit

Permalink
Added background gradients
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Mar 4, 2003
1 parent 3bd7d28 commit 1fcd9b8
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
2 changes: 2 additions & 0 deletions web/common.php
Expand Up @@ -20,6 +20,8 @@ function page_header( $title )
/* The link bar. */
echo "<tr><td class=\"linkbar\">\n";
linkbar();

echo '<tr><td class="shadow">' . "\n";

/* Contents of the page. */
echo "<tr><td class=\"contentbar\">\n";
Expand Down
13 changes: 13 additions & 0 deletions web/deng.css
Expand Up @@ -38,6 +38,8 @@ a:hover
td.titlebar
{
background-color: #797;
background-image: url(images/titlebar.gif);
background-repeat: repeat-x;
border-bottom: 1px solid #676;
color: white;
font-family: serif;
Expand All @@ -54,6 +56,8 @@ td.titlebar .separator
.linkbar
{
background-color: #9a9;
background-image: url(images/linkbar.gif);
background-repeat: repeat-x;
border-bottom: 1px solid #888;
text-align: center;
padding: 0.5ex;
Expand All @@ -74,6 +78,13 @@ td.linkbar a:hover
color: white;
}

td.shadow
{
background-image: url(images/grayshadow.gif);
background-repeat: repeat-x;
height: 5px;
}

td.contentbar
{
border-bottom: 1px solid #888;
Expand All @@ -91,6 +102,7 @@ td.menu
text-align: right;
width: 25%;
padding: 1.5ex;
padding-top: 1ex;
}

td.menu a
Expand All @@ -114,6 +126,7 @@ td.content
vertical-align: top;
width: 65%;
padding: 1em;
padding-top: 0.75em;
}

td.content a
Expand Down

0 comments on commit 1fcd9b8

Please sign in to comment.