
:root {
    /*font-size: 62.5%;*/
    --sidebar-width: 200px;
}

/*
.light {
    --inline-code-color: #301900;
}
:not(pre):not(a) > .hljs {
    background: #f6f7f6;
}
*/

/* all image with rounded corners.. a bit. */
img {
    border-radius: 5px;
}

.b-icon {
    vertical-align: sub;
    border-radius: 0;
    width: 16px;
    height: 16px;
    background-color: #333;
}
.b-key {
/*    border: 1px var(--fg) solid;
    border-radius: 3px;
    padding-left: 5px;
    padding-right: 5px;*/
    
/*    background-color: #333;*/
    
    /* this does not overlap with another on next line */
    position: relative;
    padding-left: 3px;
    padding-right: 3px;
    margin-left: 2px;
    margin-right: 2px;
}
/* this does not overlap with another on next line */
.b-key:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 3px;
    border: 1px var(--fg) solid;
}

.b-op {
    position: relative;
    padding-left: 3px;
    padding-right: 3px;
    margin-left: 2px;
    margin-right: 2px;
    
    border-radius: 3px;
/*    border: 1px var(--fg) solid;*/
    
    color: var(--bg);
    background-color: var(--fg);
    
    white-space: nowrap;
}



/* captions under image */
figure {
    margin-right: 0;
    margin-left: 0;
}
figure figcaption {
    text-align: right;
    font-size: 80%;
}

/* main page button */
#blendermarket-button {
    color: #fff;
    background-color: #ec6628;
    font-weight: 700;
    letter-spacing: -0.025em;
    padding: 5px;
    margin: 0;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 5px;
    text-decoration: none;
/*    -webkit-transition: background-color .4s cubic-bezier(.19,1,.22,1), color .4s cubic-bezier(.19,1,.22,1);
    -o-transition: background-color .4s cubic-bezier(.19,1,.22,1), color .4s cubic-bezier(.19,1,.22,1);
    transition: background-color .4s cubic-bezier(.19,1,.22,1), color .4s cubic-bezier(.19,1,.22,1);*/
    
    background: linear-gradient(120deg,#6800f0,#ff6b00);
    background-size: 100% 100%;
    transition: background-size .12s linear;
/*    border: none;*/
    line-height: 2em;
}
#blendermarket-button:hover {
/*    background-color: #da5213;*/
    background-size: 125% 100%;
}
.blendermarket-button-small {
    vertical-align: middle;
    font-size: 60%;
    opacity: 0.5;
}

/* space above copyright notice added to sidebar via index.hbs */
#custom-sidebar-items {
/*    margin-top: 50px;*/
    padding-bottom: 1em;
}

/* ui 2 column layout */

.ui-columns {
    display: flex;
    column-gap: 10px;
    justify-content: space-between;
}
.ui-col-text {
}
.ui-col-image {
    flex-shrink: 0;
}
@media only screen and (max-width: 1080px) {
    .ui-columns {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
}
@media only screen and (max-width: 1380px) {
    
}

