@rtstic.dev/pulse 0.0.55 → 0.0.56
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/form/book-a-demo.js +679 -2
- package/dist/form/index.js +962 -2
- package/dist/form/index.js.map +2 -2
- package/dist/form/pricing.css +2 -0
- package/dist/form/pricing.js +790 -2
- package/dist/form/styles.css +140 -1
- package/dist/global/accordions-v2.js +262 -1
- package/dist/global/accordions.js +237 -1
- package/dist/global/faqs.js +116 -1
- package/dist/global/loader.js +76 -1
- package/dist/global/styles.css +252 -1
- package/dist/home/depth.js +243 -3
- package/dist/home/hero-animation/loader.js +67810 -1397
- package/dist/home/hero-animation/scroll.js +401 -1
- package/dist/home/hero-animation/styles.css +233 -1
- package/dist/home/hero-animation/torch.js +62 -1
- package/dist/home/horizontal-scroll.css +49 -1
- package/dist/home/horizontal-scroll.js +140 -1
- package/dist/home/tabs-v2.js +134 -1
- package/dist/home/tabs.js +163 -1
- package/dist/lever/styles.css +31 -1
- package/dist/marquee/index.js +557 -2
- package/dist/marquee/styles.css +26 -1
- package/dist/slider/freescroll-cards.js +51 -1
- package/dist/slider/freescroll-slider.js +31 -1
- package/dist/slider/testimonial.js +30 -1
- package/package.json +3 -3
package/dist/global/faqs.js
CHANGED
|
@@ -1 +1,116 @@
|
|
|
1
|
-
"use strict";
|
|
1
|
+
"use strict";
|
|
2
|
+
(() => {
|
|
3
|
+
// src/global/faqs.ts
|
|
4
|
+
document.addEventListener("DOMContentLoaded", () => {
|
|
5
|
+
const items = document.querySelectorAll('[data-acc="item"]');
|
|
6
|
+
items.forEach((item) => {
|
|
7
|
+
const toggle = item.querySelector('[data-acc="toggle"]');
|
|
8
|
+
const panel = item.querySelector('[data-acc="panel"]');
|
|
9
|
+
const inner = item.querySelector('[data-acc="inner"]');
|
|
10
|
+
const xLine = item.querySelector('[data-acc="x-line"]');
|
|
11
|
+
const yLine = item.querySelector('[data-acc="y-line"]');
|
|
12
|
+
const divider = item.querySelector('[data-acc="divider"]');
|
|
13
|
+
if (!toggle || !panel || !inner) return;
|
|
14
|
+
gsap.set(panel, { height: 0, overflow: "hidden" });
|
|
15
|
+
gsap.set(inner, { opacity: 0 });
|
|
16
|
+
toggle.setAttribute("aria-expanded", "false");
|
|
17
|
+
if (xLine && yLine) {
|
|
18
|
+
gsap.set(xLine, { rotation: 0 });
|
|
19
|
+
gsap.set(yLine, { rotation: 0 });
|
|
20
|
+
}
|
|
21
|
+
if (divider) {
|
|
22
|
+
gsap.set(divider, {
|
|
23
|
+
backgroundColor: "var(--grey--grey40)"
|
|
24
|
+
});
|
|
25
|
+
}
|
|
26
|
+
let animating = false;
|
|
27
|
+
toggle.addEventListener("click", () => {
|
|
28
|
+
if (animating) return;
|
|
29
|
+
animating = true;
|
|
30
|
+
const open = toggle.getAttribute("aria-expanded") === "true";
|
|
31
|
+
if (open) {
|
|
32
|
+
collapseItem(item, () => animating = false);
|
|
33
|
+
} else {
|
|
34
|
+
expandItem(item, () => animating = false);
|
|
35
|
+
}
|
|
36
|
+
});
|
|
37
|
+
});
|
|
38
|
+
});
|
|
39
|
+
function expandItem(item, done) {
|
|
40
|
+
const toggle = item.querySelector('[data-acc="toggle"]');
|
|
41
|
+
const panel = item.querySelector('[data-acc="panel"]');
|
|
42
|
+
const inner = item.querySelector('[data-acc="inner"]');
|
|
43
|
+
const xLine = item.querySelector('[data-acc="x-line"]');
|
|
44
|
+
const yLine = item.querySelector('[data-acc="y-line"]');
|
|
45
|
+
const divider = item.querySelector('[data-acc="divider"]');
|
|
46
|
+
if (!toggle || !panel || !inner) {
|
|
47
|
+
done?.();
|
|
48
|
+
return;
|
|
49
|
+
}
|
|
50
|
+
panel.accAnim?.kill();
|
|
51
|
+
const tl = gsap.timeline({ onComplete: () => done?.() });
|
|
52
|
+
gsap.set(panel, { height: "auto", visibility: "hidden" });
|
|
53
|
+
const h = panel.offsetHeight;
|
|
54
|
+
gsap.set(panel, { height: 0, visibility: "visible", overflow: "hidden" });
|
|
55
|
+
tl.to(panel, {
|
|
56
|
+
height: h,
|
|
57
|
+
duration: 0.35,
|
|
58
|
+
ease: "power3.inOut",
|
|
59
|
+
onComplete: () => {
|
|
60
|
+
panel.style.height = "auto";
|
|
61
|
+
}
|
|
62
|
+
});
|
|
63
|
+
tl.to(inner, { opacity: 1, duration: 0.2, ease: "power2.out" }, "-=0.15");
|
|
64
|
+
if (xLine && yLine) {
|
|
65
|
+
tl.to(xLine, { rotation: 180, duration: 0.4, ease: "power2.inOut" }, 0);
|
|
66
|
+
tl.to(yLine, { rotation: 270, duration: 0.4, ease: "power2.inOut" }, 0);
|
|
67
|
+
}
|
|
68
|
+
if (divider) {
|
|
69
|
+
tl.to(
|
|
70
|
+
divider,
|
|
71
|
+
{
|
|
72
|
+
backgroundColor: "var(--grey--grey10)",
|
|
73
|
+
duration: 0.3,
|
|
74
|
+
ease: "power2.inOut"
|
|
75
|
+
},
|
|
76
|
+
0
|
|
77
|
+
);
|
|
78
|
+
}
|
|
79
|
+
panel.accAnim = tl;
|
|
80
|
+
toggle.setAttribute("aria-expanded", "true");
|
|
81
|
+
}
|
|
82
|
+
function collapseItem(item, done) {
|
|
83
|
+
const toggle = item.querySelector('[data-acc="toggle"]');
|
|
84
|
+
const panel = item.querySelector('[data-acc="panel"]');
|
|
85
|
+
const inner = item.querySelector('[data-acc="inner"]');
|
|
86
|
+
const xLine = item.querySelector('[data-acc="x-line"]');
|
|
87
|
+
const yLine = item.querySelector('[data-acc="y-line"]');
|
|
88
|
+
const divider = item.querySelector('[data-acc="divider"]');
|
|
89
|
+
if (!toggle || !panel || !inner) {
|
|
90
|
+
done?.();
|
|
91
|
+
return;
|
|
92
|
+
}
|
|
93
|
+
panel.accAnim?.kill();
|
|
94
|
+
const tl = gsap.timeline({ onComplete: () => done?.() });
|
|
95
|
+
tl.to(inner, { opacity: 0, duration: 0.15, ease: "power2.in" });
|
|
96
|
+
tl.to(panel, { height: 0, duration: 0.25, ease: "power3.inOut" }, "-=0.05");
|
|
97
|
+
if (xLine && yLine) {
|
|
98
|
+
tl.to(xLine, { rotation: 0, duration: 0.4, ease: "power2.inOut" }, 0);
|
|
99
|
+
tl.to(yLine, { rotation: 0, duration: 0.4, ease: "power2.inOut" }, 0);
|
|
100
|
+
}
|
|
101
|
+
if (divider) {
|
|
102
|
+
tl.to(
|
|
103
|
+
divider,
|
|
104
|
+
{
|
|
105
|
+
backgroundColor: "var(--grey--grey40)",
|
|
106
|
+
duration: 0.3,
|
|
107
|
+
ease: "power2.inOut"
|
|
108
|
+
},
|
|
109
|
+
0
|
|
110
|
+
);
|
|
111
|
+
}
|
|
112
|
+
panel.accAnim = tl;
|
|
113
|
+
toggle.setAttribute("aria-expanded", "false");
|
|
114
|
+
}
|
|
115
|
+
})();
|
|
116
|
+
//# sourceMappingURL=faqs.js.map
|
package/dist/global/loader.js
CHANGED
|
@@ -1 +1,76 @@
|
|
|
1
|
-
"use strict";
|
|
1
|
+
"use strict";
|
|
2
|
+
(() => {
|
|
3
|
+
// src/global/loader.ts
|
|
4
|
+
var FIRST_VISIT_KEY = "pulse-loader-visited";
|
|
5
|
+
var FIRST_VISIT_DURATION = 3e3;
|
|
6
|
+
var RETURN_VISIT_DURATION = 1e3;
|
|
7
|
+
var EXIT_DURATION = 500;
|
|
8
|
+
function hasVisited() {
|
|
9
|
+
return sessionStorage.getItem(FIRST_VISIT_KEY) === "true";
|
|
10
|
+
}
|
|
11
|
+
function markAsVisited() {
|
|
12
|
+
sessionStorage.setItem(FIRST_VISIT_KEY, "true");
|
|
13
|
+
}
|
|
14
|
+
function animateCounter(counterElement, duration) {
|
|
15
|
+
const startTime = performance.now();
|
|
16
|
+
const startValue = 0;
|
|
17
|
+
const endValue = 100;
|
|
18
|
+
function updateCounter(currentTime) {
|
|
19
|
+
const elapsed = currentTime - startTime;
|
|
20
|
+
const progress = Math.min(elapsed / duration, 1);
|
|
21
|
+
const currentValue = Math.floor(startValue + (endValue - startValue) * progress);
|
|
22
|
+
counterElement.textContent = currentValue.toString();
|
|
23
|
+
if (progress < 1) {
|
|
24
|
+
requestAnimationFrame(updateCounter);
|
|
25
|
+
} else {
|
|
26
|
+
counterElement.textContent = "100";
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
requestAnimationFrame(updateCounter);
|
|
30
|
+
}
|
|
31
|
+
function animateFill(fillElement, duration) {
|
|
32
|
+
fillElement.style.width = "0%";
|
|
33
|
+
fillElement.style.transition = `width ${duration}ms linear`;
|
|
34
|
+
requestAnimationFrame(() => {
|
|
35
|
+
fillElement.style.width = "100%";
|
|
36
|
+
});
|
|
37
|
+
}
|
|
38
|
+
function exitLoader(wrapperElement) {
|
|
39
|
+
wrapperElement.style.transition = `transform ${EXIT_DURATION}ms ease-in-out, opacity ${EXIT_DURATION}ms ease-in-out`;
|
|
40
|
+
wrapperElement.style.transform = "translateY(-100%)";
|
|
41
|
+
setTimeout(() => {
|
|
42
|
+
wrapperElement.style.display = "none";
|
|
43
|
+
document.body.style.overflow = "";
|
|
44
|
+
}, EXIT_DURATION);
|
|
45
|
+
}
|
|
46
|
+
function startLoading(wrapperElement, fillElement, counterElement, duration) {
|
|
47
|
+
document.body.style.overflow = "hidden";
|
|
48
|
+
wrapperElement.style.display = "flex";
|
|
49
|
+
animateFill(fillElement, duration);
|
|
50
|
+
if (counterElement) {
|
|
51
|
+
animateCounter(counterElement, duration);
|
|
52
|
+
}
|
|
53
|
+
setTimeout(() => {
|
|
54
|
+
exitLoader(wrapperElement);
|
|
55
|
+
}, duration);
|
|
56
|
+
markAsVisited();
|
|
57
|
+
}
|
|
58
|
+
function initPulseLoader() {
|
|
59
|
+
const wrapperElement = document.querySelector('[pulse-loader-ele="wrapper"]');
|
|
60
|
+
const fillElement = document.querySelector('[pulse-loader-ele="fill"]');
|
|
61
|
+
const counterElement = document.querySelector('[pulse-loader-ele="counter"]');
|
|
62
|
+
if (!wrapperElement || !fillElement) {
|
|
63
|
+
console.error("Pulse Loader: Required elements not found");
|
|
64
|
+
return;
|
|
65
|
+
}
|
|
66
|
+
const isFirstVisit = !hasVisited();
|
|
67
|
+
const loadDuration = isFirstVisit ? FIRST_VISIT_DURATION : RETURN_VISIT_DURATION;
|
|
68
|
+
startLoading(wrapperElement, fillElement, counterElement, loadDuration);
|
|
69
|
+
}
|
|
70
|
+
if (document.readyState === "loading") {
|
|
71
|
+
document.addEventListener("DOMContentLoaded", initPulseLoader);
|
|
72
|
+
} else {
|
|
73
|
+
initPulseLoader();
|
|
74
|
+
}
|
|
75
|
+
})();
|
|
76
|
+
//# sourceMappingURL=loader.js.map
|
package/dist/global/styles.css
CHANGED
|
@@ -1 +1,252 @@
|
|
|
1
|
-
|
|
1
|
+
/* src/global/styles.css */
|
|
2
|
+
[ai-gradient="1"] {
|
|
3
|
+
background:
|
|
4
|
+
linear-gradient(
|
|
5
|
+
90deg,
|
|
6
|
+
#ff84d2 2%,
|
|
7
|
+
#ffa49d 46%,
|
|
8
|
+
#ff5c2a 88%);
|
|
9
|
+
}
|
|
10
|
+
[ai-gradient="2"] {
|
|
11
|
+
background:
|
|
12
|
+
linear-gradient(
|
|
13
|
+
90deg,
|
|
14
|
+
#fd4fad 17%,
|
|
15
|
+
#ff5200 100%);
|
|
16
|
+
}
|
|
17
|
+
[style-bg-color=foreground] {
|
|
18
|
+
background-color: var(--background-colors--foreground);
|
|
19
|
+
}
|
|
20
|
+
[style-bg-color=background] {
|
|
21
|
+
background-color: var(--background-colors--background);
|
|
22
|
+
}
|
|
23
|
+
[style-bg-gradient="1"] {
|
|
24
|
+
background:
|
|
25
|
+
linear-gradient(
|
|
26
|
+
90deg,
|
|
27
|
+
#FF84D2 2%,
|
|
28
|
+
#FFA49D 46%,
|
|
29
|
+
#FF5C2A 88%);
|
|
30
|
+
}
|
|
31
|
+
[style-type^=h] {
|
|
32
|
+
font-family: var(--_font-family---heading);
|
|
33
|
+
margin: 0;
|
|
34
|
+
}
|
|
35
|
+
[style-type=h1] {
|
|
36
|
+
font-size: var(--_text-size---heading--h1);
|
|
37
|
+
line-height: var(--_line-height---line-height-heading-tags--h1);
|
|
38
|
+
font-weight: var(--_font-weight---font-weight-heading-tags--h1);
|
|
39
|
+
letter-spacing: var(--_letter-spacing---letter-spacing-heading-tags--h1);
|
|
40
|
+
}
|
|
41
|
+
[style-type=h2] {
|
|
42
|
+
font-size: var(--_text-size---heading--h2);
|
|
43
|
+
line-height: var(--_line-height---line-height-heading-tags--h2);
|
|
44
|
+
font-weight: var(--_font-weight---font-weight-heading-tags--h2);
|
|
45
|
+
letter-spacing: var(--_letter-spacing---letter-spacing-heading-tags--h2);
|
|
46
|
+
}
|
|
47
|
+
[style-type=h3] {
|
|
48
|
+
font-size: var(--_text-size---heading--h3);
|
|
49
|
+
line-height: var(--_line-height---line-height-heading-tags--h3);
|
|
50
|
+
font-weight: var(--_font-weight---font-weight-heading-tags--h3);
|
|
51
|
+
letter-spacing: var(--_letter-spacing---letter-spacing-heading-tags--h3);
|
|
52
|
+
}
|
|
53
|
+
[style-type=h4] {
|
|
54
|
+
font-size: var(--_text-size---heading--h4);
|
|
55
|
+
line-height: var(--_line-height---line-height-heading-tags--h4);
|
|
56
|
+
font-weight: var(--_font-weight---font-weight-heading-tags--h4);
|
|
57
|
+
letter-spacing: var(--_letter-spacing---letter-spacing-heading-tags--h4);
|
|
58
|
+
}
|
|
59
|
+
[style-type=h5] {
|
|
60
|
+
font-size: var(--_text-size---heading--h5);
|
|
61
|
+
line-height: var(--_line-height---line-height-heading-tags--h5);
|
|
62
|
+
font-weight: var(--_font-weight---font-weight-heading-tags--h5);
|
|
63
|
+
letter-spacing: var(--_letter-spacing---letter-spacing-heading-tags--h5);
|
|
64
|
+
}
|
|
65
|
+
[style-type=h6] {
|
|
66
|
+
font-size: var(--_text-size---heading--h6);
|
|
67
|
+
line-height: var(--_line-height---line-height-heading-tags--h6);
|
|
68
|
+
font-weight: var(--_font-weight---font-weight-heading-tags--h6);
|
|
69
|
+
letter-spacing: var(--_letter-spacing---letter-spacing-heading-tags--h6);
|
|
70
|
+
}
|
|
71
|
+
[style-type^=title-] {
|
|
72
|
+
font-family: var(--_font-family---title);
|
|
73
|
+
}
|
|
74
|
+
[style-type=title-l] {
|
|
75
|
+
font-size: var(--_text-size---title--l);
|
|
76
|
+
line-height: var(--_line-height---line-height-title--l);
|
|
77
|
+
font-weight: var(--_font-weight---font-weight-title--l);
|
|
78
|
+
letter-spacing: var(--_letter-spacing---letter-spacing-body--l);
|
|
79
|
+
}
|
|
80
|
+
[style-type=title-m] {
|
|
81
|
+
font-size: var(--_text-size---title--m);
|
|
82
|
+
line-height: var(--_line-height---line-height-title--m);
|
|
83
|
+
font-weight: var(--_font-weight---font-weight-title--m);
|
|
84
|
+
letter-spacing: var(--_letter-spacing---letter-spacing-title--m);
|
|
85
|
+
}
|
|
86
|
+
[style-type=title-s] {
|
|
87
|
+
font-size: var(--_text-size---title--s);
|
|
88
|
+
line-height: var(--_line-height---line-height-title--s);
|
|
89
|
+
font-weight: var(--_font-weight---font-weight-title--s);
|
|
90
|
+
letter-spacing: var(--_letter-spacing---letter-spacing-title--s);
|
|
91
|
+
}
|
|
92
|
+
[style-type^=display-] {
|
|
93
|
+
font-family: var(--_font-family---display);
|
|
94
|
+
}
|
|
95
|
+
[style-type=display-l] {
|
|
96
|
+
font-size: var(--_text-size---display--l);
|
|
97
|
+
line-height: var(--_line-height---line-height-display--l);
|
|
98
|
+
font-weight: var(--_font-weight---font-weight-display--l);
|
|
99
|
+
letter-spacing: var(--_letter-spacing---letter-spacing-display--l);
|
|
100
|
+
}
|
|
101
|
+
[style-type=display-m] {
|
|
102
|
+
font-size: var(--_text-size---display--m);
|
|
103
|
+
line-height: var(--_line-height---line-height-display--m);
|
|
104
|
+
font-weight: var(--_font-weight---font-weight-display--m);
|
|
105
|
+
letter-spacing: var(--_letter-spacing---letter-spacing-display--m);
|
|
106
|
+
}
|
|
107
|
+
[style-type=display-s] {
|
|
108
|
+
font-size: var(--_text-size---display--s);
|
|
109
|
+
line-height: var(--_line-height---line-height-display--s);
|
|
110
|
+
font-weight: var(--_font-weight---font-weight-display--s);
|
|
111
|
+
letter-spacing: var(--_letter-spacing---letter-spacing-display--s);
|
|
112
|
+
}
|
|
113
|
+
[style-type^=body-] {
|
|
114
|
+
font-family: var(--_font-family---body);
|
|
115
|
+
}
|
|
116
|
+
[style-type=body-l] {
|
|
117
|
+
font-size: var(--_text-size---body--l);
|
|
118
|
+
line-height: var(--_line-height---line-height-body--l);
|
|
119
|
+
font-weight: var(--_font-weight---font-weight-body--l);
|
|
120
|
+
letter-spacing: var(--_letter-spacing---letter-spacing-body--l);
|
|
121
|
+
}
|
|
122
|
+
[style-type=body-m] {
|
|
123
|
+
font-size: var(--_text-size---body--m);
|
|
124
|
+
line-height: var(--_line-height---line-height-body--m);
|
|
125
|
+
font-weight: var(--_font-weight---font-weight-body--m);
|
|
126
|
+
letter-spacing: var(--_letter-spacing---letter-spacing-body--m);
|
|
127
|
+
}
|
|
128
|
+
[style-type=body-s] {
|
|
129
|
+
font-size: var(--_text-size---body--s);
|
|
130
|
+
line-height: var(--_line-height---line-height-body--s);
|
|
131
|
+
font-weight: var(--_font-weight---font-weight-body--s);
|
|
132
|
+
letter-spacing: var(--_letter-spacing---letter-spacing-body--s);
|
|
133
|
+
}
|
|
134
|
+
[style-text-align=left] {
|
|
135
|
+
text-align: left;
|
|
136
|
+
}
|
|
137
|
+
[style-text-align=center] {
|
|
138
|
+
text-align: center;
|
|
139
|
+
}
|
|
140
|
+
[style-text-align=right] {
|
|
141
|
+
text-align: right;
|
|
142
|
+
}
|
|
143
|
+
[style-text-color=title] {
|
|
144
|
+
color: var(--text-colors--title);
|
|
145
|
+
}
|
|
146
|
+
[style-text-color=subtext] {
|
|
147
|
+
color: var(--text-colors--subtext);
|
|
148
|
+
}
|
|
149
|
+
[style-text-color=subtext-light] {
|
|
150
|
+
color: var(--text-colors--subtext-light);
|
|
151
|
+
}
|
|
152
|
+
[style-text-color=orange] {
|
|
153
|
+
color: var(--text-colors--orange);
|
|
154
|
+
}
|
|
155
|
+
[style-button-color=orange] {
|
|
156
|
+
background-color: var(--orange--orange40);
|
|
157
|
+
border-color: var(--orange--orange40);
|
|
158
|
+
color: var(--text-colors--title-inverse);
|
|
159
|
+
}
|
|
160
|
+
[style-button-color=white] {
|
|
161
|
+
background-color: var(--white);
|
|
162
|
+
border: 1px solid var(--white);
|
|
163
|
+
color: var(--text-colors--title-inverse);
|
|
164
|
+
}
|
|
165
|
+
[style-button-color=transparent] {
|
|
166
|
+
background-color: var(--transparent);
|
|
167
|
+
border: 1px solid var(--white);
|
|
168
|
+
color: var(--white);
|
|
169
|
+
}
|
|
170
|
+
[style-padding-y=small] {
|
|
171
|
+
padding-top: var(--_spaces---padding--small);
|
|
172
|
+
padding-bottom: var(--_spaces---padding--small);
|
|
173
|
+
}
|
|
174
|
+
[style-padding-y=large] {
|
|
175
|
+
padding-top: var(--_spaces---padding--large);
|
|
176
|
+
padding-bottom: var(--_spaces---padding--large);
|
|
177
|
+
}
|
|
178
|
+
[style-flex] {
|
|
179
|
+
display: flex;
|
|
180
|
+
}
|
|
181
|
+
[style-flex=center] {
|
|
182
|
+
justify-content: center;
|
|
183
|
+
align-items: center;
|
|
184
|
+
}
|
|
185
|
+
[style-flex=left] {
|
|
186
|
+
flex-direction: column;
|
|
187
|
+
align-items: flex-start;
|
|
188
|
+
}
|
|
189
|
+
[style-flex=right] {
|
|
190
|
+
flex-direction: column;
|
|
191
|
+
align-items: flex-end;
|
|
192
|
+
}
|
|
193
|
+
[style-text-gradient=radial] {
|
|
194
|
+
background:
|
|
195
|
+
radial-gradient(
|
|
196
|
+
circle,
|
|
197
|
+
#ff84d2 18%,
|
|
198
|
+
#ffa49d 63%,
|
|
199
|
+
#ff5c2a 98%);
|
|
200
|
+
-webkit-background-clip: text;
|
|
201
|
+
-webkit-text-fill-color: transparent;
|
|
202
|
+
}
|
|
203
|
+
.gradient-text {
|
|
204
|
+
background:
|
|
205
|
+
linear-gradient(
|
|
206
|
+
70.54deg,
|
|
207
|
+
#ff84d2 22.76%,
|
|
208
|
+
#ffa49d 29.68%,
|
|
209
|
+
#ff5c2a 38.24%);
|
|
210
|
+
background-clip: text;
|
|
211
|
+
-webkit-background-clip: text;
|
|
212
|
+
color: transparent;
|
|
213
|
+
-webkit-text-fill-color: transparent;
|
|
214
|
+
}
|
|
215
|
+
[background-clip] {
|
|
216
|
+
background-clip: text;
|
|
217
|
+
-webkit-background-clip: text;
|
|
218
|
+
color: transparent;
|
|
219
|
+
-webkit-text-fill-color: transparent;
|
|
220
|
+
}
|
|
221
|
+
[style-scrollbar=none] {
|
|
222
|
+
scrollbar-width: none;
|
|
223
|
+
-ms-overflow-style: none;
|
|
224
|
+
}
|
|
225
|
+
[style-scrollbar=none]::-webkit-scrollbar {
|
|
226
|
+
display: none;
|
|
227
|
+
}
|
|
228
|
+
[custom-col-span="2"] {
|
|
229
|
+
grid-area: span 1 / span 2 / span 1 / span 2;
|
|
230
|
+
}
|
|
231
|
+
[custom-col-span="3"] {
|
|
232
|
+
grid-area: span 1 / span 3 / span 1 / span 3;
|
|
233
|
+
}
|
|
234
|
+
[custom-col-span="4"] {
|
|
235
|
+
grid-area: span 1 / span 4 / span 1 / span 4;
|
|
236
|
+
}
|
|
237
|
+
[custom-col-span="5"] {
|
|
238
|
+
grid-area: span 1 / span 5 / span 1 / span 5;
|
|
239
|
+
}
|
|
240
|
+
[style-height=full] {
|
|
241
|
+
height: 100%;
|
|
242
|
+
}
|
|
243
|
+
[style-overflow=hidden] {
|
|
244
|
+
overflow: hidden;
|
|
245
|
+
}
|
|
246
|
+
[code-embed] {
|
|
247
|
+
position: absolute;
|
|
248
|
+
z-index: -100;
|
|
249
|
+
opacity: 0;
|
|
250
|
+
pointer-events: none;
|
|
251
|
+
}
|
|
252
|
+
/*# sourceMappingURL=styles.css.map */
|