MediaWiki:Common.css: Difference between revisions

From kubu
Jump to navigationJump to search
No edit summary
Tag: Reverted
No edit summary
Tag: Reverted
Line 19: Line 19:
.problems { grid-area: problems; }
.problems { grid-area: problems; }
.aloita,.nayttelyt,.problems {
.aloita,.nayttelyt,.problems {
background: #0000A040;
background: #0087BD40;
border: #0000A080;
border: #0087BD80;
border-radius: 10px;
border-radius: 10px;
}
}

Revision as of 13:06, 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 nayttelyt"
    ". ."
    "problems .";
}

.aloita { grid-area: aloita; }
.nayttelyt { grid-area: nayttelyt; }
.problems { grid-area: problems; }
.aloita,.nayttelyt,.problems {
	background: #0087BD40;
	border: #0087BD80;
	border-radius: 10px;
}