Difference between revisions of "MediaWiki:Common.css"

From Myco Enthusiasm
Jump to navigation Jump to search
Line 9: Line 9:
 
}
 
}
  
@media (max-width: 600px) {
+
@media (max-device-width: 600px) {
 
   #mw-content-text p, #mw-content-text ol {
 
   #mw-content-text p, #mw-content-text ol {
 
     margin-bottom: 3rem;
 
     margin-bottom: 3rem;

Revision as of 08:55, 2 September 2020

/* CSS placed here will be applied to all skins */
#bodyContent {
  max-width: 750px; margin-left: 10px; margin-right:auto; padding: 0; 
}

#mw-content-text p, #mw-content-text ol {
  margin-bottom: 5rem;
  background-color: red;
}

@media (max-device-width: 600px) {
  #mw-content-text p, #mw-content-text ol {
    margin-bottom: 3rem;
  background-color: blue;
  }
}