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 | |
Misha Brukman | e1f464e | 2003-11-22 00:59:08 +0000 | [diff] [blame] | 8 | /* No borders on image links */ |
| 9 | a:link img, a:visited img {border-style: none} |
| 10 | |
Misha Brukman | 3f1b24c | 2003-11-22 01:23:53 +0000 | [diff] [blame] | 11 | address img { float: right; width: 88px; height: 31px; } |
| 12 | address { clear: right; } |
| 13 | |
Misha Brukman | 4b0faec | 2003-10-22 23:23:49 +0000 | [diff] [blame] | 14 | /* |
| 15 | * Documentation |
| 16 | */ |
| 17 | /* Common for title and header */ |
| 18 | .doc_title, .doc_section, .doc_subsection { |
Chris Lattner | 2f002b5 | 2003-11-12 20:24:39 +0000 | [diff] [blame] | 19 | color: #ffffff; background: #330077; |
Misha Brukman | 4b0faec | 2003-10-22 23:23:49 +0000 | [diff] [blame] | 20 | font-family: "Georgia,Palatino,Times,Roman"; font-weight: bold; |
Brian Gaeke | 1ce764e | 2003-11-12 20:31:18 +0000 | [diff] [blame] | 21 | padding-left: 8pt; |
| 22 | padding-top: 1px; |
| 23 | padding-bottom: 2px |
Misha Brukman | 4b0faec | 2003-10-22 23:23:49 +0000 | [diff] [blame] | 24 | } |
| 25 | |
| 26 | .doc_title { text-align: left; font-size: 25pt } |
Misha Brukman | 7905a8a | 2003-10-24 17:34:50 +0000 | [diff] [blame] | 27 | .doc_section { text-align: center; font-size: 22pt; } |
Misha Brukman | 4b0faec | 2003-10-22 23:23:49 +0000 | [diff] [blame] | 28 | .doc_subsection { background: #441188; width: 50%; |
Misha Brukman | 7905a8a | 2003-10-24 17:34:50 +0000 | [diff] [blame] | 29 | text-align: left; font-size: 12pt; padding: 4pt 4pt 4pt 4pt; |
| 30 | margin: 1.5em 0.5em 1.5em 0.5em } |
| 31 | |
| 32 | /* In the future, the 2nd level subsection style may want to become this: |
| 33 | .doc_subsubsection { margin: 1.5em 0.5em 1.5 0.5em; |
| 34 | font-weight: bold; font-style: oblique; |
| 35 | border-bottom: 2px dotted #999999 } |
| 36 | */ |
| 37 | |
| 38 | /* However, to be consistent with the rest of current documentation which is not |
| 39 | all yet using stylesheets, we try to emulate the former layout. */ |
| 40 | .doc_subsubsection { margin: 1.5em 0.5em 1.5em 0.5em; |
| 41 | font-weight: bold; |
| 42 | border-top: 2px solid #cecece } |
| 43 | |
Misha Brukman | 85be5e0 | 2003-10-24 17:56:09 +0000 | [diff] [blame] | 44 | .doc_text { text-align: left; padding-left: 20pt } |
| 45 | |
Misha Brukman | e1f464e | 2003-11-22 00:59:08 +0000 | [diff] [blame] | 46 | .doc_footer { text-align: left; padding: 0 0 0 0 } |
Misha Brukman | 4b0faec | 2003-10-22 23:23:49 +0000 | [diff] [blame] | 47 | |
Misha Brukman | 9583acb | 2003-10-24 19:58:36 +0000 | [diff] [blame] | 48 | .doc_red { color: red } |
| 49 | |
Misha Brukman | 5a141db | 2004-01-15 00:13:59 +0000 | [diff] [blame] | 50 | .doc_table { text-align: center; width: 90%; |
| 51 | padding: 1px 1px 1px 1px; border: 1px; } |
Chris Lattner | 261efe9 | 2003-11-25 01:02:51 +0000 | [diff] [blame] | 52 | |