Sha256: a420eb6b04609f82d90351013c05287ef880c94718a04cbe604381023b73c444

Contents?: true

Size: 293 Bytes

Versions: 5

Compression:

Stored size: 293 Bytes

Contents

@mixin hoverable-card($base-y, $base-blur, $color) {
  $hovered-y: $base-y * 2;
  $hovered-blur: $base-blur * 2;

  transition: all .15s ease;
  box-shadow: 0px $base-y $base-blur $color;
  &:hover {
    transform: translateY(-1px);
    box-shadow: 0px $hovered-y $hovered-blur $color;
  }
}

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
jekyll-theme-open-project-1.1.4 _sass/open-project-mixins.scss
jekyll-theme-open-project-1.1.3 _sass/open-project-mixins.scss
jekyll-theme-open-project-1.1.2 _sass/open-project-mixins.scss
jekyll-theme-open-project-1.1.1 _sass/open-project-mixins.scss
jekyll-theme-open-project-1.1.0 _sass/open-project-mixins.scss