MediaWiki:Common.css: Difference between revisions

From In Next Life Wiki
Jump to navigationJump to search
No edit summary
Tag: Reverted
Change headers' font size
 
(14 intermediate revisions by the same user not shown)
Line 3: Line 3:
body {
body {


background-color: #dad3bf;
/*
  background-image: url(https://wiki.innextlife.com/images/background.png);
  background-image: url(https://wiki.innextlife.com/images/background.png);
  -webkit-background-size: 100%;  
  -webkit-background-size: 100%;  
Line 14: Line 17:


  opacity: 85%
  opacity: 85%
*/
   
   
}
}


table {
h1 { font-size: 36px; }
  table-layout: fixed;
h2 { font-size: 24px; }
  width: 120px;
h3 { font-size: 20px; }
  border: 1px solid red;
h4 { font-size: 16px; }
}
 
td {
  border: 1px solid blue;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

Latest revision as of 10:59, 28 February 2025

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

body {

background-color: #dad3bf;

/*
 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%
*/
 
}

h1 { font-size: 36px; }
h2 { font-size: 24px; }
h3 { font-size: 20px; }
h4 { font-size: 16px; }