Template:Progressbar/styles.css

Template page
Revision as of 08:11, 26 November 2022 by imported>Alistair3149 (Created page with ".t-progressbar { font-size: 0.8125rem; line-height: 1.375; } .t-progressbar__header { margin-bottom: 0.5rem; display: flex; justify-content: space-between; font-w...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
.t-progressbar {
	font-size: 0.8125rem;
	line-height: 1.375;
}

.t-progressbar__header {
	margin-bottom: 0.5rem;
	display: flex;
    justify-content: space-between;
    font-weight: 500;
    color: var( --color-base--emphasized );
}

.t-progressbar__bar {
	position: relative;
	height: 4px;
	background-color: var( --color-surface-2 );
	border-radius: 9999px;
}

.t-progressbar__progress {
	position: absolute;
	top: 0;
    bottom: 0;
    background-color: var( --color-primary );
    border-radius: 9999px;
}

.t-progressbar__footer {
	margin-top: 0.5rem;
	display: flex;
    justify-content: space-between;
    color: var( --color-base--subtle );
}