add bg/fg color to code html tag #117

This commit is contained in:
Dmitry Kolosov 2021-11-16 09:48:49 +03:00
parent ee6c3e71e5
commit 974067ac30

View File

@ -143,8 +143,6 @@ th, td {
/* Code */
pre {
color: var(--pre-color);
background-color: var(--pre-bg-color);
padding: 1em;
max-width: 100%;
overflow: auto;
@ -153,6 +151,8 @@ pre {
code,
pre,
kbd {
color: var(--pre-color);
background-color: var(--pre-bg-color);
font-family: monospace;
font-size: 0.90em;
line-height: 154%;