diff options
| author | heavydemon21 <48092678+heavydemon21@users.noreply.github.com> | 2022-11-23 20:32:15 +0100 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-23 20:32:15 +0100 | 
| commit | b0c562297ad257cc1a527f19be64ca30730e843f (patch) | |
| tree | f1fb8b259ca2079c60b9993a52a23fc54f8656ef /docs/gen | |
| parent | 09dd0496ea9cea56aeac2074265633271ac7cbf4 (diff) | |
| parent | 51ade451fa9d5cf9f42f93ad1b20b9231ef3bbeb (diff) | |
Merge branch 'lonkaars:master' into master
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; +	}  }  |