deepsea-components 2.1.3 → 2.2.0
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.
- package/dist/cjs/skeleton.css +18 -0
- package/dist/esm/skeleton.css +18 -0
- package/package.json +1 -1
- package/src/skeleton.css +18 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
@keyframes deepsea-shimmer {
|
|
2
|
+
0% {
|
|
3
|
+
background-position: -400px 0px;
|
|
4
|
+
}
|
|
5
|
+
100% {
|
|
6
|
+
background-position: 400px 0px;
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.deepsea-skeleton {
|
|
11
|
+
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.067) 8%, rgba(0, 0, 0, 0.133) 18%, rgba(0, 0, 0, 0.067) 33%);
|
|
12
|
+
animation-duration: 1s;
|
|
13
|
+
animation-fill-mode: forwards;
|
|
14
|
+
animation-iteration-count: infinite;
|
|
15
|
+
animation-name: deepsea-shimmer;
|
|
16
|
+
animation-timing-function: linear;
|
|
17
|
+
background-size: 800px 104px;
|
|
18
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
@keyframes deepsea-shimmer {
|
|
2
|
+
0% {
|
|
3
|
+
background-position: -400px 0px;
|
|
4
|
+
}
|
|
5
|
+
100% {
|
|
6
|
+
background-position: 400px 0px;
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.deepsea-skeleton {
|
|
11
|
+
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.067) 8%, rgba(0, 0, 0, 0.133) 18%, rgba(0, 0, 0, 0.067) 33%);
|
|
12
|
+
animation-duration: 1s;
|
|
13
|
+
animation-fill-mode: forwards;
|
|
14
|
+
animation-iteration-count: infinite;
|
|
15
|
+
animation-name: deepsea-shimmer;
|
|
16
|
+
animation-timing-function: linear;
|
|
17
|
+
background-size: 800px 104px;
|
|
18
|
+
}
|
package/package.json
CHANGED
package/src/skeleton.css
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
@keyframes deepsea-shimmer {
|
|
2
|
+
0% {
|
|
3
|
+
background-position: -400px 0px;
|
|
4
|
+
}
|
|
5
|
+
100% {
|
|
6
|
+
background-position: 400px 0px;
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.deepsea-skeleton {
|
|
11
|
+
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.067) 8%, rgba(0, 0, 0, 0.133) 18%, rgba(0, 0, 0, 0.067) 33%);
|
|
12
|
+
animation-duration: 1s;
|
|
13
|
+
animation-fill-mode: forwards;
|
|
14
|
+
animation-iteration-count: infinite;
|
|
15
|
+
animation-name: deepsea-shimmer;
|
|
16
|
+
animation-timing-function: linear;
|
|
17
|
+
background-size: 800px 104px;
|
|
18
|
+
}
|