diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-06-13 21:06:53 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-06-13 21:06:53 +0000 |
commit | b56c8825834d6bd53e89c8bdf5f3fe9873da8732 (patch) | |
tree | a3b5f97756ce6f2895add570d497cc7eaa496642 | |
parent | 14d4140de15a09d537cc96af8d5eb8c4b216032a (diff) |
CSS tweaks with the menu to help resolve some menu/content overlap issues.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@52255 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | www/content.css | 2 | ||||
-rw-r--r-- | www/menu.css | 6 |
2 files changed, 5 insertions, 3 deletions
diff --git a/www/content.css b/www/content.css index 1dac1d5159..fda6ff1b4d 100644 --- a/www/content.css +++ b/www/content.css @@ -1,6 +1,6 @@ html, body { padding:0px; - font: 12px/18px "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif; background-color: #fff; color: #222; + font: 12px/18px "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, Helvetica, sans-serif; background-color: #fff; color: #222; } h1, h2, h3, tt { color: #000; } diff --git a/www/menu.css b/www/menu.css index d8c195b739..ba1a6d3a5c 100644 --- a/www/menu.css +++ b/www/menu.css @@ -4,11 +4,13 @@ [id=menu] {
position:fixed;
+ width:25ex;
}
[id=content] {
/* ***** EDIT THIS VALUE IF CONTENT OVERLAPS MENU ***** */
- padding-left:25ex;
- padding-right:5ex;
+ position:absolute;
+ left:29ex;
+ padding-right:4ex;
}
/**************/
|