pxt-core 7.5.27 → 7.5.30

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.
@@ -1,56 +0,0 @@
1
- .extensionCard.loading {
2
- background: @loadingAnimation;
3
- background-size: 400% 400%;
4
- animation: gradient 3s infinite alternate;
5
- }
6
-
7
- @keyframes gradient {
8
- 0% {
9
- background-position: 0% 50%;
10
- }
11
- 50% {
12
- background-position: 100% 50%;
13
- }
14
- 100% {
15
- background-position: 0% 50%;
16
- }
17
- }
18
-
19
- .extensionCard.ui.card {
20
- height: 19rem;
21
- display: flex;
22
- justify-content: space-between;
23
- margin: 0;
24
- overflow: hidden;
25
-
26
- img {
27
- height: 11rem;
28
- }
29
-
30
- .content {
31
- justify-content: flex-start;
32
- display: flex;
33
- flex-direction: column;
34
- padding: 0.2em 1em;
35
- }
36
-
37
- .name {
38
- font-family: @defaultFont;
39
- font-weight: 600;
40
- font-size: 1.5rem;
41
- line-height: 1.6rem;
42
- padding-top: .5rem;
43
- }
44
-
45
- .description {
46
- font-weight: 400;
47
- text-overflow: ellipsis;
48
- padding-top: .8rem;
49
- font-size: 1rem;
50
- }
51
-
52
- .learnmore {
53
- font-size: 1rem;
54
- align-self: flex-end;
55
- }
56
- }