Angular: CSS styling
http://angularjs.org/
HTML
<input type="button" value="set" ng-click="myStyle={color:'red'}">
<input type="button" value="clear" ng-click="myStyle={}">
<br/>
<span ng-style="myStyle">Sample Text</span>
<pre>myStyle={{myStyle}}</pre>
CSS
.pending-delete { background-color: pink }
JavaScript
var myApp = angular.module('myApp', []);
function MyCtrl($scope) {
$scope.myStyle={color:'green',font-size:'30px'}
}