summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemse2013-06-06 23:08:11 +0200
committerGravatar Tom Willemse2013-06-06 23:08:11 +0200
commitc0e9d7ca4c04f82e016526cfdc76ffbaff6a4b66 (patch)
treeb514e9b7c7f904107797f60e23b2a9300b2915f3
parente1a3e94621e6474602007efd61f512c78efd5e79 (diff)
downloadorgweb-c0e9d7ca4c04f82e016526cfdc76ffbaff6a4b66.tar.gz
orgweb-c0e9d7ca4c04f82e016526cfdc76ffbaff6a4b66.zip
Update some CSS
-rw-r--r--site/blog.css15
-rw-r--r--site/org.css66
2 files changed, 79 insertions, 2 deletions
diff --git a/site/blog.css b/site/blog.css
index 809f2bc..be9220e 100644
--- a/site/blog.css
+++ b/site/blog.css
@@ -1,8 +1,17 @@
+a {
+ text-decoration: none;
+}
+
+a:hover {
+ text-decoration: underline;
+}
+
body {
border: 0;
margin: 0;
padding: 0;
font-family: sans-serif;
+ line-height: 160%;
}
div#rap {
@@ -10,6 +19,10 @@ div#rap {
margin: 0 auto;
}
+pre {
+ line-height: 100%;
+}
+
#header, #header h1, #header h2 {
margin-left: auto;
margin-right: auto;
@@ -30,8 +43,6 @@ blockquote {
h2.storytitle {
border-bottom: 1px dotted #ccc;
- font: 20px "Bitstream Vera Sans", sans-serif;
- font-weight: 600;
margin: 15px 0 2px 0;
padding-bottom: 2px;
}
diff --git a/site/org.css b/site/org.css
index 70ce626..d13cc1a 100644
--- a/site/org.css
+++ b/site/org.css
@@ -1,5 +1,17 @@
+a {
+ text-decoration: none;
+}
+
+a:hover {
+ text-decoration: underline;
+}
+
body {
+ border: 0;
font-family: sans-serif;
+ margin: 0;
+ padding: 0;
+ line-height: 160%;
}
#content,
@@ -8,3 +20,57 @@ body {
margin: 0 auto;
width: 700px;
}
+
+#table-of-contents {
+ background-color: #ffffff;
+ color: #000000;
+ margin-left: 20px;
+ margin-top: 0;
+ margin-right: -3em;
+ margin-bottom: 20px;
+ border-right: 0;
+ padding: 10px 0 10px 10px;
+ float: right;
+ width: 11em;
+}
+
+#table-of-contents ul {
+ padding-left: 3px;
+ text-transform: lowercase;
+ font: normal smaller sans-serif;
+ font-weight: normal;
+ line-height: 100%;
+ list-style-type: none;
+ margin: 0;
+ text-align: left;
+}
+
+#table-of-contents ul li {
+ border: 0;
+ font-weight: normal;
+ font-style: normal;
+ letter-spacing: 0;
+ margin-top: 0;
+ padding: 0;
+ padding-left: 12px;
+}
+
+#table-of-contents ul a {
+ text-decoration: none;
+}
+
+#table-of-contents ul a:visited {
+ text-decoration: none;
+}
+
+#table-of-contents ul a:hover {
+ text-decoration: underline;
+}
+
+#table-of-contents h2 {
+ font: italic smaller sans-serif;
+ font-weight: bold;
+ margin-top: 10px;
+ margin-bottom: 0px;
+ padding-bottom: 2px; /*border-bottom: dotted 1px #ccc;*/
+}