diff options
author | Natanael Copa <natanael.copa@gmail.com> | 2007-07-27 12:53:38 +0000 |
---|---|---|
committer | Natanael Copa <natanael.copa@gmail.com> | 2007-07-27 12:53:38 +0000 |
commit | dc53423183a0c459284ebd139022b707f01af006 (patch) | |
tree | 8a67a2904ec991028bddd429d57eec114b05baab /www/static/submenu.css | |
parent | 275c80281ba2e84b8d810bdb1c2b7f8c9a4333d9 (diff) | |
download | acf-core-2.0_alpha1.tar.bz2 acf-core-2.0_alpha1.tar.xz |
moved core files to new dir structurev2.0_alpha1
git-svn-id: svn://svn.alpinelinux.org/acf/core/trunk@219 ab2d0c66-481e-0410-8bed-d214d4d58bed
Diffstat (limited to 'www/static/submenu.css')
-rw-r--r-- | www/static/submenu.css | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/www/static/submenu.css b/www/static/submenu.css new file mode 100644 index 0000000..b759020 --- /dev/null +++ b/www/static/submenu.css @@ -0,0 +1,52 @@ +/*---------------------------------------------------------------------------------- + * Submenu ( Horizontal Tabs) + *---------------------------------------------------------------------------------- + */ +#submenu { + width: 75%; + font-size: 90%; +// font-weight: Bold; +// display: inline; + float: right; + margin: 0em 2em 0em 0em; + background: #fff url(/static/greypx.gif) repeat-x bottom left; + } + +#submenu p { + display: inline; + color: #22c; + font-size: 161%; + font-weight: light; + margin: 2em 0em -2em 0em; + } + +#submenu ul { + list-style: none; + display: inline; + margin: 0em 1em 0em 1em; + padding: 0em 3em .6em 2em; + float: right; + } + +#submenu li { + display: inline; + border: 1px solid #ccc; + padding: .5em 1em .5em 1em; + margin: 0em 0em 0em 0em; + border-bottom: none; + background: #f8f8f8; + background: transparent url("/static/unselected.gif") repeat-x top left; + } + +#submenu #selected { + // background: #fff url("/static/selected.gif") repeat-x top left; + background: #fff; + } + +#submenu a { + } + +#submenu a:hover { + color: #c22; + } + |