/*   
Theme Name: YokoGeek
Theme URI: 
Description: Yoko theme modified to better handle wide pre tag content
Author: Joshua Hoblitt
Author URI: http://joshua.hoblitt.com
Template: yoko
Version: 1.0
Tags: Yoko Child Theme
*/

/* style.css as provided with yoko 1.0.5 fetches fonts from
 * url(https://fonts.googleapis.com/...) which causes an error about some
 * contet being uncrypted error when accessing a yokogeek themed site via
 * https. As a work aroung, the complete style.css file from yoko has been
 * coped into yokogeek as "yoko_style.css" with the only modification being
 * changing the offending import statement from http:// -> https://.  If this
 * is ever fixed in the upstream yoko theme, shipping a modified version of
 * this file will no longer be nessicary and we can go back to just importing
 * the parent theme's css file again.
 */
/* @import url("../yoko/style.css"); */
@import url("yoko_style.css");

/* The main font colors were a tad light 
 */
body {
    color: #444444;
}

/* The details box on the left hand side of posts on the main page has been
 * removed to make extra space.  .entry-content needs to be overriden so the
 * content on the post can expand to take up the space the details box was in.
 * */

#content .entry-content {
/*      width: 74.5%; */
        width: 100%;
        margin: 0;
        float: right;
}

/* Base yoko pre sections use a large font and don't scroll.  This doesn't work
 * well for wide code/CLI snippets as they over run the entry-content box and
 * spill into the right hand sidebars. */

#content pre {
        background: none repeat scroll 0 0 #000000;
        color:#FFFFFF;
        border: 2px solid #444444;
        overflow: auto;
        font-size: 0.8em;
        line-height: 1.0em;

        /* background-color: #f0f0f0; */
        font-family: monospace;
/*      font-size: 1.2em; */
/*      line-height: 1.3; */
        margin: 0 0 20px 0;
        padding: 10px;
}
