- From: Olivier Thereaux via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 26 Mar 2007 01:46:31 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/validator/htdocs/style
In directory hutz:/tmp/cvs-serv5385/htdocs/style
Modified Files:
base.css results.css
Log Message:
shifting style toward that of /html/
making sure the "green" headings don't appear in wrong places in results page, to avoid confusion
Index: base.css
===================================================================
RCS file: /sources/public/validator/htdocs/style/base.css,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- base.css 26 Mar 2007 01:13:20 -0000 1.6
+++ base.css 26 Mar 2007 01:46:29 -0000 1.7
@@ -91,8 +91,8 @@
}
h2 {
- color: #777742;
- background: white;
+ color: #690;
+ background-color: white;
padding: 5px 15px;
margin-top: 30px;
margin-bottom: 20px;
@@ -103,8 +103,8 @@
}
h3 {
- background-color: #fff;
- color: #777742;
+ color: #690;
+ background-color: white;
font-size: 1.1em;
padding: 2px 10px;
border-bottom: 1px dotted #aaaa77;
@@ -113,7 +113,7 @@
}
h4 {
- color: #777742;
+ color: #690;
background-color: white;
font-weight: 600;
font-style: italic;
@@ -124,8 +124,8 @@
}
h5,h6 {
- background-color: white;
color: #11111A;
+ background-color: white;
font-family: "Gill Sans", sans-serif;
font-weight: normal;
padding-left: 15px;
Index: results.css
===================================================================
RCS file: /sources/public/validator/htdocs/style/results.css,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- results.css 23 Mar 2007 03:52:21 -0000 1.9
+++ results.css 26 Mar 2007 01:46:29 -0000 1.10
@@ -259,6 +259,18 @@
padding-bottom: .2em;
}
+/* the default color of the headings is green now,
+but we want to use it only for "congratulations"
+and stick to a neutral color for other headings */
+
+h3, h4 {
+ color: #777 !important;
+}
+
+h3#congrats {
+ color: #690 !important;
+}
+
.valid {
background-color: #55B05A;
color: white;
@@ -273,8 +285,8 @@
}
.invalid {
- background-color: #D23D24;
- color: white;
+ background-color: #D23D24 !important;
+ color: white !important;
}
td.valid {
@@ -282,10 +294,10 @@
color: #55B05A;
}
-td.invalid
+td.invalid, h3.invalid
{
- color: #D23D24;
- background-color: white;
+ color: #D23D24 !important;
+ background-color: white !important;
}
img.inline-badge {
Received on Monday, 26 March 2007 01:46:33 UTC