blob: 46ebb1b85c05eea72a29c3698e5576bb7e367b6f [file] [log] [blame]
Kevinb3b52c42007-10-05 21:18:52 +00001/***************/
2/* page layout */
3/***************/
4
5/***IE***/
6#menu {
7 float:left;
8}
9#content {
10 float:left;
11 margin-left:1ex;
12}
13/***W3C***/
14[id=menu] {
15 position:fixed;
16}
17[id=content] {
Chris Lattner4d02a992007-12-09 08:38:01 +000018 /* ***** EDIT THIS VALUE IF CONTENT OVERLAPS MENU ***** */
19 padding-left:16ex;
Kevinb3b52c42007-10-05 21:18:52 +000020}
21
22/**************/
23/* menu style */
Chris Lattner4d02a992007-12-09 08:38:01 +000024/**************/
25
26#menu {
27 padding-left: .3em;
28}
29
30#menu .submenu {
31 padding-top:1em;
32 display:block;
33}
34
35#menu label {
36 display:block;
37 font-weight: bold;
38 text-align: center;
39 background-color: rgb(192,192,192);
Kevinb3b52c42007-10-05 21:18:52 +000040}
41#menu a {
Chris Lattner4d02a992007-12-09 08:38:01 +000042 display:block;
43 text-align: center;
44 background-color: rgb(235,235,235);
Kevinb3b52c42007-10-05 21:18:52 +000045}
46#menu a:visited {
Chris Lattner4d02a992007-12-09 08:38:01 +000047 color:rgb(100,50,100);
Kevinb3b52c42007-10-05 21:18:52 +000048}