0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-09 00:42:47 +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,7 +423,6 @@ body { counter-reset : phb-page-numbers; }
//Attribute Lists - All text between HRs is red //Attribute Lists - All text between HRs is red
hr ~ :is(dl,p) { hr ~ :is(dl,p) {
color : var(--HB_Color_HeaderText); color : var(--HB_Color_HeaderText);
text-indent: 0;
} }
hr:last-of-type { hr:last-of-type {
& ~ :is(dl,p) { & ~ :is(dl,p) {
@@ -434,6 +433,8 @@ body { counter-reset : phb-page-numbers; }
} }
} }
// Monster Ability table // Monster Ability table
hr + table:first-of-type { hr + table:first-of-type {
margin : 0; margin : 0;
@@ -446,6 +447,10 @@ body { counter-reset : phb-page-numbers; }
tr { background-color : transparent; } tr { background-color : transparent; }
td,th { padding : 0px; } td,th { padding : 0px; }
} }
//indent fix after bulleted lists
:is(ul,ol) + p {
text-indent:0;
}
:last-child { margin-bottom : 0; } :last-child { margin-bottom : 0; }
} }