lib/pah/files/app/assets/stylesheets/_variables.scss in pah-0.0.13 vs lib/pah/files/app/assets/stylesheets/_variables.scss in pah-0.0.14
- old
+ new
@@ -1,34 +1,31 @@
@charset "utf-8";
-
/* Font Variables */
-
$sans_serif: Arial, "Helvetica", sans-serif;
-
$font-small: 12px;
$font-medium: 15px;
$font-large: 19px;
$font-big: 29px;
-
/* Color Variables */
-
+$main-color: #555;
+$text: #333;
+$darker-color: darken($main-color, 10%);
+$lighter-color: lighten($main-color, 10%);
$grey1: #eee;
$grey2: #ddd;
$grey3: #999;
$grey4: #666;
$grey5: #333;
-
/* Mixins */
-
@mixin transition($property) {
- -webkit-transition: $property 0.15s ease-in-out;
- -moz-transition: $property 0.15s ease-in-out;
- -o-transition: $property 0.15s ease-in-out;
- transition: $property 0.15s ease-in-out;
+ -webkit-transition: $property 0.15s ease-in-out;
+ -moz-transition: $property 0.15s ease-in-out;
+ -o-transition: $property 0.15s ease-in-out;
+ transition: $property 0.15s ease-in-out;
}
@mixin clearfix {
&:after {
visibility: hidden;
@@ -37,6 +34,6 @@
content: " ";
clear: both;
height: 0;
min-height: 0;
}
-}
\ No newline at end of file
+}