577a2c68aee5d65c5b3e7bf92427c8ed6074dab5
max
  Fri Jun 25 04:16:55 2021 -0700
moving the main warning box back to the middle of the screen, refs #27677

diff --git src/hg/htdocs/style/HGStyle.css src/hg/htdocs/style/HGStyle.css
index 80cdfe7..bb91fb9 100644
--- src/hg/htdocs/style/HGStyle.css
+++ src/hg/htdocs/style/HGStyle.css
@@ -711,30 +711,36 @@
 	
 body.oldStaticPage .sectionContent {
 	padding: 0 14px;
 }
 
 #hgFindResults {
         padding: 1em;
 }
 
 #warnBox {
     background-color: Beige;
     border: 3px ridge DarkRed;
     padding:10px; 
     margin:10px;
     text-align:left;
+    position: absolute;
+    top: 50%;
+    left: 50%;
+    transform: translate(-50%, -50%);
+    z-index: 10000;
+    width: 800px;
 }
 
 #warnHead {
     color: DarkRed;
 }
 
 /* like warnBox, but under the menu, not in the middle of the screen */
 #notifBox {
     background-color: beige;
     border: 1px solid grey;
     padding: 5px; 
     margin: 5px;
     text-align: left;
 }