.svg-code {
    width: 100%;
    height: auto;
    display: inline;
    text {
        tspan {
            font-family: Roboto Mono; /* important to use a fixed font, get it from google fonts */
            white-space: pre;
            line-height: normal;
        }
    }
}
.svg-code:not(:hover) .copy-button {
    display: none;
}
.copy-button {
    cursor: pointer;
}

/* highlight.js theme: vs2015 */

.svg-code {
    background: #1E1E1E;
    fill: #DCDCDC;
}
.hljs-keyword,
.hljs-literal,
.hljs-symbol,
.hljs-name {
    fill: #569CD6;
}
.hljs-link {
    text-decoration: underline;
    fill: #569CD6;
}
.hljs-built_in,
.hljs-type {
    fill: #4EC9B0;
}
.hljs-number,
.hljs-class {
    fill: #B8D7A3;
}
.hljs-string,
.hljs-meta .hljs-string {
    fill: #D69D85;
}
.hljs-regexp,
.hljs-template-tag {
    fill: #9A5334;
}
.hljs-subst,
.hljs-function,
.hljs-title,
.hljs-params,
.hljs-formula {
    fill: #DCDCDC;
}
.hljs-comment,
.hljs-quote {
    font-style: italic;
    fill: #57A64A;
}
.hljs-doctag {
    fill: #608B4E;
}
.hljs-meta,
.hljs-meta .hljs-keyword,
.hljs-tag {
    fill: #9B9B9B;
}
.hljs-variable,
.hljs-template-variable {
    fill: #BD63C5;
}
.hljs-attr,
.hljs-attribute {
    fill: #9CDCFE;
}
.hljs-section {
    fill: gold;
}
.hljs-emphasis {
    font-style: italic;
}
.hljs-strong {
    font-weight: bold;
}
.hljs-bullet,
.hljs-selector-tag,
.hljs-selector-id,
.hljs-selector-class,
.hljs-selector-attr,
.hljs-selector-pseudo {
    fill: #D7BA7D;
}
.hljs-addition {
    background-color: #144212;
    display: inline-block;
    width: 100%;
}
.hljs-deletion {
    background-color: #600;
    display: inline-block;
    width: 100%;
}