Santa Fe Institute Collaboration Platform

COMPLEX TIME: Adaptation, Aging, & Arrow of Time

Get Involved!
Contact: Caitlin Lorraine McShea, Program Manager, cmcshea@santafe.edu

Difference between revisions of "MediaWiki:Common.css"

From Complex Time
Line 23: Line 23:
 
}
 
}
  
 +
/* To workaround for jumping header which increases it in size */
 
@media (max-width: 1056px) {
 
@media (max-width: 1056px) {
 
   .sticky-content {
 
   .sticky-content {
 
     top: 100px;
 
     top: 100px;
 +
  }
 +
}
 +
 +
@media (max-width: 768px) {
 +
  .sticky-content {
 +
    top: 50px;
 
   }  
 
   }  
 
}
 
}

Revision as of 19:48, February 12, 2019

/* CSS placed here will be applied to all skins */


.sysop-show, .user-show {
	display: none;
}
/*
.popupform-wrapper .popupform-container .popupform-innercontainer {
    height: 80%;
    width: 80%;
}
*/
@supports (-webkit-overflow-scrolling: touch) {
   .popupform-wrapper .popupform-container div.popupform-innercontainer {
      overflow-y: scroll !important;
      -webkit-overflow-scrolling: touch !important;
   }
}

.sticky-content {
  position: sticky;
  top: 50px;
}

/* To workaround for jumping header which increases it in size */
@media (max-width: 1056px) {
  .sticky-content {
    top: 100px;
  } 
}

@media (max-width: 768px) {
  .sticky-content {
    top: 50px;
  } 
}