]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/lilypond.css
Merge branch 'master' into dev/texi2html
[lilypond.git] / Documentation / lilypond.css
1 /***********************************************************/
2 /*                  PAGE-WIDE SETTINGS                     */
3 /***********************************************************/
4 body {
5   margin-right: auto;
6   margin-left: auto;
7 }
8
9 /***********************************************************/
10 /*                      HEADERS                            */
11 /***********************************************************/
12 h2 {
13   font-size: x-large;
14   color: #1d7b85;
15 }
16 .unnumberedsubsubsec {
17   font-size: large;
18   color: #1d7b85;
19 }
20 .subsubheading {
21   font-size: large;
22   color: #3b220d;
23 }
24
25 /***********************************************************/
26 /*                       LINKS                             */
27 /***********************************************************/
28 a {
29   color: #344242;
30 }
31 a:visited {
32   color: #666666;
33 }
34 a:active {
35   color: #00cccc;
36 }
37 a:hover {
38   color: #1d7b85;
39   text-decoration:underline;
40 }
41
42 /***********************************************************/
43 /*                  BLOCK FORMATTING                       */
44 /***********************************************************/
45 blockquote {
46   border: 1px solid #cccccc;
47   padding: 3px;
48   width: 40em;
49 }
50 .verbatim {
51   font-family: "Courier New",Courier,monospace;
52 }
53 hr {
54   border:  none;
55   height: 1px;
56   color: #666666;
57   background-color: #666666;
58 }
59 table.cartouche {
60   border: 2px dotted #cccccc;
61   margin-left: auto;
62   margin-right: auto;
63   width: 85%;
64 }
65 table.cartouche td {
66   border: none;
67 }
68
69 /***********************************************************/
70 /*                        TOC                              */
71 /***********************************************************/
72 .contents {
73   border: 1px dashed #339999;
74   margin: 3px 2em;
75   list-style-type: square;
76   padding-right: 1em;
77   width: 40em;
78   background-color: #fcfff9;
79 }
80
81
82 /***********************************************************/
83 /*                    TOC SIDEBAR                          */
84 /***********************************************************/
85 body {
86   padding-left: 27%; /* To create space for the sidebar! */
87 }
88 div#main {
89 }
90 div#tocframe {
91 /*   position:      fixed; */
92   position:      absolute;
93   top:           0;
94   left:          0;
95   margin:        0em;
96   padding:       5px;
97   width:         25%;
98   height:        100%;
99   overflow:      auto;
100   background-color: #FFFACD;
101   z-index:100;
102   list-style-type: none;
103   
104 /*   float: left; */
105 /*   clear: both; */
106 }
107
108 @media screen
109   {
110   body>div#tocframe
111     {
112     position: fixed;
113     }
114   }
115
116 #tocframe .contents {
117   width: 100%;
118   border: none;
119   margin: 0em;
120   background-color: transparent;
121   list-style-type: none;
122 }
123
124 #tocframe ul.toc {
125   padding-left: 0px;
126   margin-left: 0px;
127 }
128 #tocframe ul.toc li {
129  padding-left: 0px;
130   margin-left: 0px;
131   list-style-type: none;
132 }
133 #tocframe ul.toc > li {
134   font-size: 12px;
135 }
136 #tocframe ul.toc li li {
137   padding-left: 15px;
138 }
139 li.toc_current {
140   font-weight: bold;
141   font-style: italic;
142 }
143
144 li.toc_current ul {
145   font-weight: normal;
146   font-style: normal;
147   background: transparent;
148 }
149
150
151
152
153 /***********************************************************/
154 /*                     NAVIGATION                          */
155 /***********************************************************/
156 .nav_table {
157   width:  98%;
158   background-color: #CCCCCC;
159   border: 0;
160   left: auto;
161   right: auto;
162   font-size: 10pt;
163 }
164
165
166
167
168
169
170 /***********************************************************/
171 /*               OVERRIDES FOR PRINTING...                 */
172 /***********************************************************/
173 @media print {
174   /* Hide the sidebar: */
175   body { padding-left: 0; }
176   #tocframe { display: none; }
177   .nav_table { display: none; }
178 }