MediaWiki:Common.css

From Schtserv Blue Burst Wiki
Jump to navigation Jump to search

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/* CSS placed here will be applied to all skins */
.bb-dtable {
    width:100;
    
}

.bb-dtable td {
 text-align:center;
    font-size:0.8rem;
 padding:5px
}



.bb-dtable td p {
    text-align:center;
    padding:0px;
    margin:0px;
    font-size:0.8rem;
    color:grey;
}

.bb-dtable tr:first-child {
    text-align:center;
    text-transform:uppercase;
}

.bb-dtable tr > td:first-child {
    text-transform:capitalize;
    background-color:rgb(69, 69, 69);
    color:white;
    text-align:right;
    padding:10px;
    font-style:italic;
}

.bb-dtable tr:first-child > :nth-child(2) {
    background-color:green;
    color:white;
    
}
.bb-dtable tr:first-child > :nth-child(3) {
    background-color:lime;
    
}
.bb-dtable tr:first-child > :nth-child(4) {
    background-color:cyan;
    
}
.bb-dtable tr:first-child > :nth-child(5) {
    background-color:blue;
    color:white;
    
}
.bb-dtable tr:first-child > :nth-child(6) {
    background-color:purple;
    color:white;
    
}
.bb-dtable tr:first-child > :nth-child(7) {
    background-color:pink;
    
}
.bb-dtable tr:first-child > :nth-child(8) {
    background-color:red;
    color:white;
    
}
.bb-dtable tr:first-child > :nth-child(9) {
    background-color:orange;
    
}
.bb-dtable tr:first-child > :nth-child(10) {
    background-color:yellow;
    
}
.bb-dtable tr:first-child > :nth-child(11) {
    background-color:rgb(230, 230, 230);
    
}

.bb-dtable td:nth-child(2) {
    background-color:rgba(0, 128, 0, 0.2);
}

.bb-dtable td:nth-child(3) {
    background-color:rgba(0, 255, 0, 0.2);
}

.bb-dtable td:nth-child(4) {
    background-color:rgba(0, 255, 255, 0.2);
}

.bb-dtable td:nth-child(5) {
    background-color:rgba(0, 0, 255, 0.2);
}

.bb-dtable td:nth-child(6) {
    background-color:rgba(128, 0, 128, 0.2);
}

.bb-dtable td:nth-child(7) {
    background-color:rgba(255, 193, 203, 0.2);
}

.bb-dtable td:nth-child(8) {
    background-color:rgba(255, 0, 0, 0.2);
}

.bb-dtable td:nth-child(9) {
    background-color:rgba(255, 165, 0, 0.2);
}

.bb-dtable td:nth-child(10) {
    background-color:rgba(255, 255, 0, 0.2);
}

.bb-dtable td:nth-child(11) {
    background-color:rgb(230, 230, 230, 0.2);
}