Added the project's files to the repo
This commit is contained in:
4
assets/sass/mixins/_-all.sass
Executable file
4
assets/sass/mixins/_-all.sass
Executable file
@ -0,0 +1,4 @@
|
||||
@import 'background-size'
|
||||
@import 'filter'
|
||||
@import 'no-select'
|
||||
@import 'text-border'
|
5
assets/sass/mixins/_background-size.sass
Executable file
5
assets/sass/mixins/_background-size.sass
Executable file
@ -0,0 +1,5 @@
|
||||
@mixin background-size($size)
|
||||
-webkit-background-size: $size
|
||||
-moz-background-size: $size
|
||||
-o-background-size: $size
|
||||
background-size: $size
|
6
assets/sass/mixins/_filter.sass
Executable file
6
assets/sass/mixins/_filter.sass
Executable file
@ -0,0 +1,6 @@
|
||||
@mixin filter($filter)
|
||||
-webkit-filter: $filter
|
||||
-moz-filter: $filter
|
||||
-o-filter: $filter
|
||||
-ms-filter: $filter
|
||||
filter: $filter
|
7
assets/sass/mixins/_no-select.sass
Executable file
7
assets/sass/mixins/_no-select.sass
Executable file
@ -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
|
2
assets/sass/mixins/_text-border.sass
Executable file
2
assets/sass/mixins/_text-border.sass
Executable file
@ -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