24 lines
404 B
CSS
24 lines
404 B
CSS
.awardPoints {
|
|
color: var(--Base-Text-High-contrast);
|
|
}
|
|
|
|
.addition {
|
|
color: var(--Secondary-Light-On-Surface-Accent);
|
|
}
|
|
|
|
.addition::before {
|
|
color: var(--Secondary-Light-On-Surface-Accent);
|
|
content: "+";
|
|
margin-right: var(--Space-x05);
|
|
}
|
|
|
|
.negation {
|
|
color: var(--Base-Text-Accent);
|
|
}
|
|
|
|
.negation::before {
|
|
color: var(--Base-Text-Accent);
|
|
content: "-";
|
|
margin-right: var(--Space-x05);
|
|
}
|