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

69 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
2015-06-10 23:09:15 +02:00
font-size: $font-size-mini
hyphens: none
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
2015-07-26 21:41:59 +02:00
color: darken($code-color, 40%)
2015-08-09 18:11:26 +02:00
background-color: alpha($code-bg, 10%)
2014-07-12 02:00:18 +02:00
border-radius: $border-radius-base
white-space: nowrap
2015-07-26 21:41:59 +02:00
word-wrap: normal
2014-07-12 02:00:18 +02:00
kbd
color: $kbd-color
background-color: $kbd-bg
border-radius: $border-radius-small
2015-08-02 21:15:22 +02:00
border: 1px solid $kbd-bg
box-shadow: inset 0 1px 0 rgba(#fff, .4)
2014-07-12 02:00:18 +02:00
pre
2014-07-21 21:07:43 +02:00
display: block
padding: ($spacer/2) 12px
margin: 0 0 $spacer
line-height: $line-height
2014-07-12 02:00:18 +02:00
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
2015-07-26 21:41:59 +02:00
@media $breakpoint2
max-height: 500px
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
2015-07-26 21:41:59 +02:00
white-space: pre
2014-07-12 02:00:18 +02:00
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