sass-site/source/assets/stylesheets/foundation/_code.scss

23 lines
406 B
SCSS
Raw Normal View History

// ===========================================================================
// CODE
2012-11-28 17:23:08 +01:00
pre,
code {
@extend %source-code-pro-regular;
padding: .5em 1em;
@include font-size($font-size-small, $line-height-heading);
letter-spacing: -0.05em;
background: $code-background-color;
color: $code-text-color;
}
pre {
line-height: $line-height;
code {
padding: 0;
background: none;
}
}