/** * Easy Pie classes * * @author https://github.com/rendro/easy-pie-chart * @version 2.0.3 * */ //Container principale .easy-pie { position: relative; display: inline-block; width: 110px; height: 110px; margin-top: 50px; margin-bottom: 10px; text-align: center; & canvas { position: absolute; top: 0; left: 0; } } //Style du percent .percent { display: inline-block; line-height: 110px; z-index: 2; //@include px2em($px: $fontSize * 2, $base-font-size:$base-font-size, $em : true, $rem: true, $percent: false, $property : font-size) ; @include rem(( font-size: $fontSize * 2 )); &:after { content: '%'; margin-left: 0.1em; font-size: .8em; } }