Sha256: 0481a6ddfb1a8dcbf82061ec57377b75d987c35b1e095953a71264eb2c7f5ef9

Contents?: true

Size: 671 Bytes

Versions: 1

Compression:

Stored size: 671 Bytes

Contents

// Place all the styles related to the Nice controller here.
// They will automatically be included in application.css.
// You can use Sass (SCSS) here: http://sass-lang.com/

$color-one: rgba(255,0,100,0.4);
$color-two: rgba(255,255,00,0.4);
$color-three: rgba(0,200,120,0.4);

div{
	padding: 5px;
	margin: 5px;
	border: dashed 1px #222;
	background-color: $color-one;
	
	.one{
		background-color: $color-two;
	}
	
	.two{
		background-color: $color-three;
	}
}

a{
	color: blue;
}

// transitions 
.one .two{
	transition: width 2s;
	-moz-transition: width 2s; /* Firefox 4 */
	-webkit-transition: width 2s; /* Safari and Chrome */
	-o-transition: width 2s; /* Opera */
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
nice-0.0.2 test/nizzaTestApp/app/assets/stylesheets/nice.css.scss