diff options
author | Jakob Lykke Andersen <Jakob@caput.dk> | 2021-04-12 20:24:11 +0200 |
---|---|---|
committer | Jakob Lykke Andersen <Jakob@caput.dk> | 2021-04-12 20:24:11 +0200 |
commit | 9b3b8a49fb0c2c0059577ccd8993fb6ae64deb97 (patch) | |
tree | a43a645cee4b0b242f5a754711c3944347f33b4a | |
parent | cb21eb2283b0489adf10cc6799de3be088eb3fe1 (diff) | |
download | sphinx-git-9b3b8a49fb0c2c0059577ccd8993fb6ae64deb97.tar.gz |
Decl styling, fix font size in basic
-rw-r--r-- | sphinx/themes/basic/static/basic.css_t | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/sphinx/themes/basic/static/basic.css_t b/sphinx/themes/basic/static/basic.css_t index 450b92ead..25ab688e4 100644 --- a/sphinx/themes/basic/static/basic.css_t +++ b/sphinx/themes/basic/static/basic.css_t @@ -511,12 +511,19 @@ table.hlist td { /* -- object description styles --------------------------------------------- */ .sig { - font-family: monospace; + font-family: 'Consolas', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', monospace; } .sig-name, code.descname { background-color: transparent; font-weight: bold; +} + +.sig-name { + font-size: 1.1em; +} + +code.descname { font-size: 1.2em; } |