summaryrefslogtreecommitdiff
path: root/docs/llvm.css
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2003-10-22 23:23:49 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2003-10-22 23:23:49 +0000
commit4b0faec559eb784e9ac389a57375368de57ba309 (patch)
treeee5969aa252f2d3cf5c93bbea0b8a143a9d9b2e3 /docs/llvm.css
parentce94319558ecc67383764da7e86083e57e3b0bc8 (diff)
downloadllvm-4b0faec559eb784e9ac389a57375368de57ba309.tar.gz
llvm-4b0faec559eb784e9ac389a57375368de57ba309.tar.bz2
llvm-4b0faec559eb784e9ac389a57375368de57ba309.tar.xz
We will distributed this stylesheet with the documentation, as well as use it
(via import) in the online version. * Added styles for documentation headers, sections, etc. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9391 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/llvm.css')
-rw-r--r--docs/llvm.css27
1 files changed, 27 insertions, 0 deletions
diff --git a/docs/llvm.css b/docs/llvm.css
new file mode 100644
index 0000000000..b4acede6e8
--- /dev/null
+++ b/docs/llvm.css
@@ -0,0 +1,27 @@
+/*
+ * LLVM website style sheet
+ */
+
+/* Common styles */
+.body { text: black; background: white; margin: 0 0 0 0 }
+
+/*
+ * Documentation
+ */
+/* Common for title and header */
+.doc_title, .doc_section, .doc_subsection {
+ color: #eeeeff; 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: 4 4 4 22 }
+.doc_text { text-align: left; padding-left: 20pt }
+
+/* Publications */
+.pub_title { font-family: "Georgia,Palatino,Times,Roman"; font-size: 24pt;
+ text-align: center }
+.pub_author { font-size: 14pt; text-align: center }