MediaWiki

Group-Grouse.css: Difference between revisions

From Grouse House Wiki

No edit summary
No edit summary
Line 30: Line 30:


#decorModal {
#decorModal {
   display: none; /* Hidden by default */
   display: none;
   position: fixed; /* Stay in place */
   position: fixed;
   z-index: 1; /* Sit on top */
   z-index: 999;
   left: 0;
   left: 0;
   top: 0;
   top: 0;
   width: 100%; /* Full width */
   width: 100%;
   height: 100%; /* Full height */
   height: 100%;
   overflow: auto; /* Enable scroll if needed */
   overflow: auto;
   background-color: rgb(0,0,0); /* Fallback color */
   background-color: rgb(0,0,0);
   background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
   background-color: rgba(0,0,0,0.4);
}
}


#decorModalContent {
#decorModalContent {
   background-color: #fefefe;
   background-color: #fefefe;
   margin: 15% auto; /* 15% from the top and centered */
   margin: 15% auto;
   padding: 20px;
   padding: 20px;
   border: 1px solid #888;
   border: 1px solid #888;
   width: 80%; /* Could be more or less, depending on screen size */
   width: 80%;
}
}



Revision as of 02:39, 23 February 2024

.mw-headline + .mw-editsection {
  display: none;
}

h2 {
font-size: 0em;
}

h2.c-header.active {
font-size: 1.3em;
}

h2.c-header.hidden {
font-size: 1.3em;
}

h3 {
font-size: 0em;
}

h3.c-header.active {
font-size: 1.1em;
}

h3.c-header.hidden {
font-size: 1.1em;
}

/* Testing */

#decorModal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);
}

#decorModalContent {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}