MediaWiki:Common.css: Difference between revisions

No edit summary
No edit summary
 
(36 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* ------------------
--- General Style ---
------------------ */
:root {
  color-scheme: light !important;
}
:root, .skin-invert, .no-theme {
}
/* -----------------
/* -----------------
--- Infoboxes ---
--- Infoboxes ---
Line 4: Line 16:


.infobox {
.infobox {
  background-color: #f8f9fa;
   border: 1px solid #a2a9b1;
   border: 1px solid #a2a9b1;
   color: black;
   color: #000;
   padding: .2em;
   padding: .2em;
   font-size: .9em;
   font-size: .9em;
Line 28: Line 39:


.infobox .infobox-caption {
.infobox .infobox-caption {
   font-size: .9em;
   font-weight: normal !important;
   text-align: center !important;
   text-align: center !important;
}
}
Line 35: Line 46:
   font-size: 1.1em;
   font-size: 1.1em;
   font-weight: bold;
   font-weight: bold;
  text-align: center !important;
}
}


Line 41: Line 53:
}
}


.infobox .infobox-caption {
/* Fixes weird stretching bug with the Vector skin */
   text-align: center;
.infobox img {
   display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}
}


@media (max-width: 640px) {
@media (max-width: 640px) {
   .infobox {
   .infobox {
    width: 100%;
     float: none;
     float: none;
     clear: both;
     clear: both;
    width: 100% !important;
     margin: 0 0 1em 0;
     margin: 0 0 1em 0;
     table-layout: fixed;
     table-layout: fixed;
   }
   }
 
    
   .infobox th,
  .infobox td {
    width: 100% !important;
  }
   
   .infobox .nowrap {
   .infobox .nowrap {
     white-space: normal;
     white-space: normal;
Line 74: Line 85:
     width: 22em;
     width: 22em;
   }
   }
}
/* Fixes weird stretching bug on Vector */
.infobox img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}
}