Difference between revisions of "MediaWiki:Common.css"

From Locus
Jump to: navigation, search
(Created page with "CSS placed here will be applied to all skins: .profile-table td { background-color: #fff; font-size: 80%; } .profile-table tr > td:first-of-type:not(.data-cell)...")
 
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
 
/* CSS placed here will be applied to all skins */
 
/* CSS placed here will be applied to all skins */
  
 +
.profile-table {
 +
    float:right;
 +
    margin-left:10px;
 +
    font-size:0.9;
 +
    min-width:300px;
 +
}
 
.profile-table td {
 
.profile-table td {
 
     background-color: #fff;
 
     background-color: #fff;
 
     font-size: 80%;
 
     font-size: 80%;
 
}
 
}
.profile-table tr > td:first-of-type:not(.data-cell) {
+
.profile-table tr > .field-cell {
 
     font-weight: bold;
 
     font-weight: bold;
 
     background-color: #f8f9fa;
 
     background-color: #f8f9fa;
 +
    width: 33%;
 
}
 
}
 
.profile-table .image-cell {
 
.profile-table .image-cell {
 
     text-align: center;
 
     text-align: center;
 +
    min-height: 200px;
 +
    height: 200px;
 +
}
 +
.profile-table .header-cell {
 +
    text-align: center;
 +
    font-weight: bold;
 +
    background-color: #f8f9fa;
 
}
 
}

Latest revision as of 20:28, 10 June 2020

/* CSS placed here will be applied to all skins */

.profile-table {
    float:right;
    margin-left:10px;
    font-size:0.9;
    min-width:300px;
}
.profile-table td {
    background-color: #fff;
    font-size: 80%;
}
.profile-table tr > .field-cell {
    font-weight: bold;
    background-color: #f8f9fa;
    width: 33%;
}
.profile-table .image-cell {
    text-align: center;
    min-height: 200px;
    height: 200px;
}
.profile-table .header-cell {
    text-align: center;
    font-weight: bold;
    background-color: #f8f9fa;
}