Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Template:MainPage/styles.css: Difference between revisions

Template page
Created page with ".nohoverzoom a.image { background: transparent !important; border: 0 !important; box-shadow: none !important; padding: 0 !important; } .nohoverzoom a.image img { border: 0 !important; outline: 0 !important; }"
 
No edit summary
Line 1: Line 1:
.nohoverzoom a.image {
.or-headerRow{
   background: transparent !important;
   display:flex;
   border: 0 !important;
   align-items:center;
   box-shadow: none !important;
   justify-content:center;
   padding: 0 !important;
   gap:0.5rem;
  flex-wrap:nowrap;
}
}


.nohoverzoom a.image img {
.or-h1{
   border: 0 !important;
  margin:0;
   outline: 0 !important;
}
 
/* MediaWiki usually wraps [[File:...]] output; kill its default margins */
.or-logo{
   margin:0 !important;
}
 
/* Also remove margins from a figure wrapper if your wiki outputs one */
.or-logo figure{
   margin:0 !important;
}
 
/* Make the actual <img> behave like a flex item (no baseline weirdness) */
.or-logo img{
  display:block;
  height:auto;
}
}

Revision as of 02:26, 1 January 2026

.or-headerRow{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:0.5rem;
  flex-wrap:nowrap;
}

.or-h1{
  margin:0;
}

/* MediaWiki usually wraps [[File:...]] output; kill its default margins */
.or-logo{
  margin:0 !important;
}

/* Also remove margins from a figure wrapper if your wiki outputs one */
.or-logo figure{
  margin:0 !important;
}

/* Make the actual <img> behave like a flex item (no baseline weirdness) */
.or-logo img{
  display:block;
  height:auto;
}