/* This file provides a default set of CSS styles for certain features of Butter CMS. */

/* Inline code highlighting */
.butter-inline-code {
    padding: 2px 4px;
    font-size: 90%;
    color: #c7254e;
    background-color: #f9f2f4;
    border-radius: 4px;
    font-family: Menlo,Monaco,Consolas,"Courier New",monospace;
}

/* Full code block */
pre {
    display: block;
    padding: 10.5px;
    margin: 0 0 11px;
    font-size: 15px;
    line-height: 1.42857143;
    word-break: break-all;
    word-wrap: break-word;
    color: #333333;
    background-color: #f5f5f5;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-family: Menlo,Monaco,Consolas,"Courier New",monospace;
}

@media only screen and (min-width: 420px)  {
    .butter-float-left {
        float: left;
        margin: 0px 10px 10px 0px;
    }
    .butter-float-right {
        float: right;
        margin: 0px 0px 10px 10px;
    }
}

figcaption {
    font-style: italic;
    color: #CCC;
    text-align: center;
}