Simple, clean and beautiful folders implemented only with CSS.
Available in 3 sizes and 5 colors (but customizable of course).
Download them and use them (only 4 kb).
<div class="ffolder small cyan"></div>
<div class="ffolder small cyan">
<span>24 Files</span>
</div>
<div class="ffolder small cyan">
<i class="fa fa-behance"></i>
</div>
<div class="ffolder medium gray">
<i class="fa fa-dropbox"></i>
</div>
<div class="ffolder big pink">
<span>37 Files</span>
</div>
<div class="ffolder big gray">
<i class="fa fa-github"></i>
</div>
https://github.com/jlizanab/FFolders
and add it to your project directly as any CSS library:
<!-- Latest compiled and minified CSS --> <link href="css/ffolders.min.css" rel="stylesheet">
The latest version includes a SASS Mixin: (ffolders.scss).
how to use in a SASS file:
/*how-to use ffolder Sass Mixin*/
.folder_style1 {
@include ffolder($small, $pink);
}
.folder_style2 {
@include ffolder($medium,$yellow);
}
.folder_custom {
@include ffolder(200px, #A192C3);
}