sakura_rails 0.1.8 → 0.1.9

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0bb33f70a3920a2928cebfea02bf71e7d583f4074b973593dbf3bd4f3995184d
4
- data.tar.gz: 7ab16e880fa0f1ecca7aa847a7e3325fc9e7598d5c034bd5b5c4859cb7f9788e
3
+ metadata.gz: 3df201a87aefcfab225c5fa537e070c74edab4fa5b77b7b34cbc74777c84b890
4
+ data.tar.gz: 293fb0349201b5192847ae41936e41cdef0c26430db2f34d2783423b6dfda012
5
5
  SHA512:
6
- metadata.gz: 95f76f82500c6c3d0640db46f77d8f819795fefd552c5cd031a9b3888728ad2df3bfae20f7e4fca3de2690bcac41599f4f3a8155f0c8efcd078637e1f14ef5e4
7
- data.tar.gz: 9441de5a5529bc2b7c685aea456d05fb392285913e8aae6a920d7081cc8b3a10bf4b84d77c32d9782d11218eefbe61194d66a465e8036e0a5cbe7f35795f58bd
6
+ metadata.gz: a92a8ca3639e5d18cbc914bd51cc6b06aa89ddb404098d424bd4847bb284083b8766f0b5060470e1af1b251edfba068ad5f0ccf681525e68b5cba6b6cdab087e
7
+ data.tar.gz: 33605d1837529dd9a1a9a09b015565abeabaac6600b3216b39c06e7f49116acff97b5fb1fd768926dd1e6e585ccfc32a6879717aab0cfe9084fd34929359fbc2
@@ -0,0 +1,15 @@
1
+ /*
2
+ * This is a manifest file that'll be compiled into application.css, which will include all the files
3
+ * listed below.
4
+ *
5
+ * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
+ * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
7
+ *
8
+ * You're free to add application-wide styles to this file and they'll appear at the bottom of the
9
+ * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
10
+ * files in this directory. Styles in this file should be added after the last require_* statement.
11
+ * It is generally better to create a new file per style scope.
12
+ *
13
+ *= require_tree .
14
+ *= require_self
15
+ */
@@ -1,3 +1,3 @@
1
1
  module SakuraRails
2
- VERSION = '0.1.8'
2
+ VERSION = '0.1.9'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sakura_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.8
4
+ version: 0.1.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - satoshi ono
@@ -35,10 +35,8 @@ files:
35
35
  - README.md
36
36
  - Rakefile
37
37
  - app/assets/config/sakura_rails_manifest.js
38
- - app/assets/images/sakura_rails/sakura.png
39
38
  - app/assets/javascripts/sakura_rails/application.js
40
- - app/assets/stylesheets/sakura_rails/application.scss
41
- - app/assets/stylesheets/sakura_rails/sakura.scss
39
+ - app/assets/stylesheets/sakura_rails/application.css
42
40
  - app/controllers/sakura_rails/application_controller.rb
43
41
  - app/helpers/sakura_rails/application_helper.rb
44
42
  - app/jobs/sakura_rails/application_job.rb
@@ -1 +0,0 @@
1
- @import "sakura_rails/sakura.scss"
@@ -1,142 +0,0 @@
1
- section .inner div {
2
- opacity: 0;
3
- -webkit-transform-origin: 0px 0px;
4
- -ms-transform-origin: 0px 0px;
5
- transform-origin: 0px 0px;
6
- -webkit-animation-name: Drop;
7
- animation-name: Drop;
8
- -webkit-animation-iteration-count: infinite;
9
- animation-iteration-count: infinite;
10
- -webkit-animation-timing-function: linear;
11
- animation-timing-function: linear;
12
- -webkit-animation-fill-mode: forwards;
13
- animation-fill-mode: forwards;
14
- }
15
-
16
- #sakura .inner div {
17
- position: absolute;
18
- display: block;
19
- width: 10px;
20
- height: 15px;
21
- background: url("images/sakura_rails/sakura.png") no-repeat;
22
- }
23
-
24
- #sakura .inner div.flake2,
25
- #sakura .inner div.flake4,
26
- #sakura .inner div.flake6,
27
- #sakura .inner div.flake8 {
28
- background-size: 5px 6px !important;
29
- }
30
-
31
-
32
- .flake1 {
33
- left: 20px;
34
- -webkit-animation-duration: 2.5s;
35
- animation-duration: 2.5s;
36
- }
37
-
38
- .flake2 {
39
- left: 40px;
40
- -webkit-animation-duration: 2.7s;
41
- animation-duration: 2.7s;
42
- -webkit-animation-delay: 0.2s;
43
- animation-delay: 0.2s;
44
- }
45
-
46
- .flake3 {
47
- left: 60px;
48
- -webkit-animation-duration: 2.9s;
49
- animation-duration: 2.9s;
50
- -webkit-animation-delay: 0.4s;
51
- animation-delay: 0.4s;
52
- }
53
-
54
- .flake4 {
55
- left: 80px;
56
- -webkit-animation-duration: 2.4s;
57
- animation-duration: 2.4s;
58
- -webkit-animation-delay: 0s;
59
- animation-delay: 0s;
60
- }
61
-
62
- .flake5 {
63
- left: 100px;
64
- -webkit-animation-duration: 2.4s;
65
- animation-duration: 2.4s;
66
- -webkit-animation-delay: 1s;
67
- animation-delay: 1s;
68
- }
69
-
70
- .flake6 {
71
- left: 150px;
72
- -webkit-animation-duration: 2.2s;
73
- animation-duration: 2.2s;
74
- -webkit-animation-delay: 1.2s;
75
- animation-delay: 1.2s;
76
- }
77
-
78
- .flake7 {
79
- left: 170px;
80
- -webkit-animation-duration: 2.7s;
81
- animation-duration: 2.7s;
82
- -webkit-animation-delay: 1.2s;
83
- animation-delay: 1.2s;
84
- }
85
-
86
- .flake8 {
87
- left: 200px;
88
- -webkit-animation-duration: 3s;
89
- animation-duration: 3s;
90
- -webkit-animation-delay: 1.4s;
91
- animation-delay: 1.4s;
92
- }
93
- @-webkit-keyframes Drop {
94
- 0% {
95
- -webkit-transform: translateY(0px);
96
- transform: translateY(0px);
97
- opacity: 0;
98
- }
99
-
100
- 50% {
101
- -webkit-transform: translateY(50px);
102
- transform: translateY(50px);
103
- opacity: 1;
104
- }
105
-
106
- 100% {
107
- -webkit-transform: translateY(100px);
108
- transform: translateY(100px);
109
- opacity: 0.3;
110
- }
111
- }
112
-
113
-
114
- #snow .inner div {
115
- position: absolute;
116
- display: block;
117
- width: 5px;
118
- height: 5px;
119
- border-radius: 2.5px;
120
- background: #fff;
121
- }
122
-
123
- @keyframes Drop {
124
- 0% {
125
- -webkit-transform: translateY(0px);
126
- transform: translateY(0px);
127
- opacity: 0;
128
- }
129
-
130
- 50% {
131
- -webkit-transform: translateY(50px);
132
- transform: translateY(50px);
133
- opacity: 1;
134
- }
135
-
136
- 100% {
137
- -webkit-transform: translateY(100px);
138
- transform: translateY(100px);
139
- opacity: 0.3;
140
- }
141
- }
142
-