/* Mixins for reusable styles */
/****** To use these, call the element within the less stylesheet like this:

.parentElement {
  .angled-element();
  /* Add others styles as usual 
  background-color: #000;
}

******/
.feature-card-mixin {
  border: 2px solid #000;
  border-radius: 5px;
  background-color: #fff;
  padding: 0;
}
.feature-card-mixin .field--name-body {
  padding: 7px;
}
