Change_ANNOOOTHERRR_Theme

This commit is contained in:
2016-08-16 14:16:23 -04:00
parent 60ee324bb8
commit d9211cb90c
77 changed files with 4366 additions and 2094 deletions
+24
View File
@@ -0,0 +1,24 @@
@mixin square($property){
width: $property;
height: $property;
}
@mixin user-select($select){
-moz-user-select: $select;
-khtml-user-select: $select;
-webkit-user-select: $select;
-o-user-select: $select;
user-select: $select;
}
@mixin border-shadow($top: $color-gray05, $bottom: $color-gray04){
border-top: 1px solid $top;
border-bottom: 1px solid $bottom;
}
@mixin center($width, $height){
position: absolute;
top: 50%;
left: 50%;
margin-left: $width/(-2);
margin-top: $height/(-2);
width: $width;
height: $height;
}