sass-site/source/assets/css/foundation/_code.scss
₍˄ุ.͡˳̫.˄ุ₎ b1ebbe2e2a Update _code.scss
Removing stuff that made code blocks fugly on mobile.
2013-10-15 18:23:34 -07:00

40 lines
744 B
SCSS

code,
pre {
@include font-size-small;
font: {
weight: $font-weight-regular;
family: $font-family-code;
}
white-space: pre-wrap;
background: rgba($color-background-shade, .175);
color: $color-text-strong;
@include border-radius(4px);
border: 1px solid #ebebeb;
@include box-sizing(border-box);
}
code {
padding: .25em;
line-height: 0;
}
pre {
@include trailer;
@include rhythm(.5, .5, .5, .5);
@include bleed(1em);
display: block;
overflow-y: auto;
margin: auto 0 25px;
// Account for some code outputs that place code tags in pre tags
code {
@extend %reset-padding;
background: none;
font-size: inherit;
line-height: inherit;
}
&.highlight .err {
background: #fcc;
}
}