0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-25 18:22:42 +00:00

i don't know why i didn't do this last time

This commit is contained in:
Víctor Losada Hernández
2023-11-12 00:28:43 +01:00
parent 35bde09aa7
commit d31dae728f

View File

@@ -423,8 +423,7 @@ body { counter-reset : phb-page-numbers; }
//Attribute Lists - All text between HRs is red
hr ~ :is(dl,p) {
color : var(--HB_Color_HeaderText);
text-indent: 0;
}
}
hr:last-of-type {
& ~ :is(dl,p) {
color : inherit; // After the HRs, reset text to black
@@ -433,6 +432,8 @@ body { counter-reset : phb-page-numbers; }
margin-top : 0.325cm; // Space after last HR
}
}
// Monster Ability table
hr + table:first-of-type {
@@ -446,6 +447,10 @@ body { counter-reset : phb-page-numbers; }
tr { background-color : transparent; }
td,th { padding : 0px; }
}
//indent fix after bulleted lists
:is(ul,ol) + p {
text-indent:0;
}
:last-child { margin-bottom : 0; }
}