diff options
Diffstat (limited to 'docs/gen')
| -rw-r--r-- | docs/gen/style.css | 15 | 
1 files changed, 15 insertions, 0 deletions
| diff --git a/docs/gen/style.css b/docs/gen/style.css index 7474846..eb47f5e 100644 --- a/docs/gen/style.css +++ b/docs/gen/style.css @@ -39,6 +39,15 @@  		hyphens: auto;  	} +	figcaption { +		display: inline-block; +		counter-increment: fig; +	} + +	figcaption::before { +		content: "Figure " counter(fig) ": "; +	} +  	table {  		border-collapse: collapse;  		border-style: solid; @@ -90,4 +99,10 @@  		left: 0;  		content: attr(heading-num-fix);  	} + +	img { +		max-width: 13cm; +		display: block; +		margin: 0 auto; +	}  } |