text-decoration: none;
display: block;
+ position: relative;
+ z-index: 2;
>h2 {
@include font-size(l);
@include margin(0);
text-decoration: underline;
+ position: relative;
+ z-index: 3;
+ }
+
+ &:before {
+ content: "";
+ display: block;
+ position: absolute;
+ background: transparent;
+ top: -10%;
+ left: -5%;
+ width: 110%;
+ height: 120%;
+ z-index: 1;
+ @include transition(all 0.25s ease-in-out);
+ }
+
+ &:hover {
+
+ &:before {
+ box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.17);
+ }
+
}
.sidebar & {