1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-09-24 18:18:49 +02:00
blog/_src/assets/styl/code.styl

66 lines
1.3 KiB
Stylus
Raw Normal View History

2014-07-12 02:00:18 +02:00
//
// kremalicious3
// --------------
// Code
//
code,
kbd,
pre,
samp
font-family: $font-family-monospace
2014-07-12 21:50:36 +02:00
font-size: $font-size-small
2014-07-12 02:00:18 +02:00
code,
kbd
2014-07-21 21:07:43 +02:00
padding: 2px 4px
2014-07-12 02:00:18 +02:00
code
2014-07-21 21:07:43 +02:00
color: $code-color
background-color: $code-bg
2014-07-12 02:00:18 +02:00
border-radius: $border-radius-base
white-space: nowrap
kbd
color: $kbd-color
background-color: $kbd-bg
border-radius: $border-radius-small
box-shadow: inset 0 -1px 0 rgba(0,0,0,.25)
pre
2014-07-21 21:07:43 +02:00
display: block
2014-07-12 02:00:18 +02:00
padding: (($line-height-computed - 1) / 2)
margin: 0 0 $line-height-computed
line-height: $line-height-base
2014-07-13 01:27:14 +02:00
font-size: $font-size-mini
2014-07-12 02:00:18 +02:00
word-break: break-all
word-wrap: break-word
color: $code-color
background-color: $code-bg
border-radius: $border-radius-base
// make 'em scrollable
2014-07-12 21:22:47 +02:00
overflow: scroll
-webkit-overflow-scrolling: touch
max-height: 300px
2014-07-12 02:00:18 +02:00
// Account for some code outputs that place code tags in pre tags
code
padding: 0
font-size: inherit
color: inherit
white-space: pre-wrap
background-color: transparent
border-radius: 0
code.bash
padding-left: 1.5em
display: block
&:before
content: "$"
color: $text-color-dimmed
display: inline-block
margin-left: -1.5em
margin-right: .8em