MediaWiki:Common.css

From kubu
Revision as of 13:05, 24 July 2024 by Erland (talk | contribs)
Jump to navigationJump to search

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: 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: #0000A040;
	border: #0000A080;
	border-radius: 10px;
}