Merge pull request #22 from go-gitea/feature/code-style

Set $code-color and add padding to <pre>
This commit is contained in:
Thomas Boerger 2016-12-23 01:19:07 +01:00 committed by GitHub
commit 1cd9075145
2 changed files with 6 additions and 0 deletions

View File

@ -12,3 +12,4 @@ $divider-color: #BDBDBD;
//Set bootstrap colors
$brand-primary: $primary-color;
$body-color: $primary-text-color;
$code-color: darken($accent-color, 10);

View File

@ -32,6 +32,11 @@
.content {
margin: 64px auto;
pre {
padding: 16px;
background-color: $code-bg;
}
blockquote{
@extend .blockquote;
}