From b640b6b4fdf9cad9ccbb6ed121b07d2fa920f361 Mon Sep 17 00:00:00 2001 From: Jean-Paul Pelteret Date: Wed, 9 May 2018 10:35:30 +0200 Subject: [PATCH] Add CSS environment for three column layout --- doc/doxygen/stylesheet.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/doc/doxygen/stylesheet.css b/doc/doxygen/stylesheet.css index cb455ae1c6..fb64fdfe9f 100644 --- a/doc/doxygen/stylesheet.css +++ b/doc/doxygen/stylesheet.css @@ -46,6 +46,18 @@ div.image img[src="fe_enriched_h-refinement.png"] { width:500px; } +/* + * environment for aligning pictures in three columns. + */ +.threecolumn { + display: grid; + grid-template-columns: 1fr 1fr 1fr; + grid-column-gap: 5%; + grid-row-gap: 5%; + margin-left: auto; + margin-right: auto; +} + /* * environment for aligning pictures in two columns. */ -- 2.39.5