/*
Content
*/
html {
    --alert-color: #268bd2;
    --alert-color-error: #c0392b;
    --alert-color-success: #32b643;
    --alert-color-warning: #e67e22;
}

q { quotes: '\201E' '\201C' '\201A' '\2018'; }
q::before { content: open-quote; }
q::after { content: close-quote; }

p.tip {
    position: relative;
    margin: 2em 0;
    padding: 12px 24px 12px 20px;
    background-color: #f8f8f8;
    border-left: 4px solid;
    border-left-color: var( --accent, var( --alert-color-success ) );
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
    clear: both;
}
p.tip:before{
    content: '!';
    position: absolute;
    top: 14px;
    left: -12px;
    width: 20px;
    height: 20px;
    font-family: Dosis, 'Source Sans Pro', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    line-height: 20px;
    text-align: center;
    color: #fff;
    border-radius: 100%;
    background-color: var( --accent, var( --alert-color-success ) );
}
p.tip.warning {
    --accent: var( --alert-color-warning );
}
p.tip.important {
    --accent: var( --alert-color-error );
}
@media screen and (max-width: 41em) {
    .markdown-body {
        padding: 0 10px;
    }
}

.alignleft {
    float: left;
    margin-right: 1.5em;
}
.alignright {
    float: right;
    margin-left: 1.5em;
}