Added the project's files to the repo

This commit is contained in:
Ascendings
2015-08-30 12:34:43 -04:00
parent b66a773ed8
commit c425c861aa
154 changed files with 4670 additions and 0 deletions

4
assets/sass/mixins/_-all.sass Executable file
View File

@ -0,0 +1,4 @@
@import 'background-size'
@import 'filter'
@import 'no-select'
@import 'text-border'

View File

@ -0,0 +1,5 @@
@mixin background-size($size)
-webkit-background-size: $size
-moz-background-size: $size
-o-background-size: $size
background-size: $size

View File

@ -0,0 +1,6 @@
@mixin filter($filter)
-webkit-filter: $filter
-moz-filter: $filter
-o-filter: $filter
-ms-filter: $filter
filter: $filter

View 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

View File

@ -0,0 +1,2 @@
@mixin text-border($thickness, $color)
text-shadow: 0px -#{$thickness} $color, -#{$thickness} 0 $color, 0 $thickness $color, $thickness 0 $color