lightgray gray blue orange pink
massive bigger regular smaller tiny
These buttons were designed by Julius Csurgo and developed by CSS Flow. Modified for use in Flakes.
For basic usage, all you need is the button-color
class and size
modifier.
<a class="button-purple">Purple Button</a>
<a class="button-purple bigger">Bigger Purple Button</a>
Class Name | Button Preview |
button-lightgray |
lightgray |
button-gray |
gray |
button-blue |
blue |
button-orange |
orange |
button-pink |
pink |
button-darkblue |
darkblue |
button-purple |
purple |
button-magenta |
magenta |
button-green |
green |
Class Name | Button Preview |
massive |
massive |
bigger |
bigger |
(no class required) | Regular |
smaller |
smaller |
tiny |
tiny |
For a finer level of control, use the SASS button
mixin. Look at the mixin definition below to learn how it works.
@mixin button(
$button-color: gray,
$height: 36px,
$padding-sides: 20px,
$disabled: false
)
The button mixin accepts 4 optional parameters.