blob: f572b5e5714178faf9034706debe3dcbca68c080 [file] [log] [blame]
Misha Brukman4b0faec2003-10-22 23:23:49 +00001/*
Misha Brukman10c0a2e2004-09-07 05:09:22 +00002 * LLVM documentation style sheet
Misha Brukman4b0faec2003-10-22 23:23:49 +00003 */
4
5/* Common styles */
Misha Brukman7905a8a2003-10-24 17:34:50 +00006.body { color: black; background: white; margin: 0 0 0 0 }
Misha Brukman4b0faec2003-10-22 23:23:49 +00007
Misha Brukmane1f464e2003-11-22 00:59:08 +00008/* No borders on image links */
Misha Brukman98a4ec72008-12-14 07:20:36 +00009a:link img, a:visited img { border-style: none }
Misha Brukmane1f464e2003-11-22 00:59:08 +000010
Misha Brukman3f1b24c2003-11-22 01:23:53 +000011address img { float: right; width: 88px; height: 31px; }
12address { clear: right; }
13
Misha Brukman98a4ec72008-12-14 07:20:36 +000014table { text-align: center; border: 2px solid black;
Mikhail Glushenkov8cc82882008-12-13 17:50:58 +000015 border-collapse: collapse; margin-top: 1em; margin-left: 1em;
Reid Spencer2f1e7a02004-08-26 20:43:21 +000016 margin-right: 1em; margin-bottom: 1em; }
Misha Brukman98a4ec72008-12-14 07:20:36 +000017tr, td { border: 2px solid gray; padding: 4pt 4pt 2pt 2pt; }
18th { border: 2px solid gray; font-weight: bold; font-size: 105%;
19 background: url("img/lines.gif");
20 font-family: "Georgia,Palatino,Times,Roman,SanSerif";
21 text-align: center; vertical-align: middle; }
Mikhail Glushenkov8cc82882008-12-13 17:50:58 +000022/*
23 * Documentation
Misha Brukman4b0faec2003-10-22 23:23:49 +000024 */
25/* Common for title and header */
Mikhail Glushenkov8cc82882008-12-13 17:50:58 +000026.doc_title, .doc_section, .doc_subsection, h1, h2 {
Misha Brukmanb9e41eb2004-05-12 21:20:56 +000027 color: black; background: url("img/lines.gif");
Reid Spencer936e5ca2004-11-01 09:26:57 +000028 font-family: "Georgia,Palatino,Times,Roman,SanSerif"; font-weight: bold;
Misha Brukmanb9e41eb2004-05-12 21:20:56 +000029 border-width: 1px;
30 border-style: solid none solid none;
31 text-align: center;
32 vertical-align: middle;
Brian Gaeke1ce764e2003-11-12 20:31:18 +000033 padding-left: 8pt;
34 padding-top: 1px;
35 padding-bottom: 2px
Misha Brukman4b0faec2003-10-22 23:23:49 +000036}
37
Mikhail Glushenkov8cc82882008-12-13 17:50:58 +000038h1, .doc_section { text-align: center; font-size: 22pt;
39 margin: 20pt 0pt 5pt 0pt; }
Misha Brukman7905a8a2003-10-24 17:34:50 +000040
Mikhail Glushenkov8cc82882008-12-13 17:50:58 +000041.doc_title, .title { text-align: left; font-size: 25pt }
42
43h2, .doc_subsection { width: 75%;
44 text-align: left; font-size: 12pt;
45 padding: 4pt 4pt 4pt 4pt;
46 margin: 1.5em 0.5em 0.5em 0.5em }
47
48h3, .doc_subsubsection { margin: 2.0em 0.5em 0.5em 0.5em;
49 font-weight: bold; font-style: oblique;
50 border-bottom: 1px solid #999999; font-size: 12pt;
51 width: 75%; }
52
Chris Lattner88c595f2004-05-23 21:03:30 +000053.doc_author { text-align: left; font-weight: bold; padding-left: 20pt }
Chris Lattner1c2c61f2005-05-16 16:30:10 +000054.doc_text { text-align: left; padding-left: 20pt; padding-right: 10pt }
Misha Brukman85be5e02003-10-24 17:56:09 +000055
Misha Brukmane1f464e2003-11-22 00:59:08 +000056.doc_footer { text-align: left; padding: 0 0 0 0 }
Misha Brukman4b0faec2003-10-22 23:23:49 +000057
Misha Brukman0465e892005-02-09 22:47:47 +000058.doc_hilite { color: blue; font-weight: bold; }
Misha Brukman9583acb2003-10-24 19:58:36 +000059
Mikhail Glushenkov8cc82882008-12-13 17:50:58 +000060.doc_table { text-align: center; width: 90%;
Misha Brukman5a141db2004-01-15 00:13:59 +000061 padding: 1px 1px 1px 1px; border: 1px; }
Chris Lattner261efe92003-11-25 01:02:51 +000062
Misha Brukmana3ce4292004-04-06 03:53:49 +000063.doc_warning { color: red; font-weight: bold }
Misha Brukmanf4e4feb2004-04-15 20:49:32 +000064
Misha Brukman64722e52008-12-16 03:07:49 +000065/* <div class="doc_code"> would use this class, and <div> adds more padding */
Mikhail Glushenkov8cc82882008-12-13 17:50:58 +000066.doc_code, .literal-block
67 { border: solid 1px gray; background: #eeeeee;
68 margin: 0 1em 0 1em;
Chris Lattner58ac6742004-05-24 18:05:58 +000069 padding: 0 1em 0 1em;
Misha Brukman98a4ec72008-12-14 07:20:36 +000070 display: table;
Chris Lattner58ac6742004-05-24 18:05:58 +000071 }
Mikhail Glushenkov8cc82882008-12-13 17:50:58 +000072
Misha Brukman64722e52008-12-16 03:07:49 +000073/* It is preferrable to use <pre class="doc_code"> everywhere instead of the
74 * <div class="doc_code"><pre>...</ptr></div> construct.
Mikhail Glushenkovd6d2efc2009-05-06 01:41:47 +000075 *
Misha Brukman64722e52008-12-16 03:07:49 +000076 * Once all docs use <pre> for code regions, this style can be merged with the
77 * one above, and we can drop the [pre] qualifier.
78 */
79pre.doc_code, .literal-block { padding: 1em 2em 1em 1em }
80
Mikhail Glushenkov8cc82882008-12-13 17:50:58 +000081.doc_notes { background: #fafafa; border: 1px solid #cecece;
Misha Brukman9e6b68d2008-12-29 21:25:09 +000082 display: table; padding: 0 1em 0 .1em }
Reid Spencer2f1e7a02004-08-26 20:43:21 +000083
Misha Brukman98a4ec72008-12-14 07:20:36 +000084table.layout { text-align: left; border: none; border-collapse: collapse;
Reid Spencer09221722004-11-01 08:18:06 +000085 padding: 4px 4px 4px 4px; }
Misha Brukman98a4ec72008-12-14 07:20:36 +000086tr.layout, td.layout, td.left, td.right
87 { border: none; padding: 4pt 4pt 2pt 2pt; vertical-align: top; }
88td.left { text-align: left }
89td.right { text-align: right }
90th.layout { border: none; font-weight: bold; font-size: 105%;
91 text-align: center; vertical-align: middle; }
Reid Spencer09221722004-11-01 08:18:06 +000092
Reid Spencer2f1e7a02004-08-26 20:43:21 +000093/* Left align table cell */
94.td_left { border: 2px solid gray; text-align: left; }
Mikhail Glushenkov8cc82882008-12-13 17:50:58 +000095
96/* ReST-specific */
Misha Brukman98a4ec72008-12-14 07:20:36 +000097.title { margin-top: 0 }
Mikhail Glushenkovd6d2efc2009-05-06 01:41:47 +000098.topic-title{ display: none }
Mikhail Glushenkov8cc82882008-12-13 17:50:58 +000099div.contents ul { list-style-type: decimal }
Mikhail Glushenkov8cc82882008-12-13 17:50:58 +0000100.toc-backref { color: black; text-decoration: none; }