Sha256: 3265459361084c9eabd41b3d1b5e7c13f14ab6033cd0cddc8411e63fbcae143b

Contents?: true

Size: 1.67 KB

Versions: 1

Compression:

Stored size: 1.67 KB

Contents

// どこでも font-weight と text-align と color と +top() が書ける設定
=text-block-options($value)
  font-weight: if(font_weight($value), $value, null)
  text-align: if(text_align($value), $value, null)
  color: if(color($value), $value, null)
  white-space: if(white_space($value), $value, null)
  display: if(display($value), $value, null)
  text-decoration: : if(text_decoration:($value), $value, null)
  @if unit_number($value)
    +top($value, null)

// +text-block($font-size $line-height $margin-bottom, $font-weight $text-align $color $top)
=text-block($value1: null, $value2: null)
  font-size: nth($value1, 1)
  line-height: optional_nth($value1, 2)
  margin-bottom: optional_nth($value1, 3)
  @if ($value2)
    @for $i from 1 through length($value2)
      +text-block-options(nth($value2, $i))

=letter-spacing-center($space-width: null)
  letter-spacing: $space-width
  text-indent: $space-width

// brをアクティブにするサイズを設定
=br($active-sizes)
  br
    display: none
    @if ($active-sizes)
      @for $i from 1 through length($active-sizes)
        @if nth($value1, $i) == xs
          +screen-xs
            display: block
        @else if nth($value1, $i) == sm
          +screen-sm
            display: block
        @else if nth($value1, $i) == md
          +screen-md
            display: block
        @else if nth($value1, $i) == lg
          +screen-md
            display: block
        @else if nth($value1, $i) == xl
          +screen-md
            display: block

=small-font($font-size)
  // 9px以下のfont-sizeを使う設定(IE8不可)
  +transform(scale3d(strip_unit($font-size / 10), strip_unit($font-size/ 10), 1))
  +transform-origin(0 0)

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
oulu-0.9.7 app/assets/stylesheets/settings/mixins/_text.sass