MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary Tag: Reverted |
||
Line 45: | Line 45: | ||
.catlinks{background-color: transparent;} | .catlinks{background-color: transparent;} | ||
.thumbcaption{color: black;} | .thumbcaption{color: black;} | ||
ul { | |||
list-style: none; /* Remove default bullets */ | |||
} | |||
ul li::before { | |||
content: "\2022"; /* Add content: \2022 is the CSS Code/unicode for a bullet */ | |||
color: red; /* Change the color */ | |||
font-weight: bold; /* If you want it to be bold */ | |||
display: inline-block; /* Needed to add space between the bullet and the text */ | |||
width: 1em; /* Also needed for space (tweak if needed) */ | |||
margin-left: -1em; /* Also needed for space (tweak if needed) */ | |||
} |
Revision as of 21:57, 11 October 2022
/* CSS placed here will be applied to all skins */ #content { background-color: #4a2c2a;} body{background-color:#4a2c2a} #mw-head-base { background-color: #4a2c2a; } #mw-panel { background-color: white; border: 3px solid #556270; padding-bottom: 10px; border-top-right-radius: 10px; border-top-left-radius: 10px; border-bottom-right-radius: 10px; border-bottom-left-radius: 10px; } .mw-body-content p {color:white;} .mw-body, .parsoid-body {color:white;} .mw-body h1, .mw-body-content h1 {color:white;} .mw-body-content h2 {color:white} .mw-content-ltr ul, .mw-content-rtl .mw-content-ltr ul {color:white;} .skin-vector-legacy a.new{color:white} a{color:#FFFDD0} p{color:white} .mw-footer li{color:white} #footer-places-privacy {display: none;} #footer-places-about {display: none;} #footer-places-disclaimer {display: none;} .mw-search-profile-tabs{background-color:#3a2c2a} .search-types .current a {color:white} #filetoc {background-color:transparent} .mw_metadata td, .mw_metadata th {background-color:transparent} .wikitable{background-color:transparent} .toc, .toccolours {background-color:transparent} .mw-message-box-warning, .warningbox {background-color:transparent} .tocnumber{color:white} .spoiler-text { background: black; color: black; cursor: help; transition: background 0.3s ease 0.2s, color 0.2s ease 0.25s; } .spoiler-text:hover, .spoiler-text:focus {color: white;} #ca-talk { display: none !important; } h3{color:#FFFDD0} .catlinks{background-color: transparent;} .thumbcaption{color: black;} ul { list-style: none; /* Remove default bullets */ } ul li::before { content: "\2022"; /* Add content: \2022 is the CSS Code/unicode for a bullet */ color: red; /* Change the color */ font-weight: bold; /* If you want it to be bold */ display: inline-block; /* Needed to add space between the bullet and the text */ width: 1em; /* Also needed for space (tweak if needed) */ margin-left: -1em; /* Also needed for space (tweak if needed) */ }