diff options
Diffstat (limited to 'vendors/dokuwiki/lib/styles')
-rw-r--r-- | vendors/dokuwiki/lib/styles/feed.css | 63 | ||||
-rw-r--r-- | vendors/dokuwiki/lib/styles/index.html | 12 | ||||
-rw-r--r-- | vendors/dokuwiki/lib/styles/style.css | 113 |
3 files changed, 188 insertions, 0 deletions
diff --git a/vendors/dokuwiki/lib/styles/feed.css b/vendors/dokuwiki/lib/styles/feed.css new file mode 100644 index 000000000..44b72d770 --- /dev/null +++ b/vendors/dokuwiki/lib/styles/feed.css @@ -0,0 +1,63 @@ +rss channel, feed, RDF { + font: 80% "Lucida Grande", Verdana, Lucida, Helvetica, Arial, sans-serif; + background-color: __background__; + color: __text__; + 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, image { + display: none; +} + +item link, entry id { + display: block; + color: __extern__; + text-decoration: underline; +} + +channel title, feed title { + display: block; + font-size: 200%; + font-weight: bolder; + color: __extern__; + text-decoration: none; + border-bottom: 20px solid __background_alt__; +} + +: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 __border__; + padding-bottom: 1em; +} + +item title, entry title { + display: block; + background: transparent none; + border: 0px solid __background_other__; + padding: 0; + color: __text_alt__; + font-size: 1.4em; + font-weight: bold; +} + +item pubDate, entry modified, item date { + display: inline; + color: __text_neu__; + font: 1em trebuchet ms, arial, helvetica, sans-serif; +} + +item description, entry summary { + display: block; + clear: both; + padding-top: 0.5em; +} diff --git a/vendors/dokuwiki/lib/styles/index.html b/vendors/dokuwiki/lib/styles/index.html new file mode 100644 index 000000000..d614603ac --- /dev/null +++ b/vendors/dokuwiki/lib/styles/index.html @@ -0,0 +1,12 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="refresh" content="0; URL=../../" /> +<meta name="robots" content="noindex" /> +<title>nothing here...</title> +</head> +<body> +<!-- this is just here to prevent directory browsing --> +</body> +</html> diff --git a/vendors/dokuwiki/lib/styles/style.css b/vendors/dokuwiki/lib/styles/style.css new file mode 100644 index 000000000..814191615 --- /dev/null +++ b/vendors/dokuwiki/lib/styles/style.css @@ -0,0 +1,113 @@ +/** + * Basic styles. These styles are needed for basic DokuWiki functions + * regardless of the used template. Templates can override them of course + */ + +div.clearer { + clear: both; + line-height: 0; + height: 0; + overflow: hidden; +} + +div.no { + display: inline; + margin: 0; + padding: 0; +} + +.hidden { + display: none; +} + +div.error { + background: #fcc url(../images/error.png) 0.5em 0px no-repeat; + color: #000; + border-bottom: 1px solid #faa; + font-size: 90%; + margin: 0; + padding-left: 3em; + overflow: hidden; +} + +div.info { + background: #ccf url(../images/info.png) 0.5em 0px no-repeat; + color: #000; + border-bottom: 1px solid #aaf; + font-size: 90%; + margin: 0; + padding-left: 3em; + overflow: hidden; +} + +div.success { + background: #cfc url(../images/success.png) 0.5em 0px no-repeat; + color: #000; + border-bottom: 1px solid #afa; + font-size: 90%; + margin: 0; + padding-left: 3em; + overflow: hidden; +} + +div.notify { + background: #ffc url(../images/notify.png) 0.5em 0px no-repeat; + color: #000; + border-bottom: 1px solid #ffa; + font-size: 90%; + margin: 0; + padding-left: 3em; + overflow: hidden; +} + + +/* image alignment */ +.medialeft { + float: left; +} +.mediaright { + float: right; +} +.mediacenter { + display: block; + margin-left: auto; + margin-right: auto; +} + +.leftalign { text-align: left; } +.centeralign { text-align: center; } +.rightalign { text-align: right; } + +em.u { + font-style: normal; + text-decoration: underline; +} +em em.u { + font-style: italic; +} + + +/* syntax highlighting code */ +.code .br0 { color: #66cc66; } +.code .co0 { color: #808080; font-style: italic; } +.code .co1 { color: #808080; font-style: italic; } +.code .co2 { color: #808080; font-style: italic; } +.code .co3 { color: #808080; } +.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 .me1 { color: #006600; } +.code .me2 { color: #006600; } +.code .nu0 { color: #cc66cc; } +.code .re0 { color: #0000ff; } +.code .re1 { color: #0000ff; } +.code .re2 { color: #0000ff; } +.code .re3 { color: #ff3333; font-weight:bold; } +.code .re4 { color: #009999; } +.code .st0 { color: #ff0000; } +.code .sy0 { color: #66cc66; } + |