MediaWiki:Common.css: Difference between revisions

From kubu
Jump to navigationJump to search
Created page with "CSS placed here will be applied to all skins: .no-edit-button .mw-editsection { display: none; }"
 
No edit summary
Tag: Reverted
Line 3: Line 3:
     display: none;
     display: none;
}
}
.container { 
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas:
    "aloita ."
    ". ."
    "problems .";
}
.aloita { grid-area: aloita; }
.problems { grid-area: problems; }

Revision as of 12:59, 24 July 2024

/* CSS placed here will be applied to all skins */
.no-edit-button .mw-editsection {
    display: none;
}
.container {  
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas:
    "aloita ."
    ". ."
    "problems .";
}

.aloita { grid-area: aloita; }

.problems { grid-area: problems; }