From 81fc0f1b7b34690e126eb0d8f26b3daf5033fcfa Mon Sep 17 00:00:00 2001 From: Lucy Cifferello Date: Fri, 9 Oct 2020 11:26:45 -0600 Subject: [PATCH] fix width on large screens --- source/_static/default.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/source/_static/default.css b/source/_static/default.css index f07e090..ac95bde 100644 --- a/source/_static/default.css +++ b/source/_static/default.css @@ -89,6 +89,15 @@ code { color: #ff4960; } +@media (min-width: 1200px){ + .container, .container-lg, .container-md, .container-sm, .container-xl { + max-width: 2200px; +} + +.container-fluid, .container-lg, .container-md, .container-sm, .container-xl { + width: 80%; +} + .admonition { width: 80%; }