MediaWiki:Common.css: Difference between revisions

From In Next Life Wiki
Jump to navigationJump to search
No edit summary
Tag: Manual revert
No edit summary
Tag: Reverted
Line 15: Line 15:
  opacity: 85%
  opacity: 85%
   
   
}
table {
  table-layout: fixed;
  width: 120px;
  border: 1px solid red;
}
td {
  border: 1px solid blue;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
}

Revision as of 14:34, 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%
 
}

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

td {
  border: 1px solid blue;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}