]> 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 5c8bd4a83e4a148c05a34c9ac7a2fd0ea6c209b7..a3b8df9165a1e41dcc61658ef81d6eb0f698e629 100644 (file)
@@ -12,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;
 }
@@ -319,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 */