blob: bece0ad3dcd60bdc5b1896bf022dca6be189e7ea [file] [log] [blame]
Cedric Venet3d658642009-02-14 20:20:19 +00001/***************/
2/* page layout */
3/***************/
4
5[id=menu] {
6 position:fixed;
7 width:25ex;
8}
9[id=content] {
10 /* ***** EDIT THIS VALUE IF CONTENT OVERLAPS MENU ***** */
Benjamin Kramer6f794202012-08-30 13:12:02 +000011 margin-left:29ex;
Cedric Venet3d658642009-02-14 20:20:19 +000012 padding-right:4ex;
Benjamin Kramer6f794202012-08-30 13:12:02 +000013 word-wrap: break-word;
Cedric Venet3d658642009-02-14 20:20:19 +000014}
15
16/**************/
17/* menu style */
18/**************/
19
20#menu .submenu {
21 padding-top:1em;
22 display:block;
23}
24
25#menu label {
26 display:block;
27 font-weight: bold;
28 text-align: center;
29 background-color: rgb(192,192,192);
30}
31#menu a {
32 padding:0 .2em;
33 display:block;
34 text-align: center;
35 background-color: rgb(235,235,235);
36}
37#menu a:visited {
38 color:rgb(100,50,100);
Chris Lattner83e7a782010-04-07 22:58:06 +000039}