@featherk/styles 0.2.3 → 0.3.1
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/v1/css/featherk-q3-2024-v1.css +1 -1
- package/dist/v1/external-styles/featherk-overrides--k-loader.css +59 -0
- package/dist/v1/scss/_externalStyles.scss +5 -0
- package/dist/v1/scss/_fonts.scss +63 -0
- package/dist/v1/scss/_kendo.scss +5 -0
- package/dist/v1/scss/_overrides.scss +4605 -0
- package/dist/v1/scss/_placeholders.scss +7 -0
- package/dist/v1/scss/_tokens.scss +721 -0
- package/dist/v1/scss/index.scss +9 -0
- package/package.json +1 -1
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
.fk-loader {
|
|
2
|
+
--fk-loader-size: 48px;
|
|
3
|
+
--fk-loader-small: 32px;
|
|
4
|
+
--fk-loader-medium: 48px;
|
|
5
|
+
--fk-loader-large: 64px;
|
|
6
|
+
|
|
7
|
+
inset: 0;
|
|
8
|
+
margin: auto;
|
|
9
|
+
width: var(--fk-loader-size, var(--fk-loader-medium, 48px));
|
|
10
|
+
height: var(--fk-loader-size, var(--fk-loader-medium, 48px));
|
|
11
|
+
position: absolute;
|
|
12
|
+
border-radius: 50%;
|
|
13
|
+
background-color: var(--kendo-color-surface);
|
|
14
|
+
background-color: transparent;
|
|
15
|
+
animation: rotate-loader 0.875s linear infinite;
|
|
16
|
+
}
|
|
17
|
+
.fk-loader::before {
|
|
18
|
+
content: "";
|
|
19
|
+
box-sizing: border-box;
|
|
20
|
+
position: absolute;
|
|
21
|
+
inset: 4px;
|
|
22
|
+
border-radius: 50%;
|
|
23
|
+
border: calc(var(--fk-loader-size, 48px) / 8) solid;
|
|
24
|
+
border-color: var(--kendo-color-primary);
|
|
25
|
+
animation: clip-loader 2s linear alternate infinite;
|
|
26
|
+
}
|
|
27
|
+
.fk-loader::after {
|
|
28
|
+
/* content: ""; */
|
|
29
|
+
width: 8px;
|
|
30
|
+
height: 8px;
|
|
31
|
+
inset: 12px;
|
|
32
|
+
position: absolute;
|
|
33
|
+
border-radius: 50%;
|
|
34
|
+
background-color: var(--kendo-color-primary-subtle-active);
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
@keyframes rotate-loader {
|
|
38
|
+
100% {
|
|
39
|
+
transform: rotate(360deg);
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
@keyframes clip-loader {
|
|
44
|
+
0% {
|
|
45
|
+
clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
|
|
46
|
+
}
|
|
47
|
+
25% {
|
|
48
|
+
clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
|
|
49
|
+
}
|
|
50
|
+
50% {
|
|
51
|
+
clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
|
|
52
|
+
}
|
|
53
|
+
75% {
|
|
54
|
+
clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
|
|
55
|
+
}
|
|
56
|
+
100% {
|
|
57
|
+
clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
|
|
58
|
+
}
|
|
59
|
+
}
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: Inter;
|
|
3
|
+
src: url('../fonts/Inter-Regular.woff2') format('woff2');
|
|
4
|
+
font-style: normal;
|
|
5
|
+
font-weight: 400;
|
|
6
|
+
font-display: auto;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
@font-face {
|
|
10
|
+
font-family: Inter;
|
|
11
|
+
src: url('../fonts/Inter-Medium.woff2') format('woff2');
|
|
12
|
+
font-style: normal;
|
|
13
|
+
font-weight: 500;
|
|
14
|
+
font-display: auto;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
@font-face {
|
|
18
|
+
font-family: Inter;
|
|
19
|
+
src: url('../fonts/Inter-BoldItalic.woff2') format('woff2');
|
|
20
|
+
font-style: italic;
|
|
21
|
+
font-weight: 700;
|
|
22
|
+
font-display: auto;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
@font-face {
|
|
26
|
+
font-family: Inter;
|
|
27
|
+
src: url('../fonts/Inter-Light.woff2') format('woff2');
|
|
28
|
+
font-style: normal;
|
|
29
|
+
font-weight: 300;
|
|
30
|
+
font-display: auto;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
@font-face {
|
|
34
|
+
font-family: Inter;
|
|
35
|
+
src: url('../fonts/Inter-LightItalic.woff2') format('woff2');
|
|
36
|
+
font-style: italic;
|
|
37
|
+
font-weight: 300;
|
|
38
|
+
font-display: auto;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
@font-face {
|
|
42
|
+
font-family: Inter;
|
|
43
|
+
src: url('../fonts/Inter-Bold.woff2') format('woff2');
|
|
44
|
+
font-style: normal;
|
|
45
|
+
font-weight: 700;
|
|
46
|
+
font-display: auto;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
@font-face {
|
|
50
|
+
font-family: Inter;
|
|
51
|
+
src: url('../fonts/Inter-MediumItalic.woff2') format('woff2');
|
|
52
|
+
font-style: italic;
|
|
53
|
+
font-weight: 500;
|
|
54
|
+
font-display: auto;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
@font-face {
|
|
58
|
+
font-family: Inter;
|
|
59
|
+
src: url('../fonts/Inter-Italic.woff2') format('woff2');
|
|
60
|
+
font-style: italic;
|
|
61
|
+
font-weight: 400;
|
|
62
|
+
font-display: auto;
|
|
63
|
+
}
|