Skip to content

Instantly share code, notes, and snippets.

@AndrewKotin
Created August 10, 2016 07:30
Show Gist options
  • Save AndrewKotin/60fa80161a9f8a6b9dd24ba8af795935 to your computer and use it in GitHub Desktop.
Save AndrewKotin/60fa80161a9f8a6b9dd24ba8af795935 to your computer and use it in GitHub Desktop.
Цвет границ (border-left, right…) Функция получает цвет границы и место (сверху, снизу, слева, справа или со всех сторон), куда его применить к объекту.
@mixin border($place, $color, $width) {
@if $place == 'all' {
border: $width solid $color;
} @else {
border-#{$place}: $width solid $color;
}
}
@AndrewKotin
Copy link
Author

@include border(bottom, #ff00ff, 2px); // ужасная фиолетовая граница снизу
@include border(left, darkred, 1px); // темно-красная граница слева
@include border(all, #000, 1px); // черная граница по всему периметру

@AndrewKotin
Copy link
Author

@mixin border($place, $color) {...}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment