diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2010-03-04 00:31:49 +0100 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2010-03-04 00:31:49 +0100 |
commit | f1b5d9d91bf833e4d74ebd9d28525e8be8cf22b1 (patch) | |
tree | d968d2cc5d99b51801262000e8062fd439cf2b36 /skins/archlinux/archnavbar.css | |
parent | e6475b0b814e9cb5d1b65dd76eee371875fffa9a (diff) |
Initial import of Thayer's redesign
Imported css and logo files from http://projects.archlinux.org/users/thayer/archweb-branding.git/
(commit 50c71078b206150f852eb91121400cb1690466f5)
Content of archnavbar.html was applied to ArchLinux.php.
Diffstat (limited to 'skins/archlinux/archnavbar.css')
-rw-r--r-- | skins/archlinux/archnavbar.css | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/skins/archlinux/archnavbar.css b/skins/archlinux/archnavbar.css new file mode 100644 index 00000000..6bead704 --- /dev/null +++ b/skins/archlinux/archnavbar.css @@ -0,0 +1,32 @@ +/* + * ARCH GLOBAL NAVBAR + * + * We're forcing all generic selectors with !important + * to help prevent other stylesheets from interfering. + * + */ + +/* container for the entire bar */ +#archnavbar { height: 40px !important; padding: 10px 15px !important; background: #333 !important; border-bottom: 5px #08c solid !important; } + +/* logo trickery -- GIF for IE6 and PNG for the rest */ +#archnavbarlogo { float: left !important; margin: 0 !important; padding: 0 !important; height: 40px !important; width: 190px !important; } +/* IE6 doesn't support alpha PNGs so we serve it a GIF */ +#archnavbarlogo { background: url('archlogo.gif') no-repeat !important; } +/* and use a proper PNG for all other modern browsers */ +html > body #archnavbarlogo { background: url('archlogo.png') no-repeat !important; } + +/* move the paragraph text offscreen */ +#archnavbarlogo p { margin: 0 !important; padding: 0 !important; text-indent: -9999px !important; } + +/* make the link the same size as the logo */ +#archnavbarlogo a { display: block !important; height: 40px !important; width: 190px !important; } + +/* display the list inline, float it to the right and style it */ +#archnavbar ul { display: inline !important; float: right !important; list-style: none !important; margin: 0 !important; padding: 0 !important; } +#archnavbar ul li { float: left !important; font-size: 14px !important; font-family: sans-serif !important; line-height: 45px !important; padding-right: 15px !important; padding-left: 15px !important; } + +/* style the links */ +#archnavbar ul#archnavbarlist li a { color: #999; font-weight: normal !important; text-decoration: none !important; } +#archnavbar ul li a:hover { color: white !important; text-decoration: underline !important; } + |