]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/lilypond.css
Merge branch 'master' of ssh://kainhofer@git.sv.gnu.org/srv/git/lilypond into dev...
[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#tocframe {
89   position:      fixed;
90   top:           0;
91   left:          0;
92   margin:        0em;
93   padding:       5px;
94   width:         25%;
95   height:        100%;
96   overflow:      auto;
97   background-color: #FFFACD;
98   z-index:100;
99   list-style-type: none;
100 }
101
102 #tocframe .contents {
103   width: 100%;
104   border: none;
105   margin: 0em;
106   background-color: transparent;
107   list-style-type: none;
108 }
109
110 #tocframe ul.toc {
111   padding-left: 0px;
112   margin-left: 0px;
113 }
114 #tocframe ul.toc li {
115  padding-left: 0px;
116   margin-left: 0px;
117   list-style-type: none;
118 }
119 #tocframe ul.toc > li {
120   font-size: 12px;
121 }
122 #tocframe ul.toc li li {
123   padding-left: 15px;
124 }
125 li.toc_current {
126   font-weight: bold;
127   font-style: italic;
128 }
129
130 li.toc_current ul {
131   font-weight: normal;
132   font-style: normal;
133   background: transparent;
134 }
135
136
137
138
139 /***********************************************************/
140 /*                     NAVIGATION                          */
141 /***********************************************************/
142 .nav_table {
143   width:  98%;
144   background-color: #CCCCCC;
145   border: 0;
146   left: auto;
147   right: auto;
148   font-size: 10pt;
149 }
150
151
152
153
154
155
156 /***********************************************************/
157 /*               OVERRIDES FOR PRINTING...                 */
158 /***********************************************************/
159 @media print {
160   /* Hide the sidebar: */
161   body { padding-left: 0; }
162   #tocframe { display: none; }
163   .nav_table { display: none; }
164 }