MediaWiki:Common.css: Difference between revisions

No edit summary
No edit summary
Line 35: Line 35:
td.newsbox ul li {
td.newsbox ul li {
     font-size: 1.2em;
     font-size: 1.2em;
}
/* make collections box stand out */
table.collectionsbox {
    width:30em;
    margin:auto;
    border:1px solid #dddddd;
    background-color:#ffffe0;
    font-size:10pt;
}
table.collectionsbox td:first-child {
    width: 7em;
}
}

Revision as of 14:23, 6 March 2013

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

/* make main links on homepage look more like buttons */
#homebtns a {
    display: block;
    text-align: center;
    border: 1px solid #ccc;
    background-color: white;
    font-family: 'gill sans','gill sans mt','gill sans mt pro','century gothic',corbel,sans-serif;
    font-size: x-large;
    text-transform: uppercase;
    padding: 0.7ex 1em;
    width: 8em;
    margin: 0.5ex auto 1ex;
}
#homebtns a:hover {
    background-color: #fafafa;
}

/* make table cells of class 'box' stand out */
td.box {
    border: 1px solid #ccc;
    background-color: white;
    padding: 1ex 1em;
}

/* make spans of class 'box' stand out */
span.box {
    border: 1px solid #ccc;
    background-color: white;
    padding: 1em;
}

/* make news items small */
td.newsbox ul li {
    font-size: 1.2em;
}

/* make collections box stand out */
table.collectionsbox {
    width:30em;
    margin:auto;
    border:1px solid #dddddd;
    background-color:#ffffe0;
    font-size:10pt;
}
table.collectionsbox td:first-child {
    width: 7em;
}