MediaWiki:Common.css: Difference between revisions

From CommunityData
(Created page with "→‎CSS placed here will be applied to all skins: .infobox { border: 1px solid #a2a9b1; border-spacing: 3px; background-color: #f8f9fa; color: black; /*...")
 
No edit summary
Line 26: Line 26:
     /* @noflip */
     /* @noflip */
     text-align: left;
     text-align: left;
}
/* Community Data Science specific styles */
.cc_navBar {
    width:400px;
    height:80px;
    -webkit-border-radius: 0px 0px 25px 25px;
    -moz-border-radius: 0px 0px 25px 25px;
    border-radius: 0px 0px 25px 25px;
    border:2px solid #A7D7F9;
    background-color:#FFFFFF;
    -webkit-box-shadow: #B3B3B3 1px 1px 1px;
    -moz-box-shadow: #B3B3B3 1px 1px 1px;
    box-shadow: #B3B3B3 1px 1px 1px;
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-weight: bold;
}
.cc_navBarContent {
    position: inherit;
    top: 50px;
    width: 100%;
}
}

Revision as of 23:43, 22 January 2017

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

.infobox {
    border: 1px solid #a2a9b1;
    border-spacing: 3px;
    background-color: #f8f9fa;
    color: black;
    /* @noflip */
    margin: 0.5em 0 0.5em 1em;
    padding: 0.2em;
    /* @noflip */
    float: right;
    /* @noflip */
    clear: right;
    font-size: 88%;
    line-height: 1.5em;
}
.infobox caption {
    font-size: 125%;
    font-weight: bold;
    padding: 0.2em;
}
.infobox td,
.infobox th {
    vertical-align: top;
    /* @noflip */
    text-align: left;
}

/* Community Data Science specific styles */
.cc_navBar {
    width:400px;
    height:80px;
    -webkit-border-radius: 0px 0px 25px 25px;
    -moz-border-radius: 0px 0px 25px 25px;
    border-radius: 0px 0px 25px 25px;
    border:2px solid #A7D7F9;
    background-color:#FFFFFF;
    -webkit-box-shadow: #B3B3B3 1px 1px 1px;
    -moz-box-shadow: #B3B3B3 1px 1px 1px;
    box-shadow: #B3B3B3 1px 1px 1px;
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-weight: bold;
}

.cc_navBarContent {
    position: inherit;
    top: 50px;
    width: 100%;
}