diff options
author | ot <ot@localhost> | 2005-05-17 05:22:36 +0000 |
---|---|---|
committer | ot <ot@localhost> | 2005-05-17 05:22:36 +0000 |
commit | f023960530e5cde4f70d69f50226dd255b38b379 (patch) | |
tree | 333eac27ffecef08a359106148b9269da951260d | |
parent | bed476ec154933b45187cb80b30bdbe8e94f5472 (diff) | |
download | markup-validator-f023960530e5cde4f70d69f50226dd255b38b379.zip markup-validator-f023960530e5cde4f70d69f50226dd255b38b379.tar.gz markup-validator-f023960530e5cde4f70d69f50226dd255b38b379.tar.bz2 |
cleaning up unused parts, and preparing for the possibility of using different style for valid and tentatively valid
-rw-r--r-- | htdocs/results.css | 68 |
1 files changed, 12 insertions, 56 deletions
diff --git a/htdocs/results.css b/htdocs/results.css index 3dbc329..a56de22 100644 --- a/htdocs/results.css +++ b/htdocs/results.css @@ -1,5 +1,5 @@ /* style sheet for the validator's results page */ -/* $Id: results.css,v 1.27 2005-05-16 08:43:26 ot Exp $ */ +/* $Id: results.css,v 1.28 2005-05-17 05:22:36 ot Exp $ */ .input { color: black; @@ -218,15 +218,9 @@ div#result { padding-top: 1em; } -h2.valid, h2.invalid { +h2.valid, h2.invalid, h2.tentative_valid { text-align: center; margin: 0; -} - - -.valid { - background: #55B05A; - color: white; font-family: "Bitstream Vera Sans", sans-serif; font-size-adjust: .53; font-size: 1.5em; @@ -241,60 +235,22 @@ h2.valid, h2.invalid { padding-bottom: .5em; } -.valid a:link { - color: yellow; - background: #053188; -} - -.valid a:visited { - color: silver; - background: #053188; -} - -.valid a:hover { - color: #053188; - background: #eee; +.valid { + background-color: #55B05A; + color: white; } -.valid a:active { - color: red; - background: yellow; +.tentative_valid { +/* we could use a different color than for "valid" */ +/* background-color: #888; */ +/* ... or simply use the same */ + background: #55B05A; + color: white; } - .invalid { - background: #D23D24; + background-color: #D23D24; color: white; - font-family: "Bitstream Vera Sans", sans-serif; - font-size-adjust: .53; - font-size: 1.5em; - font-weight: 500; - font-style: normal; - text-decoration: none; - word-spacing: normal; - letter-spacing: normal; - text-transform: none; - border-color: black; - padding-top: .5em; - padding-bottom: .5em; -} - -.invalid a:link { - color: white; -} - -.invalid a:visited { - color: white; -} - -.invalid a:hover { - color: #880531; - background: white; -} - -.invalid a:active { - background: white; - color: red; } img.inline-badge { |