Advertisement
Guest User

Untitled

a guest
Jun 11th, 2014
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.05 KB | None | 0 0
  1. /*---------------------------------------------*\
  2.     Customer Holder
  3. \*---------------------------------------------*/
  4.  
  5. .case-studies.loop{
  6.     background: $gray-lighter;
  7.     padding: $gap-lg;
  8.     &.featured{
  9.         background: transparent none;
  10.         .image{
  11.             margin-bottom: -$gap-lg;
  12.         }
  13.     }
  14.     .heading{
  15.         @extend %heading-style;
  16.         font-size: $font-size-h1;
  17.     }
  18. }
  19.  
  20. @media (min-width: $screen-sm) {
  21.     .case-studies.loop{
  22.         padding: $gap-xl;
  23.         &.featured{
  24.             .image{
  25.                 margin-bottom: -$gap-xl;
  26.             }
  27.         }
  28.     }
  29. }
  30.  
  31. /*======================================================================*\
  32.     Classes
  33. \*======================================================================*/
  34.  
  35. %heading-style{
  36.     color: $brand-primary;
  37.     border-bottom: 3px dashed #c0c0c0;
  38.     margin-bottom: $gap-sm;
  39.     padding-bottom: $gap-sm;
  40. }
  41.  
  42. @media (min-width: $screen-sm) {
  43.     %heading-style{
  44.         margin-bottom: $gap-lg;
  45.         padding-bottom: $gap-lg;
  46.     }
  47. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement