I'm looking for CSS library that hold all common css best practices.
For example block centering style:
.block-center {
margin-left : auto;
margin-right : auto;
}
<div class="myClass block-center" />
I want such library to be distributed as separate css file which I can add and use in my projects.