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