diff options
| author | Patrick Seeger <pseeger@ccwn.org> | 2012-05-06 22:45:08 +0200 |
|---|---|---|
| committer | Patrick Seeger <pseeger@ccwn.org> | 2012-05-06 22:45:08 +0200 |
| commit | 5b39d6bf7f34ed52059410f3d0af3799aeff2113 (patch) | |
| tree | 0a0b1abdb0b69f8298410bf439f5d4296276bd69 /css | |
| parent | 3d72ad7ce1aac1151f5499ef19fc04999ba685d1 (diff) | |
vereinsansicht basis
Diffstat (limited to 'css')
| -rw-r--r-- | css/astaf/layout.css | 2 | ||||
| -rw-r--r-- | css/yaml4/navigation/hlist-blue-small.css | 93 |
2 files changed, 95 insertions, 0 deletions
diff --git a/css/astaf/layout.css b/css/astaf/layout.css index 4726978..f7a2762 100644 --- a/css/astaf/layout.css +++ b/css/astaf/layout.css @@ -20,6 +20,8 @@ /* import screen layout | Screen-Layout einbinden */ @import url(../yaml4/navigation/hlist-blue.css); +@import url(../yaml4/navigation/hlist-blue-small.css); + @import url(../yaml4/navigation/vlist.css); @import url(../yaml4/forms/blue-theme.css); diff --git a/css/yaml4/navigation/hlist-blue-small.css b/css/yaml4/navigation/hlist-blue-small.css new file mode 100644 index 0000000..a25ccbf --- /dev/null +++ b/css/yaml4/navigation/hlist-blue-small.css @@ -0,0 +1,93 @@ +/** + * "Yet Another Multicolumn Layout" - YAML CSS Framework + * + * (en) Horizontal list navigation "hlist" + * (de) Horizontale Navigationsliste "hlist" + * + * @copyright Copyright 2005-2012, Dirk Jesse + * @license CC-BY 2.0 (http://creativecommons.org/licenses/by/2.0/), + * YAML-CDL (http://www.yaml.de/license.html) + * @link http://www.yaml.de + * @package yaml + * @version v4.0 + * @revision $Revision: 692 $ + * @lastmodified $Date: 2012-01-25 11:37:31 +0100 (Mi, 25 Jan 2012) $ + */ + +@media all { + + #submenu { + /* (en) containing floats in IE */ + /* (de) Einfassen der Floats im IE */ + width:100%; + overflow:hidden; + /* (en|de) Bugfix:IE - collapsing horizontal margins */ + position:relative; + line-height:0.7em; + background: #090b21; + } + + #submenu { + margin:0; + padding:0; + /* (en|de) Bugfix:IE - Doubled Float Margin Bug */ + display:inline; + float:left; /* LTR */ + } + + #submenu ul li { + /* (en|de) Bugfix:IE - Doubled Float Margin Bug */ + display:inline; + float:left; /* LTR */ + font-size:0.8em; + line-height:0.8em; + list-style-type:none; + margin: 0 .15em 0 0; + padding:0; + } + + #submenu ul li a, + #submenu ul li strong { + background:transparent; + color:#aaa; + display:block; + font-size:1em; + line-height: 2em; + padding: 0 0.3em; + font-weight:normal; + text-decoration:none; + text-shadow: 0 1px 1px rgba(0,0,0,.5); + width:auto; + } + + #submenu ul li a:focus, + #submenu ul li a:hover, + #submenu ul li a:active { + color: #b3b5cc; + background:#666; + background: rgba(255,255,255,.25); + -webkit-border-radius: 0.1em; + -moz-border-radius: 0.1em; + border-radius: 0.1em; + text-decoration:none; + outline: 0 none; + } + + #submenu ul li.active { + background:#666; + background: rgba(255,255,255,.3); + -webkit-border-radius: 0.2em; + -moz-border-radius: 0.2em; + border-radius: 0.2em; + color: #fff; + } + + #submenu ul li.active strong, + #submenu ul li.active a:focus, + #submenu ul li.active a:hover, + #submenu ul li.active a:active { + background:transparent; + color:#fff; + text-decoration:none; + } +}
\ No newline at end of file |
