diff options
Diffstat (limited to 'sass/base/_layout.scss')
-rw-r--r-- | sass/base/_layout.scss | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/sass/base/_layout.scss b/sass/base/_layout.scss index da9ad8a..3d164eb 100644 --- a/sass/base/_layout.scss +++ b/sass/base/_layout.scss @@ -1,30 +1,5 @@ $max-width: 1000px; -@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: $gray05, $bottom: $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; -} - *{ margin: 0; padding: 0; |