Sha256: 36dd328287d1ab9c84fa10661c2bd3f2f3bd7fbffa7f8579989e4cb02534d3ca

Contents?: true

Size: 1.27 KB

Versions: 10

Compression:

Stored size: 1.27 KB

Contents

=center-block($values)
  $block-width: optional_nth($values, 1)
  $block-height: optional_nth($values, 2)
  $block-z-index: optional_nth($values, 3)
  +block-size($block-width $block-height)
  +position(fixed, left 50%, top 50%, $block-z-index)
  margin-top: $block-height / 2 * -1
  margin-left: $block-width / 2 * -1

=horizontal-center-block($values)
  $block-width: optional_nth($values, 1)
  $block-z-index: optional_nth($values, 2)
  width: $block-width
  +fixed(left 50%, $block-z-index)
  margin-left: $block-width / 2 * -1

=size($value)
  $width: nth($value, 1)
  $height: $width
  @if length($value) > 1
    $height: nth($value, 2)
  @if is-size($height)
    height: $height
  @else
    @warn "`#{$height}` is not a valid length for the `$height` parameter in the `size` mixin."
  @if is-size($width)
    width: $width
  @else
    @warn "`#{$width}` is not a valid length for the `$width` parameter in the `size` mixin."

=overflow($values)
  $overflow-x: optional_nth($values, 1)
  $overflow-y: optional_nth($values, 2)
  @if equal_nth($values, 2)
    overflow-x: $overflow-x
    overflow-y: $overflow-y
  @else
    overflow: $overflow-x

=inline-block($value: null)
  display: inline-block
  vertical-align: $value

=clearfix
  &::after
    clear: both
    content: ""
    display: table

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
oulu-0.11.7 app/assets/stylesheets/settings/mixins/_block.sass
oulu-0.11.6 app/assets/stylesheets/settings/mixins/_block.sass
oulu-0.11.5 app/assets/stylesheets/settings/mixins/_block.sass
oulu-0.11.4 app/assets/stylesheets/settings/mixins/_block.sass
oulu-0.11.3 app/assets/stylesheets/settings/mixins/_block.sass
oulu-0.11.2 app/assets/stylesheets/settings/mixins/_block.sass
oulu-0.11.1 app/assets/stylesheets/settings/mixins/_block.sass
oulu-0.11.0 app/assets/stylesheets/settings/mixins/_block.sass
oulu-0.10.1 app/assets/stylesheets/settings/mixins/_block.sass
oulu-1.0.0.beta1 app/assets/stylesheets/settings/mixins/_block.sass