Update of /cvsroot/php-blog/serendipity/templates/mt3-chalkboard
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19186/mt3-chalkboard
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-chalkboard/style.css,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- style.css 7 Aug 2004 16:33:54 -0000 1.9
+++ style.css 2 Sep 2004 17:41:59 -0000 1.10
@@ -51,21 +51,21 @@
background-color: #222;
}
-BODY {
+body {
margin: 0px 0px 20px 0px;
background-color: #6699CC;
}
-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;
}
@@ -226,7 +226,7 @@
font-size: small;
}
-TD.serendipity_admin {
+td.serendipity_admin {
padding: 10px;
}
@@ -252,30 +252,30 @@
color: #99CC66;
}
-TABLE.serendipity_calendar TD {
+table.serendipity_calendar td {
font-size: x-small;
padding: 3px;
}
-TABLE.serendipity_calendar A {
+table.serendipity_calendar a {
font-weight: bold;
text-decoration:none;
}
-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;
|