User:Ondo/common.css: Difference between revisions

No edit summary
(Blanked the page)
 
(36 intermediate revisions by 2 users not shown)
Line 1: Line 1:
.main-page-header {
 
grid-area: header;
}
.main-page-about {
grid-area: about;
}
.main-page-whatsnonbinary {
grid-area: whatsnonbinary;
}
.main-page-getinvolved {
grid-area: getinvolved;
}
.main-page-featuredarticle {
grid-area: featuredarticle;
}
.main-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-template-rows: auto auto auto;
  grid-template-areas:
    'header header'
    'about whatsnonbinary'
    'getinvolved featuredarticle';
  grid-gap: 10px;
}

Latest revision as of 20:34, 19 July 2020