Difference between revisions of "MediaWiki:Common.css"
Line 31: | Line 31: | ||
a.interwiki:visited { color: #ff5f40 !IMPORTANT; } | a.interwiki:visited { color: #ff5f40 !IMPORTANT; } | ||
a.external:visited { color: #ff5f40 !IMPORTANT; } | a.external:visited { color: #ff5f40 !IMPORTANT; } | ||
+ | |||
+ | 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 08:15, 18 July 2020
#mw-head-base { background-image: url(http://is12wiki.xyz/images/9/98/Bg.jpg) }
body {background-image: url(http://is12wiki.xyz/images/9/98/Bg.jpg)}
#p-logo {background-image: url(http://is12wiki.xyz/images/9/98/Bg.jpg)}
#mw-head {background-image: url(http://is12wiki.xyz/images/9/98/Bg.jpg)}
#footer {background-image: url(http://is12wiki.xyz/images/9/98/Bg.jpg)}
#left-navigation { background-color: #313131; color: #ffffff;}
#right-navigation { background-color: #313131; color: #ffffff;}
#p-navigation { background-color: #414141; }
#p-tb { background-color: #414141; }
#content { background-color: #414141; color: #ffffff;}
#content p { color: #ffffff;}
#content h1 { color: #ffffff;}
#content h2 { color: #ffffff;}
#content h3 { color: #ffffff;}
#content h4 { color: #ffffff;}
#toc { background-color: #414141; color: #ffffff;}
#catlinks { background-color: #414141; color: #ffffff;}
#p-navigation { color: #54123b; }
#footer-places { display: none; }
.thumbinner { background-color: #313131 !important;} /*thumbnail background*/
.mw-body { border-color : #52311d; } /* page border color */
#footer-info-lastmod {color: #ffffff !important} /* last changed date on footer */
a:visited { color: #ff5f40 !IMPORTANT; }
a.new:link { color: #ff5f40 !IMPORTANT; }
a.new:visited { color: #ff5f40 !IMPORTANT; }
a:link { color: #d0472c !IMPORTANT; } /* normal unvisited links */
a:link:active { color: #d0472c !IMPORTANT; } /* active links */
a:link.new { color: #d0472c !IMPORTANT; } /* new links */
a:link.interwiki { color: #d0472c !IMPORTANT; } /* interwiki links */
a:link.external { color: #d0472c !IMPORTANT; } /* external links */
a.interwiki:visited { color: #ff5f40 !IMPORTANT; }
a.external:visited { color: #ff5f40 !IMPORTANT; }
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) */
}