Template:Percentage bar/styles.css: Difference between revisions

From Project Basis
Jump to navigation Jump to search
fix text color in dark mode; this generally works but may cause problems, in which case revert or try specifying a different CSS value
 
m 1 revision imported
 
(No difference)

Latest revision as of 02:12, 20 July 2026

/* {{pp-protected|small=yes}} */
.percentage-bar {
	position: relative;
	border: 1px solid #aaa;
	background-color: #fff;
    color:inherit;
	width: 100px;
	max-width: 100%;
	height: 1.5em;
}

.percentage-bar-fill {
	position: absolute;
	background-color: #dbdbdb;
    color:inherit;
	height: 1.5em;
	width: 50%;
}

.percentage-bar-text {
	position: absolute;
	width: 100%;
	height: 1.5em;
	text-align: center;
	color: #000;
}