Szablon:Wykres Smooth Pie 2/style.css

Z Wikipedii, wolnej encyklopedii
.smooth-pie-2 {
	clip-path: circle(50%);
	position:relative;
	display:block;
	width: 100px;
	height: 100px;
	background-color: #005744;
	box-sizing: border-box;
}
.smooth-pie-2 .after,
.smooth-pie-2 .before {
	position:absolute;
	display:none;
	width: 100px;
	height: 100px;
	background-color: #00AF89;
	box-sizing: border-box;
}
@supports(clip-path: circle(50%)) {
	.smooth-pie-2 .after,
	.smooth-pie-2 .before {
		display:block;
	}	
}