/*
 * Part of Documenter.jl
 *     https://github.com/JuliaDocs/Documenter.jl
 *
 * License: MIT
 */
@import url("https://cdnjs.cloudflare.com/ajax/libs/normalize/4.2.0/normalize.min.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.5.0/styles/default.min.css");

@import url("style.css");

/* Overriding the <code> block style of highligh.js.
 * We have to override the padding and the background-color, since we style this
 * part ourselves. Specifically, we style the <pre> surrounding the <code>, while
 * highlight.js applies the .hljs style directly to the <code> tag.
 */
.hljs {
    background-color: transparent;
    padding: 0;
}
