MediaWiki:Citizen.css: Difference between revisions

MediaWiki interface page
(Created page with "→‎All CSS here will be loaded for users of the Citizen skin: .col-2 { display: flex; flex-wrap: wrap; } .col-2 > * { flex: 1 1 50%; }")
 
mNo edit summary
Line 1: Line 1:
/* All CSS here will be loaded for users of the Citizen skin */
/* All CSS here will be loaded for users of the Citizen skin */


/** Container columns **/
.col-2 {
.col-2 {
   display: flex;
   display: flex;
Line 7: Line 8:
.col-2 > * {
.col-2 > * {
   flex: 1 1 50%;
   flex: 1 1 50%;
}
/** Content columns **/
.columns-2 {
  column-count: 2;
  column-gap: 1.5em;
}
.columns-3 {
  column-count: 3;
  column-gap: 1.5em;
}
}

Revision as of 12:56, 9 February 2024

/* All CSS here will be loaded for users of the Citizen skin */

/** Container columns **/
.col-2 {
  display: flex;
  flex-wrap: wrap;
}
.col-2 > * {
  flex: 1 1 50%;
}

/** Content columns **/
.columns-2 {
  column-count: 2;
  column-gap: 1.5em;
}

.columns-3 {
  column-count: 3;
  column-gap: 1.5em;
}