MediaWiki:Common.css: Difference between revisions

No edit summary
No edit summary
Line 212: Line 212:
.create-page-grid {
.create-page-grid {
   display: grid;
   display: grid;
   grid-template-columns: repeat(5, 1fr);
   grid-template-columns: repeat(3, 1fr) repeat(2, 0);
   grid-template-rows: repeat(5, 1fr);
   grid-template-rows: repeat(3, 1fr) repeat(2, 0);
   grid-column-gap: 16px;
   grid-column-gap: 0px;
   grid-row-gap: 16px;
   grid-row-gap: 0px;
}
}


.create-page-grid .incident { grid-area: 1 / 1 / 3 / 3; }
.create-page-grid .incident { grid-area: 1 / 1 / 3 / 3; }
.create-page-grid .company { grid-area: 1 / 3 / 2 / 4; }
.create-page-grid .company { grid-area: 3 / 1 / 4 / 3; }
.create-page-grid .product-line { grid-area: 2 / 3 / 3 / 4; }
.create-page-grid .product-line { grid-area: 1 / 3 / 2 / 4; }
.create-page-grid .theme { grid-area: 3 / 1 / 4 / 3; }
.create-page-grid .theme { grid-area: 3 / 1 / 4 / 3; }
.create-page-grid .product { grid-area: 3 / 3 / 4 / 4; }
.create-page-grid .product { grid-area: 3 / 3 / 4 / 4; }