2 Make RSS and Atom feeds at least semi-legible to folk who accidentally
3 load them in a browser...
7 * Safari 1.2: the RSS <link> text isn't shown
8 * Opera 7.5 uses the style sheet instead of its native RSS mode.
9 * IE/Mac 5.2: none of the :before content works; doesn't get the charset right and displays garbage for non-ASCII.
10 * IE/Win 6.0: No background color, borders, font size, font weight, or :before content.
14 /* RSS: */ rss
, channel
, title
, link
, description
, language
, generator
, lastBuildDate
, item
, pubDate
, author
, comments
, creator
,
15 /* Atom: */ feed
, id
, modified
, tagline
, entry
, issued
, created
, updated
, summary
, comment
{
23 font-family: "Verdana", "Tahoma", "Arial", "Helvetica", sans-serif
;
29 content: "This RSS feed is meant to be read in a syndicated news reader, and isn't ideal for a web browser.";
33 content: "This Atom feed is meant to be read in a syndicated news reader, and isn't ideal for a web browser.";
35 rss:before
, feed:before
{
46 border-bottom: solid
1px #aaa;
49 channel
>title
, feed
>title
{
52 item
>title
, entry
>title
{
60 item
>description
, entry
>summary
{
66 pubDate:before
{ content: "Date: " }
67 link:before
{ content: "Link: " }
68 author:before
, creator:before
{ content: "Author: " }
69 description:before
{ content: "Description: " }
70 id:before
{ content: "Id: " }
72 generator:before
{ content: "Generator: " }
73 language:before
{ content: "Language: " }
74 lastBuildDate:before
{ content: "Updated: " }
75 comments:before
{ content: "Comments page: " }
77 tagline:before
{ content: "Tagline: " }
78 issued:before
{ content: "Issued: " }
79 created:before
{ content: "Created: " }
80 modified:before
{ content: "Modified: " }
81 updated:before
{ content: "Updated: " }
82 summary:before
{ content: "Summary: " }
83 comment:before
{ content: "Comment: " }
85 pubDate:before
, link:before
, author:before
, description:before
,
86 language:before
, generator:before
, lastBuildDate:before
, comments:before
,
87 tagline:before
, issued:before
, created:before
, modified:before
,
88 summary:before
, comment:before
, creator:before
, id:before
, updated:before
{