summaryrefslogtreecommitdiffstats
path: root/www/menu.css
diff options
context:
space:
mode:
authorKevin <ar18@comcast.net>2007-10-05 21:18:52 +0000
committerKevin <ar18@comcast.net>2007-10-05 21:18:52 +0000
commitbc8e50fa28ac602c8858aa837076b700e4165eae (patch)
tree40b59896f307821b6217746a7a647a1601f1d5aa /www/menu.css
parenta5dc235fed0b59c5ba127208071accd6d8c67f68 (diff)
new site -- the rest of it
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42651 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'www/menu.css')
-rw-r--r--www/menu.css64
1 files changed, 64 insertions, 0 deletions
diff --git a/www/menu.css b/www/menu.css
new file mode 100644
index 0000000000..da688dce29
--- /dev/null
+++ b/www/menu.css
@@ -0,0 +1,64 @@
+/*
+ Consulted:
+ http://www.w3.org/TR/CSS1 &
+ http://www.w3.org/TR/CSS21/
+*/
+
+/***************/
+/* page layout */
+/***************/
+
+/***IE***/
+#menu {
+ float:left;
+}
+#content {
+ float:left;
+ margin-left:1ex;
+}
+/***W3C***/
+[id=menu] {
+ position:fixed;
+}
+[id=content] {
+ padding-left:16ex; /* ***** EDIT THIS VALUE IF CONTENT OVERLAPS MENU ***** */
+}
+
+/****************/
+/* menu display */
+/****************/
+label, #menu a {
+ display:block;
+ padding:.05em .3em;
+}
+#menu * {
+ display:block;
+}
+#quick_links {
+ padding-top:1em;
+}
+a {
+ margin:.05em;
+}
+
+/**************/
+/* menu style */
+/**************/
+label {
+ font-size:.8em;
+}
+#menu a {
+ background-color:rgb(244,250,255);
+}
+#menu label {
+ background-color:rgb(244,255,250);
+}
+#menu {
+ padding: 0 .2em .2em 0;
+ border-color: rgb(240,240,240);
+ border-width: 0 .1em 0 0;
+ border-style: solid;
+}
+#menu a:visited {
+ color:rgb(130,50,100);
+} \ No newline at end of file