Sha256: e9fd6e3a4344ca8164464fc514c8bfec11669bdf7aeb5351cd7c1abd0b849dbd
Contents?: true
Size: 1.39 KB
Versions: 3
Compression:
Stored size: 1.39 KB
Contents
!default_rounded_amount ||= 5px // Round corner at position by amount. // values for position: "top-left", "top-right", "bottom-left", "bottom-right" =round-corner(!position, !amount = !default_rounded_amount) @if !position == "top-left" -moz-border-radius-topleft= !amount @if !position == "top-right" -moz-border-radius-topright= !amount @if !position == "bottom-left" -moz-border-radius-bottomleft= !amount @if !position == "bottom-right" -moz-border-radius-bottomright= !amount -webkit-border-#{!position}-radius= !amount border-#{!position}-radius= !amount // Round left corners by amount =round-left-corners(!amount = !default_rounded_amount) +round-corner("top-left", !amount) +round-corner("bottom-left", !amount) // Round right corners by amount =round-right-corners(!amount = !default_rounded_amount) +round-corner("top-right", !amount) +round-corner("bottom-right", !amount) // Round top corners by amount =round-top-corners(!amount = !default_rounded_amount) +round-corner("top-left", !amount) +round-corner("top-right", !amount) // Round bottom corners by amount =round-bottom-corners(!amount = !default_rounded_amount) +round-corner("bottom-left", !amount) +round-corner("bottom-right", !amount) // Round all corners by amount =round-corners(!amount = !default_rounded_amount) -moz-border-radius= !amount -webkit-border-radius= !amount border-radius= !amount
Version data entries
3 entries across 3 versions & 2 rubygems