diff options
Diffstat (limited to 'sandbox/code-block-directive/data/pygments-default.css')
-rw-r--r-- | sandbox/code-block-directive/data/pygments-default.css | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/sandbox/code-block-directive/data/pygments-default.css b/sandbox/code-block-directive/data/pygments-default.css index 5d933198c..b4dbdae19 100644 --- a/sandbox/code-block-directive/data/pygments-default.css +++ b/sandbox/code-block-directive/data/pygments-default.css @@ -12,7 +12,7 @@ /* --------------------------------------- */ /* :: */ -@import url("/stylesheets/html4css1.css"); +@import url("/stylesheets/html4css1.css"); /* Indent the code block */ /* --------------------- */ @@ -20,12 +20,16 @@ /* Content copied from the `html4css1.css` rule for literal blocks. */ /* Selector adapted to the output of Pygments_. :: */ -div.highlight { +pre.code { margin-left: 2em ; margin-right: 2em ; background-color: #eeeeee } +pre.code .ln { /* line numbers */ +/* color: grey; */ + font-size: small; +} /* Colour code blocks */ /* ------------------ */ |