Previews

No matching results.

Pages

No matching results.

x
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<div class="accordion rounded-lg border">
<details name="my_accordion" class="pi-4">
<summary>How does billing work?</summary>
<p class="pbe-4">
We offer monthly and annual subscription plans. Billing is charged at the beginning of each cycle, and you can cancel anytime. All plans include automatic backups, 24/7 support, and unlimited team members.
</p>
</details>
<details name="my_accordion" class="pi-4">
<summary>Is my data secure?</summary>
<p class="pbe-4">
Yes. We use end-to-end encryption, SOC 2 Type II compliance, and regular third-party security audits. All data is encrypted at rest and in transit using industry-standard protocols.
</p>
</details>
<details name="my_accordion" class="pi-4">
<summary>What integrations do you support?</summary>
<p class="pbe-4">
We integrate with 500+ popular tools including Slack, Zapier, Salesforce, HubSpot, and more. You can also build custom integrations using our REST API and webhooks.
</p>
</details>
</div>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<div class="accordion rounded-lg border">
<details name="my_accordion" class="pi-4">
<summary>How does billing work?</summary>
<p class="pbe-4">
We offer monthly and annual subscription plans. Billing is charged at the beginning of each cycle, and you can cancel anytime. All plans include automatic backups, 24/7 support, and unlimited team members.
</p>
</details>
<details name="my_accordion" class="pi-4">
<summary>Is my data secure?</summary>
<p class="pbe-4">
Yes. We use end-to-end encryption, SOC 2 Type II compliance, and regular third-party security audits. All data is encrypted at rest and in transit using industry-standard protocols.
</p>
</details>
<details name="my_accordion" class="pi-4">
<summary>What integrations do you support?</summary>
<p class="pbe-4">
We integrate with 500+ popular tools including Slack, Zapier, Salesforce, HubSpot, and more. You can also build custom integrations using our REST API and webhooks.
</p>
</details>
</div>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
:where(.accordion) {
details {
font-size: var(--text-sm);
&:not(:last-child) {
border-block-end-width: var(--border);
}
&::details-content {
block-size: 0;
opacity: 0;
overflow: hidden;
transition-behavior: allow-discrete;
transition-duration: var(--time-200);
transition-property: content-visibility, block-size, opacity;
transition-timing-function: var(--ease-out-3);
}
&[open]::details-content {
block-size: auto; opacity: 1;
}
}
summary {
align-items: flex-start;
cursor: default;
display: flex;
font-weight: var(--font-medium);
padding-block: var(--size-2_5);
&:hover {
text-decoration: underline;
}
&:focus-visible {
outline: var(--border-2) solid var(--color-selected-dark);
}
&[aria-disabled="true"] {
opacity: var(--opacity-50);
pointer-events: none;
}
&::after {
background-color: currentColor;
block-size: var(--size-4);
color: var(--color-text-subtle);
content: "";
inline-size: var(--size-4);
margin-inline-start: auto;
mask-image: url("chevron-down.svg");
mask-size: cover;
transition-duration: var(--time-200);
transition-property: transform;
transition-timing-function: var(--ease-out-3);
}
details[open] > &::after {
transform: var(--rotate-180);
}
}
}
Java Script is not required or multiple files are needed, check the notes.