MediaWiki:Common.css: Difference between revisions

From kubu
Jump to navigationJump to search
No edit summary
Tag: Reverted
No edit summary
Tag: Manual revert
 
(5 intermediate revisions by the same user not shown)
Line 2: Line 2:
.no-edit-button .mw-editsection {
.no-edit-button .mw-editsection {
     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 nayttelyt"
    ". ."
    "problems .";
}
.aloita { grid-area: aloita; }
.nayttelyt { grid-area: nayttelyt; }
.problems { grid-area: problems; }
.aloita,.nayttelyt,.problems {
background: #0087BD40;
border: #0087BD80;
border-radius: 10px;
}
}

Latest revision as of 11:58, 26 July 2024

/* CSS placed here will be applied to all skins */
.no-edit-button .mw-editsection {
    display: none;
}