From ff5c7fb316a2998f6ab921cda62a516859aa04d4 Mon Sep 17 00:00:00 2001 From: Boyuan Yang Date: Sun, 27 Aug 2023 15:55:57 -0400 Subject: [PATCH] scss: Adjust width boundry to 1250px --- assets/scss/custom.scss | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/assets/scss/custom.scss b/assets/scss/custom.scss index 9a92dd1..0f37c3f 100644 --- a/assets/scss/custom.scss +++ b/assets/scss/custom.scss @@ -81,16 +81,16 @@ body { //////////////////////////////////////////////////////////////////////// // wowchemy.css:7436 restricts publications page to max width: 1000px. -// we want to get rid of it. set to max width: 1500px. -@media only screen and (min-width: 1001px) and (max-width: 1500px) { +// we want to get rid of it. set to max width: 1250px. +@media only screen and (min-width: 1001px) and (max-width: 1250px) { .universal-wrapper { width: auto; } } -@media only screen and (min-width: 1501px) { +@media only screen and (min-width: 1251px) { .universal-wrapper { - width: 1500px; + width: 1250px; } } @@ -118,12 +118,7 @@ body { /////////////////////////////////////////////////////////////////////// // Enlarge /projects// width -@media (min-width: 1400px) { +@media (min-width: 1300px) { .container-xl, .container-lg, .container-md, .container-sm, .container { - max-width: 1500px; } -} - -@media (min-width: 1600px) { - .container-xl, .container-lg, .container-md, .container-sm, .container { - max-width: 1690px; } + max-width: 1390px; } }