@rtstic.dev/pulse 0.0.56 → 0.0.57
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 +2 -679
- package/dist/form/index.js +2 -962
- package/dist/form/pricing.css +0 -2
- package/dist/form/pricing.js +2 -790
- package/dist/form/styles.css +1 -140
- package/dist/global/accordions-v2.js +1 -262
- package/dist/global/accordions.js +1 -237
- package/dist/global/faqs.js +1 -116
- package/dist/global/loader.js +1 -76
- package/dist/global/styles.css +1 -252
- package/dist/home/depth.js +3 -243
- package/dist/home/hero-animation/loader.js +8164 -74577
- package/dist/home/hero-animation/scroll.js +1 -401
- package/dist/home/hero-animation/styles.css +1 -233
- package/dist/home/hero-animation/torch.js +1 -62
- package/dist/home/horizontal-scroll.css +1 -49
- package/dist/home/horizontal-scroll.js +1 -140
- package/dist/home/tabs-v2.js +1 -134
- package/dist/home/tabs.js +1 -163
- package/dist/lever/styles.css +1 -31
- package/dist/marquee/index.js +2 -557
- package/dist/marquee/styles.css +1 -26
- package/dist/slider/freescroll-cards.js +1 -51
- package/dist/slider/freescroll-slider.js +1 -31
- package/dist/slider/testimonial.js +1 -30
- package/package.json +1 -1
package/dist/global/faqs.js
CHANGED
|
@@ -1,116 +1 @@
|
|
|
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
|
|
1
|
+
"use strict";(()=>{function s(){document.querySelectorAll('[data-acc="item"]').forEach(a=>{let o=a.querySelector('[data-acc="toggle"]'),t=a.querySelector('[data-acc="panel"]'),c=a.querySelector('[data-acc="inner"]'),i=a.querySelector('[data-acc="x-line"]'),r=a.querySelector('[data-acc="y-line"]'),l=a.querySelector('[data-acc="divider"]');if(!o||!t||!c)return;o._accClickHandler&&o.removeEventListener("click",o._accClickHandler),t.accAnim?.kill(),gsap.set(t,{height:0,overflow:"hidden"}),gsap.set(c,{opacity:0}),o.setAttribute("aria-expanded","false"),i&&r&&(gsap.set(i,{rotation:0}),gsap.set(r,{rotation:0})),l&&gsap.set(l,{backgroundColor:"var(--grey--grey40)"});let e=!1,d=()=>{if(e)return;e=!0,o.getAttribute("aria-expanded")==="true"?g(a,()=>e=!1):u(a,()=>e=!1)};o._accClickHandler=d,o.addEventListener("click",d)})}document.addEventListener("DOMContentLoaded",s);window.initAccordions=s;function u(n,a){let o=n.querySelector('[data-acc="toggle"]'),t=n.querySelector('[data-acc="panel"]'),c=n.querySelector('[data-acc="inner"]'),i=n.querySelector('[data-acc="x-line"]'),r=n.querySelector('[data-acc="y-line"]'),l=n.querySelector('[data-acc="divider"]');if(!o||!t||!c){a?.();return}t.accAnim?.kill();let e=gsap.timeline({onComplete:()=>a?.()});gsap.set(t,{height:"auto",visibility:"hidden"});let d=t.offsetHeight;gsap.set(t,{height:0,visibility:"visible",overflow:"hidden"}),e.to(t,{height:d,duration:.35,ease:"power3.inOut",onComplete:()=>{t.style.height="auto"}}),e.to(c,{opacity:1,duration:.2,ease:"power2.out"},"-=0.15"),i&&r&&(e.to(i,{rotation:180,duration:.4,ease:"power2.inOut"},0),e.to(r,{rotation:270,duration:.4,ease:"power2.inOut"},0)),l&&e.to(l,{backgroundColor:"var(--grey--grey10)",duration:.3,ease:"power2.inOut"},0),t.accAnim=e,o.setAttribute("aria-expanded","true")}function g(n,a){let o=n.querySelector('[data-acc="toggle"]'),t=n.querySelector('[data-acc="panel"]'),c=n.querySelector('[data-acc="inner"]'),i=n.querySelector('[data-acc="x-line"]'),r=n.querySelector('[data-acc="y-line"]'),l=n.querySelector('[data-acc="divider"]');if(!o||!t||!c){a?.();return}t.accAnim?.kill();let e=gsap.timeline({onComplete:()=>a?.()});e.to(c,{opacity:0,duration:.15,ease:"power2.in"}),e.to(t,{height:0,duration:.25,ease:"power3.inOut"},"-=0.05"),i&&r&&(e.to(i,{rotation:0,duration:.4,ease:"power2.inOut"},0),e.to(r,{rotation:0,duration:.4,ease:"power2.inOut"},0)),l&&e.to(l,{backgroundColor:"var(--grey--grey40)",duration:.3,ease:"power2.inOut"},0),t.accAnim=e,o.setAttribute("aria-expanded","false")}})();
|
package/dist/global/loader.js
CHANGED
|
@@ -1,76 +1 @@
|
|
|
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
|
|
1
|
+
"use strict";(()=>{var a="pulse-loader-visited";function c(){return sessionStorage.getItem(a)==="true"}function T(){sessionStorage.setItem(a,"true")}function I(e,t){let o=performance.now(),n=0,s=100;function i(u){let d=u-o,r=Math.min(d/t,1),m=Math.floor(n+(s-n)*r);e.textContent=m.toString(),r<1?requestAnimationFrame(i):e.textContent="100"}requestAnimationFrame(i)}function f(e,t){e.style.width="0%",e.style.transition=`width ${t}ms linear`,requestAnimationFrame(()=>{e.style.width="100%"})}function y(e){e.style.transition="transform 500ms ease-in-out, opacity 500ms ease-in-out",e.style.transform="translateY(-100%)",setTimeout(()=>{e.style.display="none",document.body.style.overflow=""},500)}function R(e,t,o,n){document.body.style.overflow="hidden",e.style.display="flex",f(t,n),o&&I(o,n),setTimeout(()=>{y(e)},n),T()}function l(){let e=document.querySelector('[pulse-loader-ele="wrapper"]'),t=document.querySelector('[pulse-loader-ele="fill"]'),o=document.querySelector('[pulse-loader-ele="counter"]');if(!e||!t){console.error("Pulse Loader: Required elements not found");return}let s=!c()?3e3:1e3;R(e,t,o,s)}document.readyState==="loading"?document.addEventListener("DOMContentLoaded",l):l();})();
|
package/dist/global/styles.css
CHANGED
|
@@ -1,252 +1 @@
|
|
|
1
|
-
|
|
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 */
|
|
1
|
+
[ai-gradient="1"]{background:linear-gradient(90deg,#ff84d2 2%,#ffa49d 46%,#ff5c2a 88%)}[ai-gradient="2"]{background:linear-gradient(90deg,#fd4fad 17%,#ff5200)}[style-bg-color=foreground]{background-color:var(--background-colors--foreground)}[style-bg-color=background]{background-color:var(--background-colors--background)}[style-bg-gradient="1"]{background:linear-gradient(90deg,#ff84d2 2%,#ffa49d 46%,#ff5c2a 88%)}[style-type^=h]{font-family:var(--_font-family---heading);margin:0}[style-type=h1]{font-size:var(--_text-size---heading--h1);line-height:var(--_line-height---line-height-heading-tags--h1);font-weight:var(--_font-weight---font-weight-heading-tags--h1);letter-spacing:var(--_letter-spacing---letter-spacing-heading-tags--h1)}[style-type=h2]{font-size:var(--_text-size---heading--h2);line-height:var(--_line-height---line-height-heading-tags--h2);font-weight:var(--_font-weight---font-weight-heading-tags--h2);letter-spacing:var(--_letter-spacing---letter-spacing-heading-tags--h2)}[style-type=h3]{font-size:var(--_text-size---heading--h3);line-height:var(--_line-height---line-height-heading-tags--h3);font-weight:var(--_font-weight---font-weight-heading-tags--h3);letter-spacing:var(--_letter-spacing---letter-spacing-heading-tags--h3)}[style-type=h4]{font-size:var(--_text-size---heading--h4);line-height:var(--_line-height---line-height-heading-tags--h4);font-weight:var(--_font-weight---font-weight-heading-tags--h4);letter-spacing:var(--_letter-spacing---letter-spacing-heading-tags--h4)}[style-type=h5]{font-size:var(--_text-size---heading--h5);line-height:var(--_line-height---line-height-heading-tags--h5);font-weight:var(--_font-weight---font-weight-heading-tags--h5);letter-spacing:var(--_letter-spacing---letter-spacing-heading-tags--h5)}[style-type=h6]{font-size:var(--_text-size---heading--h6);line-height:var(--_line-height---line-height-heading-tags--h6);font-weight:var(--_font-weight---font-weight-heading-tags--h6);letter-spacing:var(--_letter-spacing---letter-spacing-heading-tags--h6)}[style-type^=title-]{font-family:var(--_font-family---title)}[style-type=title-l]{font-size:var(--_text-size---title--l);line-height:var(--_line-height---line-height-title--l);font-weight:var(--_font-weight---font-weight-title--l);letter-spacing:var(--_letter-spacing---letter-spacing-body--l)}[style-type=title-m]{font-size:var(--_text-size---title--m);line-height:var(--_line-height---line-height-title--m);font-weight:var(--_font-weight---font-weight-title--m);letter-spacing:var(--_letter-spacing---letter-spacing-title--m)}[style-type=title-s]{font-size:var(--_text-size---title--s);line-height:var(--_line-height---line-height-title--s);font-weight:var(--_font-weight---font-weight-title--s);letter-spacing:var(--_letter-spacing---letter-spacing-title--s)}[style-type^=display-]{font-family:var(--_font-family---display)}[style-type=display-l]{font-size:var(--_text-size---display--l);line-height:var(--_line-height---line-height-display--l);font-weight:var(--_font-weight---font-weight-display--l);letter-spacing:var(--_letter-spacing---letter-spacing-display--l)}[style-type=display-m]{font-size:var(--_text-size---display--m);line-height:var(--_line-height---line-height-display--m);font-weight:var(--_font-weight---font-weight-display--m);letter-spacing:var(--_letter-spacing---letter-spacing-display--m)}[style-type=display-s]{font-size:var(--_text-size---display--s);line-height:var(--_line-height---line-height-display--s);font-weight:var(--_font-weight---font-weight-display--s);letter-spacing:var(--_letter-spacing---letter-spacing-display--s)}[style-type^=body-]{font-family:var(--_font-family---body)}[style-type=body-l]{font-size:var(--_text-size---body--l);line-height:var(--_line-height---line-height-body--l);font-weight:var(--_font-weight---font-weight-body--l);letter-spacing:var(--_letter-spacing---letter-spacing-body--l)}[style-type=body-m]{font-size:var(--_text-size---body--m);line-height:var(--_line-height---line-height-body--m);font-weight:var(--_font-weight---font-weight-body--m);letter-spacing:var(--_letter-spacing---letter-spacing-body--m)}[style-type=body-s]{font-size:var(--_text-size---body--s);line-height:var(--_line-height---line-height-body--s);font-weight:var(--_font-weight---font-weight-body--s);letter-spacing:var(--_letter-spacing---letter-spacing-body--s)}[style-text-align=left]{text-align:left}[style-text-align=center]{text-align:center}[style-text-align=right]{text-align:right}[style-text-color=title]{color:var(--text-colors--title)}[style-text-color=subtext]{color:var(--text-colors--subtext)}[style-text-color=subtext-light]{color:var(--text-colors--subtext-light)}[style-text-color=orange]{color:var(--text-colors--orange)}[style-button-color=orange]{background-color:var(--orange--orange40);border-color:var(--orange--orange40);color:var(--text-colors--title-inverse)}[style-button-color=white]{background-color:var(--white);border:1px solid var(--white);color:var(--text-colors--title-inverse)}[style-button-color=transparent]{background-color:var(--transparent);border:1px solid var(--white);color:var(--white)}[style-padding-y=small]{padding-top:var(--_spaces---padding--small);padding-bottom:var(--_spaces---padding--small)}[style-padding-y=large]{padding-top:var(--_spaces---padding--large);padding-bottom:var(--_spaces---padding--large)}[style-flex]{display:flex}[style-flex=center]{justify-content:center;align-items:center}[style-flex=left]{flex-direction:column;align-items:flex-start}[style-flex=right]{flex-direction:column;align-items:flex-end}[style-text-gradient=radial]{background:radial-gradient(circle,#ff84d2 18%,#ffa49d 63%,#ff5c2a 98%);-webkit-background-clip:text;-webkit-text-fill-color:transparent}.gradient-text{background:linear-gradient(70.54deg,#ff84d2 22.76%,#ffa49d 29.68%,#ff5c2a 38.24%);background-clip:text;-webkit-background-clip:text;color:transparent;-webkit-text-fill-color:transparent}[background-clip]{background-clip:text;-webkit-background-clip:text;color:transparent;-webkit-text-fill-color:transparent}[style-scrollbar=none]{scrollbar-width:none;-ms-overflow-style:none}[style-scrollbar=none]::-webkit-scrollbar{display:none}[custom-col-span="2"]{grid-area:span 1 / span 2 / span 1 / span 2}[custom-col-span="3"]{grid-area:span 1 / span 3 / span 1 / span 3}[custom-col-span="4"]{grid-area:span 1 / span 4 / span 1 / span 4}[custom-col-span="5"]{grid-area:span 1 / span 5 / span 1 / span 5}[style-height=full]{height:100%}[style-overflow=hidden]{overflow:hidden}[code-embed]{position:absolute;z-index:-100;opacity:0;pointer-events:none}
|