Toggle menu
648
116
71
6.9K
Landrace.Wiki - The Landrace Cannabis Wiki
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Common.css: Difference between revisions

MediaWiki interface page
No edit summary
No edit summary
Line 22: Line 22:
}
}


/* === Fix gap above lead text === */
/* Force lead text level with infobox */
.mw-parser-output > section:first-of-type {
  margin-top: 0;
  padding-top: 0;
}
 
.mw-parser-output > section:first-of-type > p {
  margin-top: 0;
}
 
.mw-parser-output > section:first-of-type > p:empty {
.mw-parser-output > section:first-of-type > p:empty {
   display: none;
   display: none;
Line 29: Line 38:
.mw-parser-output > section:first-of-type > p:first-of-type > br:first-child {
.mw-parser-output > section:first-of-type > p:first-of-type > br:first-child {
   display: none;
   display: none;
}
.mw-parser-output > section:first-of-type > table.infobox + p {
  margin-top: 0;
}
}

Revision as of 02:58, 12 January 2026

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

/* === Map Container === */
.lw-map {
  height: 70vh;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  margin: 24px 0;
}

/* === Map Fullscreen Overlay (disabled for now) === */
.lw-map-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
}

/* Force lead text level with infobox */
.mw-parser-output > section:first-of-type {
  margin-top: 0;
  padding-top: 0;
}

.mw-parser-output > section:first-of-type > p {
  margin-top: 0;
}

.mw-parser-output > section:first-of-type > p:empty {
  display: none;
}

.mw-parser-output > section:first-of-type > p:first-of-type > br:first-child {
  display: none;
}