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

57 lines
909 B
SCSS
Raw Normal View History

// ===========================================================================
// CODE
2013-02-11 03:39:30 +01:00
@import "../vendor/solarized";
2013-02-24 07:04:16 +01:00
// Code colors copied from pygments so I can match non-pygmented code
$code-background-color: #f4f4f4 !default;
$code-border-color: #eee !default;
2013-02-09 04:10:33 +01:00
$code-text-color: $midnight-blue !default;
2012-11-28 17:23:08 +01:00
pre,
code {
2013-02-24 07:04:16 +01:00
@extend %source-code-pro;
border: 1px solid #eee;
2013-02-09 04:10:33 +01:00
@include font-size($font-size-small);
2012-11-28 17:23:08 +01:00
background: $code-background-color;
color: $code-text-color;
2013-02-09 04:10:33 +01:00
letter-spacing: -0.05em;
}
code {
padding: .125em .5em;
line-height: $line-height-reset;
2012-11-28 17:23:08 +01:00
}
pre {
2013-02-09 04:10:33 +01:00
margin: .625em 0;
2013-02-24 07:04:16 +01:00
padding: .75em 1em;
2013-02-11 03:39:30 +01:00
text-align: left;
2013-02-09 04:10:33 +01:00
2013-02-24 07:04:16 +01:00
code {
border: 0;
padding: 0;
background: none;
}
}
.highlight {
margin: .625em 0;
code,
pre {
border: 0;
background: none;
}
pre {
margin: {
top: 0;
bottom: 0;
}
}
2012-11-28 17:23:08 +01:00
}