First Commit
This commit is contained in:
commit
feb864dc47
170 changed files with 4671 additions and 0 deletions
45
hackatonApp/scss/utils/mixins.scss
Normal file
45
hackatonApp/scss/utils/mixins.scss
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
@mixin filter-gradient($start-color, $end-color, $orientation: vertical) {
|
||||
$gradient-type: if($orientation == vertical, 0, 1);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(gradientType=#{$gradient-type}, startColorstr='#{ie-hex-str($start-color)}', endColorstr='#{ie-hex-str($end-color)}');
|
||||
}
|
||||
|
||||
@mixin headings($from: 1, $to: 6){
|
||||
@for $i from $from through $to{
|
||||
h#{$i}{
|
||||
@content
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@mixin transition($transitions...)
|
||||
{
|
||||
-webkit-transition: $transitions;
|
||||
-moz-transition: $transitions;
|
||||
-ms-transition: $transitions;
|
||||
-o-transition: $transitions;
|
||||
transition: $transitions;
|
||||
}
|
||||
|
||||
// // Placeholder shadow DOM
|
||||
@mixin _placeholder {
|
||||
$placeholders: ":-webkit-input" ":-moz" "-moz" "-ms-input";
|
||||
@each $placeholder in $placeholders {
|
||||
&:#{$placeholder}-placeholder {
|
||||
@content;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@mixin box-shadow($val)
|
||||
{
|
||||
-webkit-box-shadow: $val;
|
||||
-moz-box-shadow: $val;
|
||||
box-shadow: $val;
|
||||
}
|
||||
|
||||
@mixin opacity($opacity)
|
||||
{
|
||||
opacity: $opacity;
|
||||
$opacity-ie: $opacity * 100;
|
||||
filter: alpha(opacity=$opacity-ie); //IE8
|
||||
}
|
||||
1
hackatonApp/scss/utils/override_styles.scss
Normal file
1
hackatonApp/scss/utils/override_styles.scss
Normal file
|
|
@ -0,0 +1 @@
|
|||
// Override Ionic styles
|
||||
19
hackatonApp/scss/utils/override_variables.scss
Normal file
19
hackatonApp/scss/utils/override_variables.scss
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
/*
|
||||
To customize the look and feel of Ionic, you can override the variables
|
||||
in ionic's _variables.scss file.
|
||||
|
||||
For example, you might change some of the default colors:
|
||||
*/
|
||||
// $light: #fff !default;
|
||||
// $stable: #f8f8f8 !default;
|
||||
$positive: $theme-color-1 !default;
|
||||
// $calm: #11c1f3 !default;
|
||||
// $balanced: #33cd5f !default;
|
||||
// $energized: #ffc900 !default;
|
||||
$assertive: $theme-color-2 !default;
|
||||
// $royal: #886aea !default;
|
||||
// $dark: #444 !default;
|
||||
|
||||
|
||||
// The path for our ionicons font files, relative to the built CSS in www/css
|
||||
$ionicons-font-path: "../lib/ionic/fonts" !default;
|
||||
Loading…
Add table
Add a link
Reference in a new issue