1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
.pie-chart-box-left {
width: 500px; /*380px;*/
margin-left:auto;
margin-right:20px;
}
.pie-chart-box-right {
width: 500px; /*380px;*/
margin-left:20px;
margin-right:auto;
}
.pie-chart {
background-color: #ffffff;
border: 0px dotted #dddddd;
font: 10px sans-serif;
height: 325px; /*280px;*/
text-shadow: none;
width: 500px; /*380px;*/
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.pie-chart-small {
width:100%;
display: -webkit-flex; /* Safari */
display: flex;
-webkit-align-items: center; /* Safari 7.0+ */
align-items: center;
-webkit-justify-content: center;
justify-content: center;
}
.pie-chart-small svg g.label_group text {
font-size: 1.15em;
}
.pie-chart .total{
font-size: 18px;
font-weight: bold;
}
.pie-chart .units{
fill: gray;
font-size: 12px;
}
.pie-chart .label{
fill: #CCC;
font-size: 12px;
font-weight: bold;
}
.pie-chart .value{
font-size: 12px;
font-weight: bold;
}
|