UX: Increasing line-height for headlines in all post content

This commit is contained in:
Kris 2017-12-15 11:29:15 -05:00
parent 5489cd14c7
commit 065c155f81

View File

@ -46,8 +46,11 @@
// global styles for the cooked HTML content in posts (and preview)
.cooked, .d-editor-preview {
word-wrap: break-word;
h1, h2, h3, h4, h5, h6 { margin: 30px 0 10px; }
h1 { line-height: 1em; } /* normalize.css sets h1 font size but not line height */
h1, h2, h3, h4, h5, h6 {
margin: 30px 0 10px;
line-height: 1.25;
}
a { word-wrap: break-word; }
ins { background-color: dark-light-choose($success-low, scale-color($success, $lightness: -60%)); }
del { background-color: dark-light-choose($danger-low, scale-color($danger, $lightness: -60%)); }