summaryrefslogtreecommitdiffstats
path: root/web/html/css/archnavbar
diff options
context:
space:
mode:
authorDenis Kobozev <d.v.kobozev@gmail.com>2010-06-25 10:12:29 -0400
committerLoui Chang <louipc.ist@gmail.com>2010-07-23 05:40:15 -0400
commitb22f66b3eea75ec62b40688d48ad72829ae58600 (patch)
tree2cec6d391b556c9f3b627cd22edd5468ef8b5e3d /web/html/css/archnavbar
parentb5bc6ab7421d8a7e88c54441431bad4e2f899e88 (diff)
downloadaurweb-b22f66b3eea75ec62b40688d48ad72829ae58600.tar.xz
Header and navbar consistent with Arch site redesign
-- Loui Chang Change is_tu to check_user_privileges Change div#archdev-navbar style Signed-off-by: Loui Chang <louipc.ist@gmail.com>
Diffstat (limited to 'web/html/css/archnavbar')
-rw-r--r--web/html/css/archnavbar/archlogo.gifbin0 -> 1845 bytes
-rw-r--r--web/html/css/archnavbar/archlogo.pngbin0 -> 4192 bytes
-rw-r--r--web/html/css/archnavbar/archnavbar.css41
3 files changed, 41 insertions, 0 deletions
diff --git a/web/html/css/archnavbar/archlogo.gif b/web/html/css/archnavbar/archlogo.gif
new file mode 100644
index 0000000..e1852a0
--- /dev/null
+++ b/web/html/css/archnavbar/archlogo.gif
Binary files differ
diff --git a/web/html/css/archnavbar/archlogo.png b/web/html/css/archnavbar/archlogo.png
new file mode 100644
index 0000000..e873e94
--- /dev/null
+++ b/web/html/css/archnavbar/archlogo.png
Binary files differ
diff --git a/web/html/css/archnavbar/archnavbar.css b/web/html/css/archnavbar/archnavbar.css
new file mode 100644
index 0000000..8d1d785
--- /dev/null
+++ b/web/html/css/archnavbar/archnavbar.css
@@ -0,0 +1,41 @@
+/*
+ * 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 heading/paragraph text offscreen */
+#archnavbarlogo p { margin: 0 !important; padding: 0 !important; text-indent: -9999px !important; }
+#archnavbarlogo h1 { 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; }
+
+/* archdev navbar */
+div#archdev-navbar { margin: 1.5em 25px; }
+div#archdev-navbar ul { list-style: none; margin: -0.5em 0; padding: 0; }
+div#archdev-navbar li { display: inline; margin: 0; padding: 0; font-size: 0.9em; }
+div#archdev-navbar li a { padding: 0 0.5em; color: #07b; }
+
+/* highlight current website */
+#archnavbar.anb-aur ul li#anb-aur a { color: white !important; }