Sha256: 0244ca7eb61a323a7c7df85494f0f896996e1a4ca8c660d94306c793a5fcdf9f

Contents?: true

Size: 1.67 KB

Versions: 52

Compression:

Stored size: 1.67 KB

Contents

@mixin transition($duration, $property, $function, $delay)
  -webkit-transition: $duration $property $function $delay
  -moz-transition-duration: $duration
  -moz-transtition-property: $property
  -moz-transition-timing-function: $function
  -moz-transition-delay: $delay
  -o-transition: $duration $property $function $delay
  transition: $duration $property $function $delay

@mixin border-radius($radius)
  -webkit-border-radius: $radius
  -moz-border-radius: $radius
  -ms-border-radius: $radius
  -o-border-radius: $radius
  border-radius: $radius

@mixin scale($args)
  -webkit-transform: scale($args)
  -o-transform: scale($args)
  transform: scale($args)

@mixin box-shadow($args)
  -webkit-box-shadow: $args
  -moz-box-shadow: $args
  box-shadow: $args

@mixin placeholder-color($color)
  &::placeholder
    color: $color
    font-style: italic
  &::-webkit-input-placeholder
    color: $color
    font-style: italic
  &:-moz-placeholder /* Firefox 18- */
    color: $color
    font-style: italic
  &::-moz-placeholder  /* Firefox 19+ */
    color: $color
    font-style: italic
  &:-ms-input-placeholder
    color: $color
    font-style: italic

@mixin box-sizing($box-model)
  -webkit-box-sizing: $box-model
  -moz-box-sizing: $box-model
  box-sizing: $box-model

@mixin appearance($appearance)
  -webkit-appearance: $appearance
  -moz-appearance: $appearance
  appearance: $appearance

@mixin background-size($arg)
  -webkit-background-size: $arg
  -moz-background-size: $arg
  -o-background-size: $arg
  background-size: $arg

@mixin translate($x, $y)
  transform: translate($x, $y)
  -webkit-transform: translate($x, $y)
  -moz-transform: translate($x, $y)
  -o-transform: translate($x, $y)

Version data entries

52 entries across 52 versions & 1 rubygems

Version Path
hackathon_manager-0.14.1 app/assets/stylesheets/hackathon_manager/general/_mixins.sass
hackathon_manager-0.14.0 app/assets/stylesheets/hackathon_manager/general/_mixins.sass
hackathon_manager-0.13.12 app/assets/stylesheets/hackathon_manager/general/_mixins.sass
hackathon_manager-0.13.11 app/assets/stylesheets/hackathon_manager/general/_mixins.sass
hackathon_manager-0.13.10 app/assets/stylesheets/hackathon_manager/general/_mixins.sass
hackathon_manager-0.13.9 app/assets/stylesheets/hackathon_manager/general/_mixins.sass
hackathon_manager-0.13.8 app/assets/stylesheets/hackathon_manager/general/_mixins.sass
hackathon_manager-0.13.7 app/assets/stylesheets/hackathon_manager/general/_mixins.sass
hackathon_manager-0.13.6 app/assets/stylesheets/hackathon_manager/general/_mixins.sass
hackathon_manager-0.13.5 app/assets/stylesheets/hackathon_manager/general/_mixins.sass
hackathon_manager-0.13.4 app/assets/stylesheets/hackathon_manager/general/_mixins.sass
hackathon_manager-0.13.3 app/assets/stylesheets/hackathon_manager/general/_mixins.sass
hackathon_manager-0.13.2 app/assets/stylesheets/hackathon_manager/general/_mixins.sass
hackathon_manager-0.13.1 app/assets/stylesheets/hackathon_manager/general/_mixins.sass
hackathon_manager-0.13.0 app/assets/stylesheets/hackathon_manager/general/_mixins.sass
hackathon_manager-0.12.2 app/assets/stylesheets/hackathon_manager/general/_mixins.sass
hackathon_manager-0.12.1 app/assets/stylesheets/hackathon_manager/general/_mixins.sass
hackathon_manager-0.12.0 app/assets/stylesheets/hackathon_manager/general/_mixins.sass
hackathon_manager-0.11.2 app/assets/stylesheets/hackathon_manager/general/_mixins.sass
hackathon_manager-0.11.1 app/assets/stylesheets/hackathon_manager/general/_mixins.sass