summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/mixins.css.scss
diff options
context:
space:
mode:
authorTyler Mercier <tylermercier@gmail.com>2013-07-29 15:38:18 -0600
committerTyler Mercier <tylermercier@gmail.com>2013-07-29 15:38:18 -0600
commitce1cb7ea7997961fc2fc9ea1b40558e717c0ef05 (patch)
tree813b38a9d6035be4975b6394460b866a754bbda6 /app/assets/stylesheets/mixins.css.scss
parent9c889028be05270f3cfef1e926c75da2882bafe4 (diff)
cleanup saas files
Diffstat (limited to 'app/assets/stylesheets/mixins.css.scss')
-rw-r--r--app/assets/stylesheets/mixins.css.scss10
1 files changed, 6 insertions, 4 deletions
diff --git a/app/assets/stylesheets/mixins.css.scss b/app/assets/stylesheets/mixins.css.scss
index d69e5eb..e098fec 100644
--- a/app/assets/stylesheets/mixins.css.scss
+++ b/app/assets/stylesheets/mixins.css.scss
@@ -12,19 +12,19 @@
border-radius: $pixels;
}
-@mixin box-shadow($shadows...){
+@mixin box-shadow($shadows...) {
-webkit-box-shadow: $shadows;
-moz-box-shadow: $shadows;
box-shadow: $shadows;
}
-@mixin appearance($appearance){
+@mixin appearance($appearance) {
-webkit-appearance: $appearance;
-moz-appearance: $appearance;
appearance: $appearance;
}
-@mixin gradient($top, $bottom){
+@mixin gradient($top, $bottom) {
background-color: $bottom;
*background-color: $bottom;
background-image: -moz-linear-gradient(top, $top, $bottom);
@@ -45,5 +45,7 @@
clear: both;
visibility: hidden;
}
- * html & { height: 1px }
+ * html & {
+ height: 1px;
+ }
}