bullet_train-themes-light 1.0.24 → 1.0.27
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.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ced7678083d75ccc4b099fc7f6d3540891a48d96fcbf0556c7b4380cddef9ef9
|
4
|
+
data.tar.gz: ce97cd3e2ca0b51993bdf3d720a588332293823578c39eb335cd4a3da2976072
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 102d6281899fbe10830b9b1f738ec2b6f96deb15afa903c40da1a1f35667cd71a4f3d203c6a2711e375d4659d4c23189e47784f330634a0dc86c436b75b352ed
|
7
|
+
data.tar.gz: 7e2c0ba00aaed186f510195e58d18408b17ddfc8dc566dd8ad48525337038d2b8e00e67cec53c4649b52d99a3304f02419614b8ebbb1a10114b7008e637a963f
|
@@ -0,0 +1,44 @@
|
|
1
|
+
[data-turn-exit],
|
2
|
+
[data-turn-enter] {
|
3
|
+
animation-timing-function: cubic-bezier(0.65, 0.05, 0.35, 1);
|
4
|
+
animation-fill-mode: forwards;
|
5
|
+
}
|
6
|
+
|
7
|
+
html.turn-exit [data-turn-exit] {
|
8
|
+
animation-name: fade-out-up;
|
9
|
+
animation-duration: .3s;
|
10
|
+
}
|
11
|
+
|
12
|
+
html.turn-enter [data-turn-enter] {
|
13
|
+
animation-name: fade-in-up;
|
14
|
+
animation-duration: .6s;
|
15
|
+
}
|
16
|
+
|
17
|
+
html.turn-before-exit [data-turn-exit],
|
18
|
+
html.turn-exit [data-turn-exit] {
|
19
|
+
will-change: transform, opacity;
|
20
|
+
}
|
21
|
+
|
22
|
+
@keyframes fade-out-up {
|
23
|
+
0% {
|
24
|
+
opacity: 1;
|
25
|
+
transform: translateZ(0)
|
26
|
+
}
|
27
|
+
|
28
|
+
100% {
|
29
|
+
opacity: 0;
|
30
|
+
transform: translate3d(0, -4rem, 0)
|
31
|
+
}
|
32
|
+
}
|
33
|
+
|
34
|
+
@keyframes fade-in-up {
|
35
|
+
0% {
|
36
|
+
opacity: 0;
|
37
|
+
transform: translate3d(0, 4rem, 0)
|
38
|
+
}
|
39
|
+
|
40
|
+
100% {
|
41
|
+
opacity: 1;
|
42
|
+
transform: translateZ(0)
|
43
|
+
}
|
44
|
+
}
|
@@ -4,7 +4,7 @@
|
|
4
4
|
<%= render 'shared/layouts/head' %>
|
5
5
|
</head>
|
6
6
|
<body class="bg-light-gradient text-gray-700 text-sm font-normal electron-draggable dark:bg-dark-gradient dark:text-darkPrimary-300">
|
7
|
-
<div data-
|
7
|
+
<div data-turn-enter data-turn-exit>
|
8
8
|
<%= yield %>
|
9
9
|
</div>
|
10
10
|
</body>
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bullet_train-themes-light
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.27
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andrew Culver
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-06-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -65,6 +65,7 @@ files:
|
|
65
65
|
- app/assets/stylesheets/light/tailwind/components.css
|
66
66
|
- app/assets/stylesheets/light/tailwind/dark-mode.css
|
67
67
|
- app/assets/stylesheets/light/tailwind/utilities.css
|
68
|
+
- app/assets/stylesheets/light/turn.css
|
68
69
|
- app/assets/stylesheets/tailwindcss/base.css
|
69
70
|
- app/assets/stylesheets/tailwindcss/components.css
|
70
71
|
- app/assets/stylesheets/tailwindcss/utilities.css
|