MediaWiki:Vector.css: Difference between revisions

From Alteeve Wiki
Jump to navigation Jump to search
(Created page with "→‎All CSS here will be loaded for users of the Vector skin: .blue_title { background: url('/templates/simplyalteeve/images/featured-background.png') no-repeat center center fixed; background-size: cover; -moz-background-size: cover; -webkit-background-size: cover; color: #f4f4f4; height: 28px; font-size:16px; font-family: DejaVuSansBold, Arial, sans-serif; text-transform: uppercase; -moz-...")
 
No edit summary
 
Line 2: Line 2:


.blue_title {
.blue_title {
         background: url('/templates/simplyalteeve/images/featured-background.png') no-repeat center center fixed;
         background: url('/w/images/featured-background.png') no-repeat center center fixed;
         background-size: cover;
         background-size: cover;
         -moz-background-size: cover;
         -moz-background-size: cover;

Latest revision as of 15:56, 22 September 2023

/* All CSS here will be loaded for users of the Vector skin */

.blue_title {
        background: url('/w/images/featured-background.png') no-repeat center center fixed;
        background-size: cover;
        -moz-background-size: cover;
        -webkit-background-size: cover;
        color: #f4f4f4;
        height: 28px;
        font-size:16px;
        font-family: DejaVuSansBold, Arial, sans-serif;
        text-transform: uppercase;
        -moz-text-shadow: 2px 2px 2px #1a3556;
        -webkit-text-shadow: 2px 2px 2px #1a3556;
        text-shadow: 2px 2px 2px #1a3556;
        padding-top:2px;
}

.code {
        font-size: 14px;
        color: #1f1f1f;
        font-family: 'Dejavu Sans Mono', 'Courier 10 pitch', monospace, Courier;
        padding-left: 3px;
        padding-right: 3px;
}

.button {
        padding: 5px;
        color: #7f117f;
        text-decoration: none;
        background: none;
}

.field {
        color: #13749a;
}

.highlight_warning {
        color: #936c02;
        font-style: italic;
}

.highlight_detail {
        color: #13749a;
        font-family: 'Dejavu Sans Mono', 'Courier 10 pitch', monospace, Courier;
}

.highlight_good {
        color: #1a9a13;
}