Update of /cvsroot/php-blog/serendipity/templates/mt3-gettysburg
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19186/mt3-gettysburg
Modified Files:
style.css
Log Message:
XML is case sensitive, and since all XHTML elements are lowercase we have to use lowercase in the CSS to select them. I think I got them all...
Index: style.css
===================================================================
RCS file: /cvsroot/php-blog/serendipity/templates/mt3-gettysburg/style.css,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- style.css 7 Aug 2004 16:33:54 -0000 1.3
+++ style.css 2 Sep 2004 17:41:59 -0000 1.4
@@ -34,21 +34,21 @@
background-color: #FAFFFF;
}
-BODY {
+body {
margin: 0px 0px 20px 0px;
background-color: #8FABBE;
}
-INPUT, TEXTAREA {
+input, textarea {
font-size: x-small;
font-family: verdana, arial, helvetica, sans-serif;
}
-TH, TD {
+th, td {
font-size: x-small;
}
-P, TD, TH, DIV, SPAN {
+p, td, th, div, span {
font-family: verdana, arial, helvetica, sans-serif;
}
@@ -172,15 +172,15 @@
border: 0px;
}
-TD.serendipity_commentsLabel {
+td.serendipity_commentsLabel {
font-size: x-small;
font-weight: bold;
vertical-align: top;
}
-TD.serendipity_commentsValue input,
-TD.serendipity_commentsValue select,
-TD.serendipity_commentsValue textarea {
+td.serendipity_commentsValue input,
+td.serendipity_commentsValue select,
+td.serendipity_commentsValue textarea {
width: 99%;
border: 1px solid #333;
padding: 2px;
@@ -209,7 +209,7 @@
margin-bottom: 5px;
}
-TD.serendipity_admin {
+td.serendipity_admin {
padding: 10px;
}
@@ -235,31 +235,31 @@
color: #006699;
}
-TABLE.serendipity_calendar TD {
+table.serendipity_calendar td {
font-size: x-small;
text-align: center;
padding: 3px;
}
-TABLE.serendipity_calendar A {
+table.serendipity_calendar a {
font-weight: bold;
text-decoration:underline;
}
-TABLE.serendipity_calendar A:hover {
+table.serendipity_calendar a:hover {
text-decoration: none;
}
-TD.serendipity_weekDayName {
+td.serendipity_weekDayName {
font-size: x-small;
font-weight:bold;
}
-TD.serendipity_calendarHeader A:link,
-TD.serendipity_calendarHeader A:visited,
-TD.serendipity_calendarHeader A:hover {
+td.serendipity_calendarHeader a:link,
+td.serendipity_calendarHeader a:visited,
+td.serendipity_calendarHeader a:hover {
border: 0;
text-decoration: none;
}
-div.serendipityPlug, div.serendipityPlug A {
+div.serendipityPlug, div.serendipityPlug a {
font-size: 11px;
text-decoration: none;
border: 0px;
|