Skip to content

Instantly share code, notes, and snippets.

View bendera's full-sized avatar

Adam Bender bendera

  • Budapest, Hungary
  • 20:09 (UTC +02:00)
View GitHub Profile
@bendera
bendera / _box-shadow.scss
Created October 1, 2015 22:47
box-shadow functions
@function get-box-shadow($shadow-obj) {
$box-shadow-str: '';
@for $i from 1 through length($shadow-obj) {
$layer: nth($shadow-obj, $i);
@if (map-get($layer, inset) == true) {
$box-shadow-str: $box-shadow-str + inset + ' ';
}
@bendera
bendera / _no.scss
Created September 29, 2015 15:46
Modernizr fallback mixin
@mixin no($feature) {
@at-root .no-#{$feature} & {
@content;
}
}