MediaWiki:Common.css: Difference between revisions

From Tactical Distractions Wiki
Jump to navigation Jump to search
Created page with "CSS placed here will be applied to all skins: body { background-color: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3)); background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3)), url(/public_html/public/assets/images/egr.png); color: white; }"
 
No edit summary
Line 5: Line 5:
     background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3)), url(/public_html/public/assets/images/egr.png);
     background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3)), url(/public_html/public/assets/images/egr.png);
     color: white;
     color: white;
    background-position: fixed;
}
a, a:link, a:focus, a:visited {
color: gold;
}
a:hover {
color: white;
}
}

Revision as of 08:18, 13 September 2025

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

body {
    background-color: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3)), url(/public_html/public/assets/images/egr.png);
    color: white;
    background-position: fixed;
}

a, a:link, a:focus, a:visited {
 color: gold;
}

a:hover {
 color: white;
}