Scss basics

This commit is contained in:
Unknown
2017-10-15 18:43:44 +01:00
parent 543bb91568
commit 6c835bee44
10 changed files with 175 additions and 0 deletions

View File

@ -0,0 +1,15 @@
@mixin vendor($property, $value...)
{
-webkit-#{$property}: $value;
-moz-#{$property}: $value;
-ms-#{$property}: $value;
#{$property}: $value;
}
@mixin hocus()
{
&:hover, &:focus
{
@content;
}
}