]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-content/themes/classic/style.css
WordPress 3.9.2-scripts
[autoinstalls/wordpress.git] / wp-content / themes / classic / style.css
index e09122dc1d8164a06fd2d50f399b804b01a58080..a3b8df9165a1e41dcc61658ef81d6eb0f698e629 100644 (file)
@@ -4,6 +4,7 @@ Theme URI: http://wordpress.org/
 Description: The original WordPress theme that graced versions 1.2.x and prior.
 Version: 1.5
 Author: Dave Shea
+Tags: mantle color, variable width, two columns, widgets
 
 Default WordPress by Dave Shea || http://mezzoblue.com
 Modifications by Matthew Mullenweg || http://photomatt.net
@@ -11,6 +12,11 @@ This is just a basic layout, with only the bare minimum defined.
 Please tweak this and make it your own. :)
 */
 
+.screen-reader-text {
+     position: absolute;
+     left: -1000em;
+}
+
 a {
        color: #675;
 }
@@ -48,9 +54,9 @@ blockquote {
 
 body {
        background: #fff;
-       border: solid 2px #565;
-       border-bottom: solid 1px #565;
-       border-top: solid 3px #565;
+       border: 2px solid #565;
+       border-bottom: 1px solid #565;
+       border-top: 3px solid #565;
        color: #000;
        font-family: 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif;
        margin: 0;
@@ -71,7 +77,7 @@ h2 {
 }
 
 h3 {
-       border-bottom: dotted 1px #eee;
+       border-bottom: 1px dotted #eee;
        font-family: "Times New Roman", Times, serif;
        margin-top: 0;
 }
@@ -96,7 +102,7 @@ ul.post-meta span.post-meta-key {
 
 .credit {
        background: #90a090;
-       border-top: double 3px #aba;
+       border-top: 3px double #aba;
        color: #fff;
        font-size: 11px;
        margin: 10px 0 0 0;
@@ -159,6 +165,13 @@ ul.post-meta span.post-meta-key {
        list-style-type: none;
 }
 
+#commentlist li .avatar {
+       float: right;
+       margin-right: 25px;
+       border: 1px dotted #ccc;
+       padding: 2px;
+}
+
 #content {
        margin: 30px 13em 0 3em;
        padding-right: 60px;
@@ -166,10 +179,10 @@ ul.post-meta span.post-meta-key {
 
 #header {
        background: #90a090;
-       border-bottom: double 3px #aba;
-       border-left: solid 1px #9a9;
-       border-right: solid 1px #565;
-       border-top: solid 1px #9a9;
+       border-bottom: 3px double #aba;
+       border-left: 1px solid #9a9;
+       border-right: 1px solid #565;
+       border-top: 1px solid #9a9;
        font: italic normal 230% 'Times New Roman', Times, serif;
        letter-spacing: 0.2em;
        margin: 0;
@@ -188,7 +201,7 @@ ul.post-meta span.post-meta-key {
 #menu {
        background: #fff;
        border-left: 1px dotted #ccc;
-       border-top: solid 3px #e0e6e0;
+       border-top: 3px solid #e0e6e0;
        padding: 20px 0 10px 30px;
        position: absolute;
        right: 2px;
@@ -311,3 +324,45 @@ ul.post-meta span.post-meta-key {
        font-style: normal;
        text-transform: capitalize;
 }
+
+/* Captions & aligment */
+.aligncenter,
+div.aligncenter {
+       display: block;
+       margin-left: auto;
+       margin-right: auto;
+}
+
+.alignleft {
+       float: left;
+}
+
+.alignright {
+       float: right;
+}
+
+.wp-caption {
+       border: 1px solid #ddd;
+       text-align: center;
+       background-color: #f3f3f3;
+       padding-top: 4px;
+       margin: 10px;
+       -moz-border-radius: 3px;
+       -khtml-border-radius: 3px;
+       -webkit-border-radius: 3px;
+       border-radius: 3px;
+}
+
+.wp-caption img {
+       margin: 0;
+       padding: 0;
+       border: 0 none;
+}
+
+.wp-caption p.wp-caption-text {
+       font-size: 11px;
+       line-height: 17px;
+       padding: 0 4px 5px;
+       margin: 0;
+}
+/* End captions & aligment */