is possible make whole card link in angular material or there directive intended use case?
you can put ng-click
on card , perform operation.further can style card hover effects feel of link.like :
html:
<md-card ng-click="cardselected()" class="cardaslink"> .... </md-card>
js:
$scope.cardselected=function(){ console.log("card clicked"); }
css:
.cardaslink{ cursor: pointer; } .cardaslink:hover{ border : 1px solid blue; }