From 9b3b8a49fb0c2c0059577ccd8993fb6ae64deb97 Mon Sep 17 00:00:00 2001 From: Jakob Lykke Andersen Date: Mon, 12 Apr 2021 20:24:11 +0200 Subject: [PATCH] Decl styling, fix font size in basic --- sphinx/themes/basic/static/basic.css_t | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) 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; }