Browse Source

Highlight: Keep highlighted code tags at 1.05em font-size.

master
Maciej Smolinski 10 years ago
parent
commit
f2c77b6c0e
  1. 10
      resources/public/style.css

10
resources/public/style.css

@ -373,15 +373,15 @@ pre, code, code.hljs { @@ -373,15 +373,15 @@ pre, code, code.hljs {
font-family: monospace;
border-radius: 3px;
background: #f0f0f0;
font-size: 1.05em;
}
/* Non-syntax highlighted code tag to be slightly bigger so it outstands in text */
code:not(.hljs) {
font-size: 1.05em;
/* Don't increase the size of code in pre tag, pre tag already did it.
Otherwise code size would be even bigger (1.05em * 1.05em = 1.1025em) */
pre code {
font-size: 1em;
}
/* Syntax highlighted code tag to get some padding and keep font-size */
code.hljs {
font-size: 1em;
padding: 1em;
}

Loading…
Cancel
Save