User:2257/monobook.css: Difference between revisions

From the Super Mario Wiki, the Mario encyclopedia
Jump to navigationJump to search
No edit summary
No edit summary
Line 31: Line 31:
}
}


         table.statstable > tr.columnheaders > th {
         table.statstable > tr.columnheaders > th,
        table.statstable > * > tr.columnheaders > th {
                 min-width: 2em;
                 min-width: 2em;
border: none;
border: none;
Line 41: Line 42:
         }
         }


         table.statstable > tr.columnheaders > th > div:not([role]) {
         table.statstable > tr.columnheaders > th > div:not([role]),
        table.statstable > * > tr.columnheaders > th > div:not([role]) {
                 transform: rotate(-45deg);
                 transform: rotate(-45deg);
                 position: absolute;
                 position: absolute;
Line 51: Line 53:
         }
         }


         table.statstable > tr.columnheaders > th > div[role="presentation"] {
         table.statstable > tr.columnheaders > th > div[role="presentation"],
        table.statstable > * > tr.columnheaders > th > div[role="presentation"] {
                 writing-mode: tb;
                 writing-mode: tb;
                 font-size: 71%;
                 font-size: 71%;
                 visibility: hidden;
                 visibility: hidden;
         }
         }

Revision as of 21:33, January 22, 2018

	table.statstable {
		margin: 1em 0;
		background-color: #transparent;
		border: 1px solid #aaa;
		border-collapse: collapse;
		color: black;
		text-align: center;
		border-spacing: 0;
		margin-bottom: 5px;
		width: -moz-max-content; 
		width: -webkit-max-content;
		width: max-content;
	}
	
	table.statstable > tr > th,
	table.statstable > tr > td,
	table.statstable > * > tr > th,
	table.statstable > * > tr > td {
		border: 1px solid #aaa;
		padding: 0.2em 0.4em;
	}
	
	table.statstable > tr > th,
	table.statstable > * > tr > th {
		background-color: #f2f2f2;
		text-align: center;
	}
	
	table.statstable > caption {
		font-weight: bold;
	}

        table.statstable > tr.columnheaders > th,
        table.statstable > * > tr.columnheaders > th {
                min-width: 2em;
		border: none;
		background: transparent;
                position: relative;
                background: transparent;
                white-space: nowrap;
                pointer-events: none;
        }

        table.statstable > tr.columnheaders > th > div:not([role]),
        table.statstable > * > tr.columnheaders > th > div:not([role]) {
                transform: rotate(-45deg);
                position: absolute;
                bottom: -1px;
                left: 100%;
                transform-origin: 0% 100%;
                border-bottom: 1px solid #aaa;
                pointer-events: all;
        }

        table.statstable > tr.columnheaders > th > div[role="presentation"],
        table.statstable > * > tr.columnheaders > th > div[role="presentation"] {
                writing-mode: tb;
                font-size: 71%;
                visibility: hidden;
        }