Sha256: baf572ce428c4d529ce340d40f3b1627b1f05cb99198981b70dff3bce61a5354

Contents?: true

Size: 1.49 KB

Versions: 11

Compression:

Stored size: 1.49 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)
	&::-webkit-input-placeholder
		color: $color
	&:-moz-placeholder /* Firefox 18- */
		color: $color
	&::-moz-placeholder  /* Firefox 19+ */
		color: $color
	&:-ms-input-placeholder
		color: $color

@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

11 entries across 11 versions & 1 rubygems

Version Path
hackathon_manager-0.4.4 app/assets/stylesheets/hackathon_manager/general/_mixins.sass
hackathon_manager-0.4.3 app/assets/stylesheets/hackathon_manager/general/_mixins.sass
hackathon_manager-0.4.2 app/assets/stylesheets/hackathon_manager/general/_mixins.sass
hackathon_manager-0.4.1 app/assets/stylesheets/hackathon_manager/general/_mixins.sass
hackathon_manager-0.4.0 app/assets/stylesheets/hackathon_manager/general/_mixins.sass
hackathon_manager-0.3.3 app/assets/stylesheets/hackathon_manager/general/_mixins.sass
hackathon_manager-0.3.2 app/assets/stylesheets/hackathon_manager/general/_mixins.sass
hackathon_manager-0.3.1 app/assets/stylesheets/hackathon_manager/general/_mixins.sass
hackathon_manager-0.3.0 app/assets/stylesheets/hackathon_manager/general/_mixins.sass
hackathon_manager-0.2.0 app/assets/stylesheets/hackathon_manager/general/_mixins.sass
hackathon_manager-0.1.0 app/assets/stylesheets/hackathon_manager/general/_mixins.sass