diff options
Diffstat (limited to 'lib/styles')
-rw-r--r-- | lib/styles/feed.css | 63 | ||||
-rw-r--r-- | lib/styles/style.css | 44 |
2 files changed, 107 insertions, 0 deletions
diff --git a/lib/styles/feed.css b/lib/styles/feed.css new file mode 100644 index 000000000..0fcc222cd --- /dev/null +++ b/lib/styles/feed.css @@ -0,0 +1,63 @@ +rss channel, feed, RDF { + font: 80% "Lucida Grande", Verdana, Lucida, Helvetica, Arial, sans-serif; + background-color: White; + color: Black; + margin: 0; + padding: 0; +} + + +link, description, language, managingEditor, copyright, lastBuildDate, date, +pubDate, generator, webMaster, ttl, docs, tagline, author, copyright, +generator, content, created, issued, modified, subject, id, format, creator, +category { + display: none; +} + +item link, entry id { + display: block; + color:#436976; + text-decoration:underline; +} + +channel title, feed title { + display: block; + font-size:200%; + font-weight:bolder; + color:#436976; + text-decoration:none; + border-bottom: 20px solid #dee7ec; +} + +:root:before, :root:before { + content: "This data file is meant to be read in a XML feed reader. See document source." +} + +item, entry { + display: block; + margin: 1em 180px 1em 1em; + border-bottom: 1px solid #8cacbb; + padding-bottom: 1em; +} + +item title, entry title { + display: block; + background: transparent none; + border: 0px solid #ffffff; + padding: 0; + color: #222; + font-size: 1.4em; + font-weight: bold; +} + +item pubDate, entry modified, item date { + display: inline; + color: #AAA; + font: 1em trebuchet ms, arial, helvetica, sans-serif; +} + +item description, entry summary { + display: block; + clear: both; + padding-top: 0.5em; +} diff --git a/lib/styles/style.css b/lib/styles/style.css new file mode 100644 index 000000000..ff9bdf3ce --- /dev/null +++ b/lib/styles/style.css @@ -0,0 +1,44 @@ +div.clearer {clear: both; line-height: 0; height: 0;} + +div.error{ + background: #ff6666 url(../images/error.png) 0.5em 0px no-repeat; + font-size: 90%; + margin: 0px; + padding-left: 3em; +} + +div.info{ + background: #ffff66 url(../images/info.png) 0.5em 0px no-repeat; + font-size: 90%; + margin: 0; + padding-left: 3em; +} + +div.success{ + background: #66ff66 url(../images/thumbup.gif) 0.5em 0px no-repeat; + font-size: 90%; + margin: 0; + padding-left: 3em; +} + +/* syntax highlighting code */ +.code .br0 { color: #66cc66; } +.code .co1 { color: #808080; font-style: italic; } +.code .co2 { color: #808080; font-style: italic; } +.code .coMULTI { color: #808080; font-style: italic; } +.code .es0 { color: #000099; font-weight: bold; } +.code .kw1 { color: #b1b100; } +.code .kw2 { color: #000000; font-weight: bold; } +.code .kw3 { color: #000066; } +.code .kw4 { color: #993333; } +.code .kw5 { color: #0000ff; } +.code .me0 { color: #006600; } +.code .nu0 { color: #cc66cc; } +.code .re0 { color: #0000ff; } +.code .re1 { color: #0000ff; } +.code .re2 { color: #0000ff; } +.code .re4 { color: #009999; } +.code .sc0 { color: #00bbdd; } +.code .sc1 { color: #ddbb00; } +.code .sc2 { color: #009900; } +.code .st0 { color: #ff0000; } |