MediaWiki:Common.css
From kubu
Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* 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: 1em 1em;
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: #0087BDFF solid 1px;
border-radius: 10px;
}