From f90427a038a06c0eff91738028c81f8c5462d93d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adriana=20Ceri=C4=87?= <62163307+AdrianaCeric@users.noreply.github.com> Date: Fri, 15 Sep 2023 10:02:15 -0400 Subject: [PATCH] docs: update styling --- docs/style.css | 33 +++++++++++++++++++++++++-------- 1 file changed, 25 insertions(+), 8 deletions(-) diff --git a/docs/style.css b/docs/style.css index 470c0d2f5..358d2eafe 100644 --- a/docs/style.css +++ b/docs/style.css @@ -1,19 +1,36 @@ -img[alt=screenshot] { width: 100%; } +body { + font-family: Arial, Helvetica, sans-serif; +} + +h1, h2, h3 { + color: #015f97; + font-family: Arial, Helvetica, sans-serif; +} + +.img-center { + margin-left: auto; + margin-right: auto; + width: 300px; +} + +/* Make all images responsive */ img { display: block; margin: auto; } + +img[alt=screenshot] { + width: 100%; +} + +/* Center all iframes */ iframe { display: block; margin: 12px auto; } -/*Ignore first heading in page in TOC list*/ + +/* Ignore the first heading in the page in TOC list */ li.toctree-l3:first-child { - display: none; + display: none; } -.img-center { - width: 300px; - margin-left: auto; - margin-right: auto; -}