monkey-style-guide 2.0.201 → 2.0.202
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.
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/**************************
|
|
2
|
+
* Copyright Monkey Exchange. All Rights Reserved
|
|
3
|
+
* This style guide was developed by Monkey Exchange Team
|
|
4
|
+
* MIT Licence
|
|
5
|
+
**************************/
|
|
6
|
+
.mecx-skeleton {
|
|
7
|
+
animation: mecx-skeleton-loading 1s linear infinite alternate;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
@keyframes mecx-skeleton-loading {
|
|
11
|
+
0% {
|
|
12
|
+
background-color: #d1dbe0;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
100% {
|
|
16
|
+
background-color: #f0f3f5;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.mecx-loading {
|
|
21
|
+
@extend .mecx-skeleton;
|
|
22
|
+
|
|
23
|
+
width: 100%;
|
|
24
|
+
height: 12px;
|
|
25
|
+
margin-bottom: 8px;
|
|
26
|
+
border-radius: 8px;
|
|
27
|
+
|
|
28
|
+
&.md {
|
|
29
|
+
height: 30px;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
&.lg {
|
|
33
|
+
height: 48px;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
Binary file
|