Anonymous
×
Create a new article
Write your page title here:
We currently have 496 articles on WIKI - Idle Pixel. Type your article name above or click on one of the titles below and start writing!



WIKI - Idle Pixel

MediaWiki:Common.css: Difference between revisions

(Created page with "→‎CSS placed here will be applied to all skins: #wpCreateaccount { display:none; } .cosmos-actions-edit .cosmos-button-action { display:none; }")
 
No edit summary
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/*Table style (The default table is "article-table")*/
#wpCreateaccount {
/*Article Table*/
     display:none;
.article-table {
     text-align:center;
    margin-right:auto;
    margin-left:0px;
}
}
.cosmos-actions-edit .cosmos-button-action {
/*Header*/
     display:none;
.article-table th {
    background-color:#000000;
    border: 1px solid white;
    border-collapse: separate;
    padding: 6px;
}
/*Cells*/
.article-table td {
    border: 1px solid white;
    border-collapse: separate;
    padding: 6px;
}
/*Rows*/
.article-table tr {
     background-color:#192834;
}
}

Revision as of 18:38, 14 October 2022

/*Table style (The default table is "article-table")*/
/*Article Table*/
.article-table {
    text-align:center;
    margin-right:auto;
    margin-left:0px;
}
/*Header*/
.article-table th {
    background-color:#000000;
    border: 1px solid white;
    border-collapse: separate;
    padding: 6px;
}
/*Cells*/
.article-table td {
    border: 1px solid white;
    border-collapse: separate;
    padding: 6px;
}
/*Rows*/
.article-table tr {
    background-color:#192834;
}