summaryrefslogtreecommitdiff
path: root/www/menu.css
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-06-30 22:56:43 +0000
committerChris Lattner <sabre@nondot.org>2009-06-30 22:56:43 +0000
commitff5380f65f639f043680868c74927c15f7428499 (patch)
treeeec39d0bf7eafbed0e4c3aec1bd39e9310f83b08 /www/menu.css
parent5603674a23966bd93e3d2e2fc505b96d81e5f1f7 (diff)
initial web page for compiler_rt
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@74567 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'www/menu.css')
-rw-r--r--www/menu.css39
1 files changed, 39 insertions, 0 deletions
diff --git a/www/menu.css b/www/menu.css
new file mode 100644
index 000000000..6e96a457a
--- /dev/null
+++ b/www/menu.css
@@ -0,0 +1,39 @@
+/***************/
+/* page layout */
+/***************/
+
+[id=menu] {
+ position:fixed;
+ width:25ex;
+}
+[id=content] {
+ /* ***** EDIT THIS VALUE IF CONTENT OVERLAPS MENU ***** */
+ position:absolute;
+ left:29ex;
+ padding-right:4ex;
+}
+
+/**************/
+/* menu style */
+/**************/
+
+#menu .submenu {
+ padding-top:1em;
+ display:block;
+}
+
+#menu label {
+ display:block;
+ font-weight: bold;
+ text-align: center;
+ background-color: rgb(192,192,192);
+}
+#menu a {
+ padding:0 .2em;
+ display:block;
+ text-align: center;
+ background-color: rgb(235,235,235);
+}
+#menu a:visited {
+ color:rgb(100,50,100);
+} \ No newline at end of file