forked from isyfmnp/isyf23
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfaq.css
47 lines (39 loc) · 733 Bytes
/
faq.css
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
.accentdot,
.shadow,
.box:before {
background: linear-gradient(to bottom left, #B06AB3 0%, #4568DC 100%);
}
.shadow {
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.footer div iconify-icon {
color: #B06AB3;
}
.faq-wrapper {
padding-bottom: 1rem;
}
.faq-qn {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
cursor: pointer;
}
.faq-qn>svg {
transition: all 0.2s ease-in-out;
min-width: 50px;
}
.rotate-180 {
transform: rotate(180deg);
}
.faq-ans {
padding: 0 20px;
max-height: 0;
overflow: hidden;
transition: max-height 0.2s ease-in-out;
}
.faq-ans>p {
margin: 0;
font-size: 1.2rem;
}