mirror of
https://github.com/danog/sass-site.git
synced 2024-12-13 09:57:35 +01:00
30 lines
510 B
SCSS
30 lines
510 B
SCSS
// ===========================================================================
|
|
// CODE
|
|
|
|
|
|
|
|
$code-background-color: $iron !default;
|
|
$code-text-color: $midnight-blue !default;
|
|
|
|
|
|
|
|
pre,
|
|
code {
|
|
@extend %source-code-pro-regular;
|
|
@include font-size($font-size-small);
|
|
background: $code-background-color;
|
|
color: $code-text-color;
|
|
letter-spacing: -0.05em;
|
|
}
|
|
|
|
code {
|
|
padding: .125em .5em;
|
|
line-height: $line-height-reset;
|
|
}
|
|
|
|
pre {
|
|
margin: .625em 0;
|
|
padding: 1em;
|
|
|
|
code { padding: 0; }
|
|
} |