$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 attempting to convert this code into Sass format, removing semi-colons and ensuring compatibility with Compass.
However, I encounter an error message stating "Properties are only allowed within rules, directives, mixin includes, or other properties."
As a result, the code fails to compile properly.