Best wordpress theme for geeks
I love the Wordpress theme Sixhours 1.5 designed the by Caroline Moore.
It is purely simple text theme with dark background and elegant fonts.
But for geeks there are two shortcomings:
- The font color of the hyperlinks is almost same to the plain text.
- The code block in <pre> element is not highlighted with solid border.
So here is my patch to fix these problems:
--- style.css 2012-03-08 23:56:31.000000000 +0800
+++ style.css 2012-03-08 23:55:53.000000000 +0800
@@ -25,7 +25,7 @@
a:visited {
text-decoration: none;
font-weight: bold;
- color: #f3f3f3;
+ color: #888;
}
a:hover,
a:active {
@@ -440,4 +440,17 @@
font-style: italic;
}
+/* source code block*/
+pre.src {
+ border:solid 1px;
+ -moz-box-shadow: 5px 5px 5px #000; /* Firefox */
+ -webkit-box-shadow: 5px 5px 5px #000; /* Safari, Chrome */
+ box-shadow: 5px 5px 5px #000; /* CSS3 */
+ clear: none;
+ float: none;
+ font-family: "Courier New",monospace,Monaco,Lucida Console !important;
+ margin:5px;
+ overflow:auto;
+ white-space: pre;
+}
/* End Comments */