You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
323 B
15 lines
323 B
/* Example: .circle { @include circle(200px, #999); } */
|
|
|
|
@mixin circle($size, $color, $display, $zindex: 0)
|
|
{
|
|
background: $color;
|
|
display: $display;
|
|
height: $size;
|
|
line-height: $size;
|
|
width: $size;
|
|
z-index: $zindex;
|
|
|
|
border-radius: $size/2;
|
|
-webkit-border-radius: $size/2;
|
|
-moz-border-radius: $size/2;
|
|
}
|
|
|