TESO Wiki

We've Moved! Just as Gamepedia has joined forces with Fandom, this wiki had joined forces with our Fandom equivalent. The wiki has been archived and we ask that readers and editors move to the now combined wiki on Fandom. Click to go to the new wiki.

READ MORE

TESO Wiki
No edit summary
Line 1: Line 1:
 
/* CSS placed here will be applied to all skins */
 
/* CSS placed here will be applied to all skins */
  +
/* This governs the sections on the Community portal */
  +
.cpbox {
  +
display: flex;
  +
flex-direction: row-reverse;
  +
flex-wrap: wrap;
  +
}
  +
  +
.cpbox #admins {
  +
box-sizing: border-box;
  +
width: calc(33% - 10px);
  +
margin: 5px;
  +
flex-grow: 1;
  +
min-width: 300px;
  +
}
  +
  +
.cpbox #help {
  +
box-sizing: border-box;
  +
width: calc(67% - 10px);
  +
margin: 5px;
  +
flex-grow: 1;
  +
}

Revision as of 11:04, 22 July 2019

/* CSS placed here will be applied to all skins */
/* This governs the sections on the Community portal */
.cpbox {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
}

.cpbox #admins {
    box-sizing: border-box;
    width: calc(33% - 10px);
    margin: 5px;
    flex-grow: 1;
    min-width: 300px;
}

.cpbox #help {
    box-sizing: border-box;
    width: calc(67% - 10px);
    margin: 5px;
    flex-grow: 1;
}