/* * Panels * A generic block container */ @mixin panel-base { background-color: $color-white; border-top-width: 1px; border-bottom-width: 1px; border-top-style: solid; border-bottom-style: solid; } @mixin panel-theme-default { border-top-color: $color-black; border-bottom-color: $color-gray-light; } .panel { @include panel-base; @include panel-theme-default; }