Update of /cvsroot/php-blog/serendipity/templates/mt3-independence
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19186/mt3-independence
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-independence/style.css,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- style.css 7 Aug 2004 16:33:54 -0000 1.7
+++ style.css 2 Sep 2004 17:42:00 -0000 1.8
@@ -34,21 +34,21 @@
background-color: #ffffff;
}
-BODY {
+body {
margin: 0px 0px 20px 0px;
background-color: #0F314E;
}
-INPUT, TEXTAREA {
+input, textarea {
font-size: x-small;
font-family: verdana, arial, helvetica, sans-serif;
}
-TH, TD {
+td, td {
font-size: x-small;
}
-P, TD, TH, DIV, SPAN {
+p, td, th, div, span {
font-family: verdana, arial, helvetica, sans-serif;
}
@@ -168,15 +168,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;
@@ -205,7 +205,7 @@
padding-left: 5px;
}
-TD.serendipity_admin {
+td.serendipity_admin {
padding: 10px;
}
@@ -231,24 +231,24 @@
color: #B22222;
}
-TABLE.serendipity_calendar TD {
+table.serendipity_calendar td {
text-align: center;
}
-TABLE.serendipity_calendar A {
+table.serendipity_calendar a {
text-decoration:underline;
}
-TABLE.serendipity_calendar A:hover {
+table.serendipity_calendar a:hover {
text-decoration: none;
}
-TD.serendipity_weekDayName {
+td.serendipity_weekDayName {
text-align: center;
font-weight: normal;
}
-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 {
color: #B22222;
font-family: Verdana, Arial, sans-serif;
font-size: x-small;
@@ -263,7 +263,7 @@
text-align: center;
}
-div.serendipityPlug A {
+div.serendipityPlug a {
text-decoration: none;
border: 0px;
}
|