Fixed #25: Highlight inline fenced blocks

This commit is contained in:
squidfunk 2016-05-11 18:31:15 +02:00
parent 25a102f2b4
commit 0f5c43df0c
7 changed files with 13 additions and 5 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -53,7 +53,7 @@
font-style: normal;
}
</style>
<link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application-54f87043f3.css">
<link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application-1a080b68f4.css">
{% if config.extra.palette %}
<link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/palettes-05ab2406df.css">
{% endif %}

View File

@ -2,6 +2,6 @@
"assets/images/favicon.ico": "assets/images/favicon-e565ddfa3b.ico",
"assets/javascripts/application.js": "assets/javascripts/application-997097ee0c.js",
"assets/javascripts/modernizr.js": "assets/javascripts/modernizr-4ab42b99fd.js",
"assets/stylesheets/application.css": "assets/stylesheets/application-54f87043f3.css",
"assets/stylesheets/application.css": "assets/stylesheets/application-1a080b68f4.css",
"assets/stylesheets/palettes.css": "assets/stylesheets/palettes-05ab2406df.css"
}

View File

@ -46,10 +46,17 @@
/*
* Headlines, chapters, links and inline code
*/
h1, h2, a, code {
h1, h2, a {
color: $primary;
}
/*
* Inline code
*/
code {
background: #eee;
}
/*
* Lower border for main headline
*/

View File

@ -190,6 +190,7 @@
*/
p > code {
white-space: nowrap;
padding: 2px 4px;
}
/*