Add Mono theme

This commit is contained in:
kbe
2025-08-18 16:50:55 +02:00
parent 710e63afda
commit 7432ac7d4d
2559 changed files with 493878 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
//
// Pie Chart styles //
//
.pie-chart {
position: relative;
display: inline-block;
}
.pie-chart-content {
position: absolute;
top: 50%;
left: 0;
@include transform(translateY(-50%));
width: 100%;
margin-top: -3px;
padding: 0 20px;
text-align: center;
}
.pie-chart-content .percent {
&::after {
content: '%';
}
}