summaryrefslogtreecommitdiff
path: root/local.css
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2010-11-30 18:07:39 +0100
committerGuido Günther <agx@sigxcpu.org>2010-11-30 18:07:39 +0100
commit9a3bfcc7216986e4d434edd5d46aa544324e6543 (patch)
tree47f6bf25c398f9fcc1a8894499f3a07dd30cc79b /local.css
parent1ce01f7f112b7749903464f690b04f6ea512b298 (diff)
Table CSS
Diffstat (limited to 'local.css')
-rw-r--r--local.css38
1 files changed, 34 insertions, 4 deletions
diff --git a/local.css b/local.css
index 0b45c84..4d49d7a 100644
--- a/local.css
+++ b/local.css
@@ -1,7 +1,7 @@
body {
font-family: Verdana, "Bitstream Vera Sans", sans-serif;
font-size: medium;
- background-color: #AAAAAA;
+ background-color: #aaaaaa;
}
h1, h2, h3, h4 {
@@ -27,7 +27,7 @@ span.title { color:#182C41; }
-moz-border-radius: 5px;
border-radius: 5px;
z-index: 1;
- background: white;
+ background-color: white;
}
.toc ol {
@@ -80,7 +80,7 @@ div.pageheader {
/* the upper part of the header */
.pageheader .header {
color: black;
- background:#ADD8E6;
+ background-color:#ADD8E6;
padding-left: 10px;
padding-right: 10px;
padding-top: 0.25em;
@@ -149,13 +149,43 @@ div#backlinks {
float: right;
}
+/* Source code examples and commands */
pre {
border: thin none;
display: block;
padding: 5px 2em;
- background: #e6e6e6;
+ background-color: #e6e6e6;
-moz-border-radius: 5px;
border-radius: 5px;
border: thin solid #aaaaaa;
overflow: auto;
}
+
+/* Data table */
+table.datatable {
+ border: 1px solid #aaaaaa;
+ border-collapse: collapse;
+ margin-left: auto;
+ margin-right: auto;
+}
+
+table.datatable thead th {
+ color: #a0a0a0
+}
+
+table.datatable tbody tr:hover {
+ background-color: #ADD8E6;
+}
+
+table.datatable th, td {
+ border: 1px solid #aaaaaa;
+ text-align: center;
+ padding: 0.25em;
+}
+
+/* screenshots */
+div.screenshots {
+ display: table;
+ margin-left: auto;
+ margin-right: auto;
+}