blob: 2f234daaa7f03ae958281ed505770651665484ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
/*
* LLVM website style sheet
*/
/* Common styles */
.body { color: black; background: white; margin: 0 0 0 0 }
/*
* Documentation
*/
/* Common for title and header */
.doc_title, .doc_section, .doc_subsection {
color: #ffffff; background: #330077;
font-family: "Georgia,Palatino,Times,Roman"; font-weight: bold;
padding-left: 8pt
}
.doc_title { text-align: left; font-size: 25pt }
.doc_section { text-align: center; font-size: 22pt; }
.doc_subsection { background: #441188; width: 50%;
text-align: left; font-size: 12pt; padding: 4pt 4pt 4pt 4pt;
margin: 1.5em 0.5em 1.5em 0.5em }
/* In the future, the 2nd level subsection style may want to become this:
.doc_subsubsection { margin: 1.5em 0.5em 1.5 0.5em;
font-weight: bold; font-style: oblique;
border-bottom: 2px dotted #999999 }
*/
/* However, to be consistent with the rest of current documentation which is not
all yet using stylesheets, we try to emulate the former layout. */
.doc_subsubsection { margin: 1.5em 0.5em 1.5em 0.5em;
font-weight: bold;
border-top: 2px solid #cecece }
.doc_text { text-align: left; padding-left: 20pt }
.doc_footer { text-align: left; padding: 0 0 0 0; font-size 12pt }
.doc_red { color: red }
|