diff options
author | Anika Henke <anika@selfthinker.org> | 2011-10-05 18:28:02 +0100 |
---|---|---|
committer | Anika Henke <anika@selfthinker.org> | 2011-10-05 18:28:02 +0100 |
commit | aca3c92b68a6e2ae7acfba3388e69e614eb8f10a (patch) | |
tree | de4e7c04cf73f11dc8b9a6d6b774514f8e24dacf /css | |
parent | c161660b125f0f6369853e450c4e82daa2866cec (diff) | |
download | rpg-aca3c92b68a6e2ae7acfba3388e69e614eb8f10a.tar.gz rpg-aca3c92b68a6e2ae7acfba3388e69e614eb8f10a.tar.bz2 |
added alternative designs for breadcrumbs (version04-07)
Diffstat (limited to 'css')
-rwxr-xr-x | css/design.css | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/css/design.css b/css/design.css index db3cb06fa..38e33347b 100755 --- a/css/design.css +++ b/css/design.css @@ -381,6 +381,52 @@ clear: both; } +.dokuwiki div.breadcrumbs.version04 { + padding: .1em .35em; + box-shadow: inset 0 0 .3em __background_alt__; + border-radius: 2px; + background-color: #fdfdfd; + margin-bottom: .5em; + font-size: 0.875em; + clear: both; +} + +.dokuwiki div.breadcrumbs.version05 { + padding: .1em .35em; + border-radius: 2px; + background-color: #fdfdfd; + background-image: -moz-linear-gradient( left, #fff 0%, #eee 50%, #fff 100%); + background-image: -webkit-linear-gradient(left, #fff 0%, #eee 50%, #fff 100%); + background-image: -o-linear-gradient( left, #fff 0%, #eee 50%, #fff 100%); + background-image: -ms-linear-gradient( left, #fff 0%, #eee 50%, #fff 100%); + background-image: linear-gradient( left, #fff 0%, #eee 50%, #fff 100%); + margin-bottom: .5em; + font-size: 0.875em; + clear: both; +} + +.dokuwiki div.breadcrumbs.version06 { + padding: .1em .35em; + border-radius: 2px; + background-color: #fdfdfd; + background-image: -moz-linear-gradient( left, #f3f3f3 0%, #fff 100%); + background-image: -webkit-linear-gradient(left, #f3f3f3 0%, #fff 100%); + background-image: -o-linear-gradient( left, #f3f3f3 0%, #fff 100%); + background-image: -ms-linear-gradient( left, #f3f3f3 0%, #fff 100%); + background-image: linear-gradient( left, #f3f3f3 0%, #fff 100%); + margin-bottom: .5em; + font-size: 0.875em; + clear: both; +} + +.dokuwiki div.breadcrumbs.version07 { + padding: .1em .35em; + border-radius: 2px; + background-color: #fdfdfd; + margin-bottom: .5em; + font-size: 0.875em; + clear: both; +} .dokuwiki div.breadcrumbs a { color: __link__; |