An open API service indexing awesome lists of open source software.

https://github.com/markshust/percentage-circle


https://github.com/markshust/percentage-circle

Last synced: 5 months ago
JSON representation

Awesome Lists containing this project

README

        

# Percentage Circle

This css file is a variation of https://github.com/toubou91/percircle.

I needed a very simple file with little fluff and pre-defined configuration. This CSS file varies from `percircle` in the fact that animations and vendor-prefixes have been removed. It also assumes no pre-defined width, height or color, so it is up to you to define those parameters.

Here is a JSFiddle example of circle with a 100px diameter, blue in color, with black progress bar.

```






.c100 {
font-size: 100px;
}
.c100:after {
background: blue;
}
.c100 .bar,
.c100 .fill {
border-color: black;
}

```