compass-easel 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.markdown +0 -0
- data/lib/easel.rb +3 -0
- data/stylesheets/_easel.scss +1 -0
- data/stylesheets/easel/_easing.scss +82 -0
- data/stylesheets/easel/_utils.scss +25 -0
- data/templates/project/_base.scss +0 -0
- data/templates/project/ie.scss +0 -0
- data/templates/project/manifest.rb +6 -0
- data/templates/project/print.scss +0 -0
- data/templates/project/screen.scss +2 -0
- data/templates/project/site.js +0 -0
- metadata +79 -0
data/README.markdown
ADDED
File without changes
|
data/lib/easel.rb
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
@import "easel/*";
|
@@ -0,0 +1,82 @@
|
|
1
|
+
/**
|
2
|
+
* Easing functions
|
3
|
+
* @see https://gist.github.com/960128
|
4
|
+
*/
|
5
|
+
@function linear() {
|
6
|
+
@return cubic-bezier(0.250, 0.250, 0.750, 0.750);
|
7
|
+
}
|
8
|
+
@function ease() {
|
9
|
+
@return cubic-bezier(0.250, 0.100, 0.250, 1.000);
|
10
|
+
}
|
11
|
+
@function ease-in() {
|
12
|
+
@return cubic-bezier(0.420, 0.000, 1.000, 1.000);
|
13
|
+
}
|
14
|
+
@function ease-in-quad() {
|
15
|
+
@return cubic-bezier(0.550, 0.085, 0.680, 0.530);
|
16
|
+
}
|
17
|
+
@function ease-in-cubic() {
|
18
|
+
@return cubic-bezier(0.550, 0.055, 0.675, 0.190);
|
19
|
+
}
|
20
|
+
@function ease-in-quart() {
|
21
|
+
@return cubic-bezier(0.895, 0.030, 0.685, 0.220);
|
22
|
+
}
|
23
|
+
@function ease-in-quint() {
|
24
|
+
@return cubic-bezier(0.755, 0.050, 0.855, 0.060);
|
25
|
+
}
|
26
|
+
@function ease-in-sine() {
|
27
|
+
@return cubic-bezier(0.470, 0.000, 0.745, 0.715);
|
28
|
+
}
|
29
|
+
@function ease-in-expo() {
|
30
|
+
@return cubic-bezier(0.950, 0.050, 0.795, 0.035);
|
31
|
+
}
|
32
|
+
@function ease-in-circ() {
|
33
|
+
@return cubic-bezier(0.600, 0.040, 0.980, 0.335);
|
34
|
+
}
|
35
|
+
@function ease-out() {
|
36
|
+
@return cubic-bezier(0.000, 0.000, 0.580, 1.000);
|
37
|
+
}
|
38
|
+
@function ease-out-quad() {
|
39
|
+
@return cubic-bezier(0.250, 0.460, 0.450, 0.940);
|
40
|
+
}
|
41
|
+
@function ease-out-cubic() {
|
42
|
+
@return cubic-bezier(0.215, 0.610, 0.355, 1.000);
|
43
|
+
}
|
44
|
+
@function ease-out-quart() {
|
45
|
+
@return cubic-bezier(0.165, 0.840, 0.440, 1.000);
|
46
|
+
}
|
47
|
+
@function ease-out-quint() {
|
48
|
+
@return cubic-bezier(0.230, 1.000, 0.320, 1.000);
|
49
|
+
}
|
50
|
+
@function ease-out-sine() {
|
51
|
+
@return cubic-bezier(0.390, 0.575, 0.565, 1.000);
|
52
|
+
}
|
53
|
+
@function ease-out-expo() {
|
54
|
+
@return cubic-bezier(0.190, 1.000, 0.220, 1.000);
|
55
|
+
}
|
56
|
+
@function ease-out-circ() {
|
57
|
+
@return cubic-bezier(0.075, 0.820, 0.165, 1.000);
|
58
|
+
}
|
59
|
+
@function ease-in-out() {
|
60
|
+
@return cubic-bezier(0.420, 0.000, 0.580, 1.000);
|
61
|
+
}
|
62
|
+
@function ease-in-out-quad() {
|
63
|
+
@return cubic-bezier(0.455, 0.030, 0.515, 0.955);
|
64
|
+
}
|
65
|
+
@function ease-in-out-cubic() {
|
66
|
+
@return cubic-bezier(0.645, 0.045, 0.355, 1.000);
|
67
|
+
}
|
68
|
+
@function ease-in-out-quart() {
|
69
|
+
@return cubic-bezier(0.770, 0.000, 0.175, 1.000);
|
70
|
+
}
|
71
|
+
@function ease-in-out-quint() {
|
72
|
+
@return cubic-bezier(0.860, 0.000, 0.070, 1.000);
|
73
|
+
}
|
74
|
+
@function ease-in-out-sine() {
|
75
|
+
@return cubic-bezier(0.445, 0.050, 0.550, 0.950);
|
76
|
+
}
|
77
|
+
@function ease-in-out-expo() {
|
78
|
+
@return cubic-bezier(1.000, 0.000, 0.000, 1.000);
|
79
|
+
}
|
80
|
+
@function ease-in-out-circ() {
|
81
|
+
@return cubic-bezier(0.785, 0.135, 0.150, 0.860);
|
82
|
+
}
|
@@ -0,0 +1,25 @@
|
|
1
|
+
/**
|
2
|
+
* Image dimensions
|
3
|
+
*/
|
4
|
+
@mixin image-dimensions($image) {
|
5
|
+
width: image-width($image);
|
6
|
+
height: image-height($image);
|
7
|
+
}
|
8
|
+
|
9
|
+
/**
|
10
|
+
* Cross browser RGBA
|
11
|
+
*/
|
12
|
+
@mixin rgba(
|
13
|
+
$color,
|
14
|
+
$opacity,
|
15
|
+
$ie-filter: true
|
16
|
+
) {
|
17
|
+
$rgba: rgba($color, $opacity);
|
18
|
+
@if $ie-filter and ($legacy-support-for-ie6 or $legacy-support-for-ie7 or $legacy-support-for-ie8) {
|
19
|
+
background-color: transparent;
|
20
|
+
@include filter-gradient($rgba, $rgba);
|
21
|
+
} @else {
|
22
|
+
background-color: $color;
|
23
|
+
}
|
24
|
+
background-color: rgba($color, $opacity);
|
25
|
+
}
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
metadata
ADDED
@@ -0,0 +1,79 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: compass-easel
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.2
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Fusionary
|
9
|
+
- Tim Kelty
|
10
|
+
- Karl Swedberg
|
11
|
+
autorequire:
|
12
|
+
bindir: bin
|
13
|
+
cert_chain: []
|
14
|
+
date: 2012-01-20 00:00:00.000000000Z
|
15
|
+
dependencies:
|
16
|
+
- !ruby/object:Gem::Dependency
|
17
|
+
name: compass
|
18
|
+
requirement: &70223270452260 !ruby/object:Gem::Requirement
|
19
|
+
none: false
|
20
|
+
requirements:
|
21
|
+
- - ! '>='
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 0.11.7
|
24
|
+
type: :runtime
|
25
|
+
prerelease: false
|
26
|
+
version_requirements: *70223270452260
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: compass-growl
|
29
|
+
requirement: &70223270454720 !ruby/object:Gem::Requirement
|
30
|
+
none: false
|
31
|
+
requirements:
|
32
|
+
- - ! '>='
|
33
|
+
- !ruby/object:Gem::Version
|
34
|
+
version: 0.0.5
|
35
|
+
type: :runtime
|
36
|
+
prerelease: false
|
37
|
+
version_requirements: *70223270454720
|
38
|
+
description:
|
39
|
+
email: tim@fusionary.com
|
40
|
+
executables: []
|
41
|
+
extensions: []
|
42
|
+
extra_rdoc_files: []
|
43
|
+
files:
|
44
|
+
- README.markdown
|
45
|
+
- lib/easel.rb
|
46
|
+
- stylesheets/_easel.scss
|
47
|
+
- stylesheets/easel/_easing.scss
|
48
|
+
- stylesheets/easel/_utils.scss
|
49
|
+
- templates/project/_base.scss
|
50
|
+
- templates/project/ie.scss
|
51
|
+
- templates/project/manifest.rb
|
52
|
+
- templates/project/print.scss
|
53
|
+
- templates/project/screen.scss
|
54
|
+
- templates/project/site.js
|
55
|
+
homepage: http://fusionary.com/
|
56
|
+
licenses: []
|
57
|
+
post_install_message:
|
58
|
+
rdoc_options: []
|
59
|
+
require_paths:
|
60
|
+
- lib
|
61
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
62
|
+
none: false
|
63
|
+
requirements:
|
64
|
+
- - ! '>='
|
65
|
+
- !ruby/object:Gem::Version
|
66
|
+
version: '0'
|
67
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
68
|
+
none: false
|
69
|
+
requirements:
|
70
|
+
- - ! '>='
|
71
|
+
- !ruby/object:Gem::Version
|
72
|
+
version: '0'
|
73
|
+
requirements: []
|
74
|
+
rubyforge_project:
|
75
|
+
rubygems_version: 1.8.15
|
76
|
+
signing_key:
|
77
|
+
specification_version: 3
|
78
|
+
summary: Fusionary's front end development framework
|
79
|
+
test_files: []
|