diff options
Diffstat (limited to 'less/code.less')
| -rw-r--r-- | less/code.less | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/less/code.less b/less/code.less index e12835401..3eed26c05 100644 --- a/less/code.less +++ b/less/code.less @@ -1,11 +1,11 @@ // -// Code (inline and blocK) +// Code (inline and block) // -------------------------------------------------- // Inline and block code styles code, -kdb, +kbd, pre, samp { font-family: @font-family-monospace; @@ -21,6 +21,16 @@ code { border-radius: @border-radius-base; } +// User input typically entered via keyboard +kbd { + padding: 2px 4px; + font-size: 90%; + color: @kbd-color; + background-color: @kbd-bg; + border-radius: @border-radius-small; + box-shadow: inset 0 -1px 0 rgba(0,0,0,.25); +} + // Blocks of code pre { display: block; |
