MediaWiki:Timeless.css: Difference between revisions

MediaWiki interface page
(Created page with "→‎CSS placed here will affect users of the Timeless skin: tr.hiddenStructure { display: none; } table.infobox { float: right; border: 1px solid; margin: 2...")
 
("dd" edit)
 
(5 intermediate revisions by the same user not shown)
Line 7: Line 7:
table.infobox {
table.infobox {
     float: right;
     float: right;
     border: 1px solid;
     border: 1px solid #f0f0f0;
     margin: 2px;
    border-collapse: collapse;
     margin: 10px;
     padding: 10px;
     padding: 10px;
    width:200px;
}
.infobox tr {
  border-bottom: 1px solid #f0f0f0 !important;
  padding: 8px;
}
.mw-body dd {
    margin-bottom: 0em; /* changing from 1em to 0em to remove unnecessary whitespace */
}
}

Latest revision as of 02:04, 13 June 2019

/* CSS placed here will affect users of the Timeless skin */

tr.hiddenStructure {
    display: none;
}

table.infobox {
    float: right;
    border: 1px solid #f0f0f0;
    border-collapse: collapse;
    margin: 10px;
    padding: 10px;
    width:200px;
}

.infobox tr {
   border-bottom: 1px solid #f0f0f0 !important;
   padding: 8px;
}

.mw-body dd {
    margin-bottom: 0em; /* changing from 1em to 0em to remove unnecessary whitespace */
}