Fix #83, spacing is reduced between two consecutive headings
This commit is contained in:
parent
8a4d744dc1
commit
5b9d8ee6ac
|
@ -16,6 +16,15 @@ h2,
|
||||||
h3 {
|
h3 {
|
||||||
margin-top: 2.5em;
|
margin-top: 2.5em;
|
||||||
}
|
}
|
||||||
|
h4,
|
||||||
|
h5 {
|
||||||
|
margin-top: 2em;
|
||||||
|
}
|
||||||
|
.header + .header h3,
|
||||||
|
.header + .header h4,
|
||||||
|
.header + .header h5 {
|
||||||
|
margin-top: 1em;
|
||||||
|
}
|
||||||
.sidebar {
|
.sidebar {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 0;
|
left: 0;
|
||||||
|
|
|
@ -33,7 +33,7 @@ $( document ).ready(function() {
|
||||||
|
|
||||||
// Add anchors for all content headers
|
// Add anchors for all content headers
|
||||||
content.find("h1, h2, h3, h4, h5").wrap(function(){
|
content.find("h1, h2, h3, h4, h5").wrap(function(){
|
||||||
var wrapper = $("<a>");
|
var wrapper = $("<a class=\"header\">");
|
||||||
wrapper.attr("name", $(this).text());
|
wrapper.attr("name", $(this).text());
|
||||||
return wrapper;
|
return wrapper;
|
||||||
});
|
});
|
||||||
|
|
|
@ -16,3 +16,6 @@ html, body {
|
||||||
}
|
}
|
||||||
|
|
||||||
h2, h3 { margin-top: 2.5em }
|
h2, h3 { margin-top: 2.5em }
|
||||||
|
h4, h5 { margin-top: 2em }
|
||||||
|
|
||||||
|
.header + .header h3, .header + .header h4, .header + .header h5 { margin-top: 1em }
|
||||||
|
|
Loading…
Reference in New Issue