Sass Badge Generator.
A Sass mixin that adds fully customizable ribbons to specified elements. Follow me @awesomephant for updates
A Sass mixin that adds fully customizable ribbons to specified elements. Follow me @awesomephant for updates
<div data-badge='new'></div>
<div data-badge='sold'></div>
<div data-badge='premium'></div>
//Set background color:
$bg: rgb(240,240,240);
//Set the font size
$badge-font-size: 13px;
//Pick a style:
$style: flat; //use 'flat' or 'skeuomorph'
//Pick a position
$position: left; //You can choose between 'left' & 'right'
//Define your badges:
//(1. Identifier, 2. Color, 3. Text)
$badges: ('new', $blue, 'New!')
('sold', $red, 'Sold!')
('premium', $green, 'Premium');
//That's it!