euphoria 0.1.4.72 → 0.1.41

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.
Files changed (31) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +22 -11
  3. data/app/assets/javascripts/UI_Modules.coffee +1 -1
  4. data/app/assets/stylesheets/euphoria/components/_buttons.sass +94 -57
  5. data/app/assets/stylesheets/euphoria/components/_forms.sass +10 -10
  6. data/app/assets/stylesheets/euphoria/components/_menus.sass +10 -3
  7. data/app/assets/stylesheets/euphoria/components/_tables.sass +50 -55
  8. data/app/assets/stylesheets/euphoria/core/_containers.sass +34 -17
  9. data/app/assets/stylesheets/euphoria/core/_grids.sass +12 -2
  10. data/app/assets/stylesheets/euphoria/core/_type.sass +25 -7
  11. data/app/assets/stylesheets/euphoria/helpers/_reset.sass +1 -0
  12. data/app/assets/stylesheets/euphoria/interface/parallax.sass +32 -61
  13. data/euphoria.gemspec +7 -7
  14. data/lib/euphoria.rb +1 -1
  15. data/lib/euphoria/version.rb +1 -1
  16. data/lib/generators/euphoria/install_generator.rb +51 -0
  17. data/lib/generators/euphoria/templates/javascripts/UI_Modules.coffee +44 -0
  18. data/lib/generators/euphoria/templates/stylesheets/euphoria/components/_buttons.sass +78 -0
  19. data/lib/generators/euphoria/templates/stylesheets/euphoria/components/_forms.sass +111 -0
  20. data/lib/generators/euphoria/templates/stylesheets/euphoria/components/_menus.sass +172 -0
  21. data/lib/generators/euphoria/templates/stylesheets/euphoria/components/_tables.sass +89 -0
  22. data/lib/generators/euphoria/templates/stylesheets/euphoria/core/_containers.sass +42 -0
  23. data/lib/generators/euphoria/templates/stylesheets/euphoria/core/_grids.sass +75 -0
  24. data/lib/generators/euphoria/templates/stylesheets/euphoria/core/_responsive.sass +20 -0
  25. data/lib/generators/euphoria/templates/stylesheets/euphoria/core/_type.sass +21 -0
  26. data/lib/generators/euphoria/templates/stylesheets/euphoria/helpers/_mixins.sass +97 -0
  27. data/lib/generators/euphoria/templates/stylesheets/euphoria/helpers/_reset.sass +104 -0
  28. data/lib/generators/euphoria/templates/stylesheets/euphoria/interface/parallax.sass +66 -0
  29. data/lib/generators/euphoria/templates/stylesheets/load.sass +14 -0
  30. metadata +33 -20
  31. data/lib/generators/install_generator.rb +0 -6
