MediaWiki: Tweeki.css

From Serenes Forest - A Fire Emblem Resource
Jump to: navigation, search
Line 35: Line 35:
 
   left: 0;
 
   left: 0;
 
   background: #FFF;
 
   background: #FFF;
 +
  z-index: -1;
 +
}
 +
 +
tr:nth-child(n+2) th span {
 +
  width: 100%;
 
   border-right: 1px solid #CCC;
 
   border-right: 1px solid #CCC;
  z-index: -1;
 
 
}
 
}
  

Revision as of 06:54, 28 October 2020

div#mw-content-text {
    text-align: center;
}

.table {
  width: auto;
  height: auto;
  max-width: 100vw;
  overflow: auto;
  position: relative;
  display: inline-block;
}

.table table {
  position: relative;
  border-collapse: collapse;
  margin: 0;
}

td,
th {
  padding: 0.25em;
  width: auto;
  text-align: center;
}

td {
    z-index: -2;
    position: relative;
}

tr:nth-child(n+2) th {
  position: -webkit-sticky; /* for Safari */
  position: sticky;
  left: 0;
  background: #FFF;
  z-index: -1;
}

tr:nth-child(n+2) th span {
  width: 100%;
  border-right: 1px solid #CCC;
}

tr:first-child th {
  position: -webkit-sticky; /* for Safari */
  position: sticky;
  top: 0;
  background: #000;
  color: #FFF;
}

tr:nth-child(n+2) td:first-child {
  border-left: 1px solid #CCC;
}