Added the project's files to the repo
This commit is contained in:
Executable
+4
@@ -0,0 +1,4 @@
|
||||
@import 'background-size'
|
||||
@import 'filter'
|
||||
@import 'no-select'
|
||||
@import 'text-border'
|
||||
Executable
+5
@@ -0,0 +1,5 @@
|
||||
@mixin background-size($size)
|
||||
-webkit-background-size: $size
|
||||
-moz-background-size: $size
|
||||
-o-background-size: $size
|
||||
background-size: $size
|
||||
Executable
+6
@@ -0,0 +1,6 @@
|
||||
@mixin filter($filter)
|
||||
-webkit-filter: $filter
|
||||
-moz-filter: $filter
|
||||
-o-filter: $filter
|
||||
-ms-filter: $filter
|
||||
filter: $filter
|
||||
Executable
+7
@@ -0,0 +1,7 @@
|
||||
@mixin no-select ()
|
||||
-webkit-touch-callout: none
|
||||
-webkit-user-select: none
|
||||
-khtml-user-select: none
|
||||
-moz-user-select: none
|
||||
-ms-user-select: none
|
||||
user-select: none
|
||||
Executable
+2
@@ -0,0 +1,2 @@
|
||||
@mixin text-border($thickness, $color)
|
||||
text-shadow: 0px -#{$thickness} $color, -#{$thickness} 0 $color, 0 $thickness $color, $thickness 0 $color
|
||||
Reference in New Issue
Block a user