MediaWiki:Common.css: Difference between revisions

From Firrhna Project Wiki
Jump to navigationJump to search
(Created page with "→‎CSS placed here will be applied to all skins: .infobox { background: #eee; border: 1px solid #aaa; float: right; margin: 0 0 1em 1em; padding: 1em; width: 400px; } .infobox-title { font-size: 2em; text-align: center; } .infobox-image { text-align: center; } .infobox th { text-align: right; vertical-align: top; width: 120px; } .infobox td { vertical-align: top; }")
 
mNo edit summary
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */
.infobox {
.infobox {
     background: #eee;
     background: #1b001f;
     border: 1px solid #aaa;
     border: 1px solid rgba(111,2,124,128);
color: #fff;
     float: right;
     float: right;
     margin: 0 0 1em 1em;
     clear: right;
     padding: 1em;
     margin: 0 0 18px 18px;
     width: 400px;
     width: 270px;
}
}
.infobox-title {
.infobox-title {
     font-size: 2em;
background: #6f027c;
     font-size: 18px;
    font-weight: 700;
     text-align: center;
     text-align: center;
    border-bottom: 0;
}
}
.infobox-image {
.infobox-image {
Line 19: Line 23:
     vertical-align: top;
     vertical-align: top;
     width: 120px;
     width: 120px;
}
.infobox-header th {
text-align: center;
vertical-align: top;
}
}
.infobox td {
.infobox td {
     vertical-align: top;
     vertical-align: top;
}
}

Revision as of 19:20, 2 June 2022

/* CSS placed here will be applied to all skins */
.infobox {
    background: #1b001f;
    border: 1px solid rgba(111,2,124,128);
	color: #fff;
    float: right;
    clear: right;
    margin: 0 0 18px 18px;
    width: 270px;
}
.infobox-title {
	background: #6f027c;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    border-bottom: 0;
}
.infobox-image {
    text-align: center;
}
.infobox th {
    text-align: right;
    vertical-align: top;
    width: 120px;
}
.infobox-header th {
	text-align: center;
	vertical-align: top;
}
.infobox td {
    vertical-align: top;
}