@@ -0,0 +1,104 @@
1
+ html
2
+ -webkit-font-smoothing: antialiased
3
+ -moz-osx-font-smoothing: grayscale
4
+ height: 100%
5
+ body
6
+ margin: 0
7
+ padding: 0
8
+ overflow-x: hidden
9
+
10
+ *, *:before, *:after
11
+ -webkit-box-sizing: border-box
12
+ -moz-box-sizing: border-box
13
+ box-sizing: border-box
14
+ h1,
15
+ h2,
16
+ h3,
17
+ h4,
18
+ p,
19
+ blockquote,
20
+ figure,
21
+ ol,
22
+ ul
23
+ margin: 0
24
+ padding: 0
25
+
26
+ li
27
+ display: block
28
+
29
+ h1,
30
+ h2,
31
+ h3,
32
+ h4
33
+ font-size: inherit
34
+
35
+ a
36
+ text-decoration: none
37
+ color: inherit
38
+ -webkit-transition: .3s
39
+ -moz-transition: .3s
40
+ transition: .3s
41
+
42
+ img
43
+ max-width: 100%
44
+ height: auto
45
+ border: 0
46
+
47
+ input[type="text"],
48
+ input[type="url"],
49
+ input[type="tel"],
50
+ input[type="email"],
51
+ input[type="password"]
52
+ -webkit-box-sizing: border-box
53
+ -moz-box-sizing: border-box
54
+ box-sizing: border-box
55
+ margin: 0
56
+ max-width: 100%
57
+ line-height: 1
58
+ padding: 1%
59
+
60
+ input
61
+ &[type="checkbox"], &[type="radio"]
62
+ box-sizing: border-box
63
+ padding: 0
64
+ &[type="number"]
65
+ &::-webkit-inner-spin-button, &::-webkit-outer-spin-button
66
+ height: auto
67
+ &[type="search"]
68
+ -webkit-appearance: textfield
69
+ -moz-box-sizing: content-box
70
+ -webkit-box-sizing: content-box
71
+ box-sizing: content-box
72
+ &::-webkit-search-cancel-button, &::-webkit-search-decoration
73
+ -webkit-appearance: none
74
+
75
+ input[type="search"]::-webkit-search-cancel-button,
76
+ input[type="search"]::-webkit-search-decoration
77
+ -webkit-appearance: none
78
+
79
+
80
+ fieldset
81
+ border: 1px solid #c0c0c0
82
+ margin: 0 2px
83
+ padding: 0.35rem 0.625rem 0.75rem
84
+
85
+ button,input,optgroup,select,textarea
86
+ color: inherit
87
+ font: inherit
88
+ margin: 0
89
+
90
+ button, html input[type="button"]
91
+ -webkit-appearance: button
92
+ cursor: pointer
93
+
94
+ input
95
+ &[type="reset"], &[type="submit"]
96
+ -webkit-appearance: button
97
+ cursor: pointer
98
+
99
+ button[disabled], html input[disabled]
100
+ cursor: default
101
+
102
+ button::-moz-focus-inner, input::-moz-focus-inner
103
+ border: 0
104
+ padding: 0
@@ -0,0 +1,66 @@
1
+ .parallax-ui
2
+ height: 100vh
3
+ overflow-x: hidden
4
+ overflow-y: auto
5
+ -webkit-perspective: 1px
6
+ perspective: 1px
7
+ .content
8
+ margin-top: 350px
9
+ padding: 2%
10
+ background-color: white
11
+ min-height: 100vh
12
+ .layer
13
+ position: absolute
14
+ top: 0
15
+ left: 0
16
+ right: 0
17
+ bottom: 0
18
+
19
+
20
+ .front
21
+ -webkit-transform: translateZ(0)
22
+ transform: translateZ(0)
23
+
24
+
25
+ .back
26
+ position: absolute
27
+ left: 32.5%
28
+ margin-top: 100px
29
+ width: 50%
30
+ margin-top: 95px
31
+ width: 56.35%
32
+ height: 33vh
33
+ -webkit-transform: translateZ(-1px) scale(3.95,5)
34
+ transform: translateZ(-1px) scale(3.95,5)
35
+
36
+ /*=============================================================================
37
+ ** Template must proceed as face and back
38
+ **============================================================================
39
+ .parallax
40
+ .parallax-group
41
+ .parallax-layer.parallax-face data-img-src="http://data.techtimes.com/data/images/full/14563/batman-arkham-knight-gamescom-5-jpg.jpg"
42
+ h1.light First layer front
43
+ .parallax-group
44
+ .parallax-layer.parallax-back data-img-src="http://data.techtimes.com/data/images/full/14563/batman-arkham-knight-gamescom-5-jpg.jpg"
45
+ h1.dark Second layer back
46
+ .parallax-layer.parallax-face
47
+ .parallax-group
48
+ .parallax-layer.parallax-back.fix data-img-src="http://data.techtimes.com/data/images/full/14563/batman-arkham-knight-gamescom-5-jpg.jpg"
49
+ h1.dark Thrird layer back
50
+ .parallax-layer.parallax-face.fix
51
+ .parallax-group
52
+ .parallax-layer.parallax-back data-img-src="http://data.techtimes.com/data/images/full/14563/batman-arkham-knight-gamescom-5-jpg.jpg"
53
+ h1.dark Second layer back
54
+ .parallax-layer.parallax-face
55
+ .parallax-group
56
+ .parallax-layer.parallax-back.fix data-img-src="http://data.techtimes.com/data/images/full/14563/batman-arkham-knight-gamescom-5-jpg.jpg"
57
+ h1.dark Thrird layer back
58
+ .parallax-layer.parallax-face.fix
59
+ .parallax-group
60
+ .parallax-layer.parallax-back data-img-src="http://data.techtimes.com/data/images/full/14563/batman-arkham-knight-gamescom-5-jpg.jpg"
61
+ h1.dark Second layer back
62
+ .parallax-layer.parallax-face
63
+ .parallax-group
64
+ .parallax-layer.parallax-back.fix data-img-src="http://data.techtimes.com/data/images/full/14563/batman-arkham-knight-gamescom-5-jpg.jpg"
65
+ h1.dark Thrird layer back
66
+ .parallax-layer.parallax-face.fix
@@ -0,0 +1,14 @@
1
+ @import "euphoria/helpers/reset.sass"
2
+ @import "euphoria/helpers/mixins.sass"
3
+
4
+ @import "euphoria/core/responsive.sass"
5
+ @import "euphoria/core/containers.sass"
6
+ @import "euphoria/core/grids.sass"
7
+ @import "euphoria/core/type.sass"
8
+
9
+ @import "euphoria/components/buttons.sass"
10
+ @import "euphoria/components/forms.sass"
11
+ @import "euphoria/components/menus.sass"
12
+ @import "euphoria/components/tables.sass"
13
+
14
+ @import "euphoria/interface/parallax.sass"
metadata CHANGED
@@ -1,43 +1,43 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: euphoria
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4.72
4
+ version: 0.1.41
5
5
  platform: ruby
6
6
  authors:
7
7
  - paul brunache
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2015-05-22 00:00:00.000000000 Z
11
+ date: 2015-07-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: bundler
14
+ name: font-awesome-rails
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '1.9'
20
- type: :development
19
+ version: 4.3.0.0
20
+ type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '1.9'
26
+ version: 4.3.0.0
27
27
  - !ruby/object:Gem::Dependency
28
- name: rake
28
+ name: coffee-rails
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '10.0'
34
- type: :development
33
+ version: 4.1.0
34
+ type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '10.0'
40
+ version: 4.1.0
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: sass-rails
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -45,7 +45,7 @@ dependencies:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
47
  version: 5.0.1
48
- type: :development
48
+ type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
@@ -53,33 +53,33 @@ dependencies:
53
53
  - !ruby/object:Gem::Version
54
54
  version: 5.0.1
55
55
  - !ruby/object:Gem::Dependency
56
- name: coffee-rails
56
+ name: bundler
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
59
  - - "~>"
60
60
  - !ruby/object:Gem::Version
61
- version: 4.1.0
61
+ version: '1.10'
62
62
  type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
- version: 4.1.0
68
+ version: '1.10'
69
69
  - !ruby/object:Gem::Dependency
70
- name: font-awesome-rails
70
+ name: rake
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
73
  - - "~>"
74
74
  - !ruby/object:Gem::Version
75
- version: 4.3.0.0
75
+ version: '10.0'
76
76
  type: :development
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
- version: 4.3.0.0
82
+ version: '10.0'
83
83
  description:
84
84
  email:
85
85
  - paulbrunache@gmail.com
@@ -112,7 +112,20 @@ files:
112
112
  - euphoria.gemspec
113
113
  - lib/euphoria.rb
114
114
  - lib/euphoria/version.rb
115
- - lib/generators/install_generator.rb
115
+ - lib/generators/euphoria/install_generator.rb
116
+ - lib/generators/euphoria/templates/javascripts/UI_Modules.coffee
117
+ - lib/generators/euphoria/templates/stylesheets/euphoria/components/_buttons.sass
118
+ - lib/generators/euphoria/templates/stylesheets/euphoria/components/_forms.sass
119
+ - lib/generators/euphoria/templates/stylesheets/euphoria/components/_menus.sass
120
+ - lib/generators/euphoria/templates/stylesheets/euphoria/components/_tables.sass
121
+ - lib/generators/euphoria/templates/stylesheets/euphoria/core/_containers.sass
122
+ - lib/generators/euphoria/templates/stylesheets/euphoria/core/_grids.sass
123
+ - lib/generators/euphoria/templates/stylesheets/euphoria/core/_responsive.sass
124
+ - lib/generators/euphoria/templates/stylesheets/euphoria/core/_type.sass
125
+ - lib/generators/euphoria/templates/stylesheets/euphoria/helpers/_mixins.sass
126
+ - lib/generators/euphoria/templates/stylesheets/euphoria/helpers/_reset.sass
127
+ - lib/generators/euphoria/templates/stylesheets/euphoria/interface/parallax.sass
128
+ - lib/generators/euphoria/templates/stylesheets/load.sass
116
129
  homepage: https://github.com/PaulBrunache/Euphoria
117
130
  licenses:
118
131
  - MIT
@@ -133,8 +146,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
133
146
  version: '0'
134
147
  requirements: []
135
148
  rubyforge_project:
136
- rubygems_version: 2.4.5
149
+ rubygems_version: 2.4.6
137
150
  signing_key:
138
151
  specification_version: 4
139
- summary: Yet another grid framework for the web built with components from flexbox
152
+ summary: Custom sass templating framework for rails
140
153
  test_files: []
@@ -1,6 +0,0 @@
1
- require "../euphoria"
2
-
3
- module Euphoria
4
- class Engine < Rails::Engine
5
- end
6
- end