MediaWiki:Common.css: Difference between revisions

From In Next Life Wiki
Jump to navigationJump to search
No edit summary
Tag: Reverted
No edit summary
Tag: Reverted
Line 18: Line 18:




wikitable {
maincontainer {
   table-layout: fixed;
   table-layout: fixed;
   width: 120px;
   width: 120px;
   border: 1px solid red;
   border: 1px solid red;
}
td {
  border: 1px solid blue;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
}

Revision as of 14:37, 1 August 2024

/* CSS placed here will be applied to all skins */

body {

 background-image: url(https://wiki.innextlife.com/images/background.png);
 -webkit-background-size: 100%; 
 -moz-background-size: 100%; 
 -o-background-size: 100%; 
 background-size: 100%; 
 -webkit-background-size: cover; 
 -moz-background-size: cover; 
 -o-background-size: cover; 
 background-size: cover;

 opacity: 85%
 
}


maincontainer {
  table-layout: fixed;
  width: 120px;
  border: 1px solid red;
}