#table_1
tr:nth-child(odd) td:nth-child(even),
#table_1
tr:nth-child(even) td:nth-child(odd)
background: #ccc
background: -moz-linear-gradient(top, #ccc, #eee)
background: -webkit-gradient(linear,0 0, 0 100%, from(#ccc), to(#eee))
box-shadow: inset 0 0 10px rgba(0,0,0,.4)
-moz-box-shadow: inset 0 0 10px rgba(0,0,0,.4)
-webkit-box-shadow: inset 0 0 10px rgba(0,0,0,.4)
I am looking to turn this into sass without any semi-colons, and so that it will compile in compass.
So far I get the following error: "Properties are only allowed within rules, directives, mixin includes, or other properties."
The code will not compile.