0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-06 20:52:40 +00:00

Definition List to Markdown Extension. New syntax.

This commit is contained in:
Trevor Buckner
2021-07-19 20:04:25 -04:00
parent fcbbe46861
commit 64d133f8f6
4 changed files with 65 additions and 27 deletions

View File

@@ -283,11 +283,6 @@ body {
dl {
.useSansSerif();
color : @headerText;
padding-left :1.3em;
text-indent :-1.3em;
}
dd {
text-indent : 0px;
}
// Monster Ability table
@@ -581,17 +576,26 @@ body {
// * DEFINITION LISTS
// *****************************/
.page {
// dl {
// margin-top: 10px;
// }
dl {
line-height : 1.3em;
padding-left : 1em;
text-indent : -1em;
}
dl + p {
margin-top: 0.5em;
}
p + dl {
margin-top: -0.5em;
}
dt {
float: left;
//clear: left; //Doesn't seem necessary
margin-right: 5px;
}
// dd {
// margin-left: 0px;
// }
dd {
margin-left : 0px;
text-indent : 0px;
}
}
//*****************************