Add a shadow highlight to some text.

In particular, news boxes, feature boxes, the top strip, and the main title
now have subtle shadows / bevels.
This commit is contained in:
Jeff Teunissen 2010-12-13 23:02:18 -05:00
parent 273dfc7e44
commit 6ecd8f914c
4 changed files with 38 additions and 16 deletions

View file

@ -82,6 +82,7 @@ IMG.screenshot {
.featureBox .featureTitle {
background: #7f000c;
text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.9);
color: #fff;
font-size: 10pt;

View file

@ -34,6 +34,7 @@ BODY {
.newsBox .newsTitle {
background: #7f000c;
text-align: right;
text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.9);
}
.newsBox .newsTitle H2 {
@ -77,13 +78,14 @@ BODY {
#topStrip {
background: #7f000c;
color: black;
text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.9);
padding: 3px;
z-index: 2;
}
#topStrip A {
color: white;
color: white;
text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.9);
}
#mainTitle {
@ -91,6 +93,8 @@ BODY {
background-image:url(/parts/bg-logo.php);
background-position:bottom left;
background-repeat:no-repeat;
text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.9);
color: white;
border: 0;
@ -139,6 +143,7 @@ BODY {
font-size: 10pt;
font-weight: bold;
text-align: center;
text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.9);
margin: 0;
margin-bottom: 2px;
@ -212,6 +217,7 @@ BODY {
#pi A {
background: #7f000c;
color: #084508;
text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9);
font-size: 10pt;
font-weight: bold;
@ -226,4 +232,7 @@ BODY {
}
/* Special link types */
A.sortButton { color: white; text-decoration: underline; }
A.sortButton {
color: white;
text-decoration:underline;
}

View file

@ -94,6 +94,7 @@ IMG.screenshot {
.featureBox .featureTitle {
background: #737b9c;
text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.9);
color: #fff;
font-size: 10pt;
@ -245,6 +246,7 @@ IMG.screenshot {
padding: 0;
}
/*
Main content
*/

View file

@ -4,9 +4,9 @@ HTML {
}
BODY {
border: 0;
padding: 0;
margin: 0;
border: 0;
padding: 0;
margin: 0;
max-height: 100%;
height: 100%;
@ -34,6 +34,7 @@ BODY {
.newsBox .newsTitle {
background: #737b9c;
text-align: right;
text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.9);
}
.newsBox .newsTitle H2 {
@ -50,8 +51,8 @@ BODY {
.newsBox P.lined {
border-top: 2px solid #737b9c;
margin: 0;
padding: 4px;
margin: 0;
padding: 4px;
}
.nodisplay {
@ -77,19 +78,23 @@ BODY {
#topStrip {
background: #737b9c;
color: black;
text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.9);
padding: 3px;
}
#topStrip A {
color: white;
color: white;
text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.9);
}
#mainTitle {
background: #4b5166 /* menu background color */
background: #4b5166; /* menu background color */
background-image:url(/parts/bg-logo.php);
background-position:bottom left;
background-repeat:no-repeat;
text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.9);
color: white;
border: 0;
@ -100,7 +105,7 @@ BODY {
}
#menu {
background: #4b5166
background: #4b5166;
width: 130px;
height: auto;
@ -138,6 +143,7 @@ BODY {
font-size: 10pt;
font-weight: bold;
text-align: center;
text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.9);
margin: 0;
margin-bottom: 2px;
@ -190,7 +196,7 @@ BODY {
padding-top: 4px;
padding-bottom: 4px;
background: #4b5166
background: #4b5166;
text-align: center;
vertical-align: middle;
}
@ -210,19 +216,23 @@ BODY {
#pi A {
background: #737b9c;
color: #4b5166
color: #4b5166;
text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9);
font-size: 10pt;
font-weight: bold;
}
.smallText {
font-size: x-small;
font-size: x-small;
}
.centered {
text-align: center;
text-align: center;
}
/* Special link types */
A.sortButton { color: white; text-decoration: underline; }
A.sortButton {
color: white;
text-decoration:underline;
}