forked from dynamicclub/Dynamic-Club
-
Notifications
You must be signed in to change notification settings - Fork 0
/
faq.css
83 lines (73 loc) · 1.55 KB
/
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
#faq {
padding: 80px 0;
background-image: url("https://e0.pxfuel.com/wallpapers/671/413/desktop-wallpaper-macos-monterey-variations-in-light-and-dark-mode-thumbnail.jpg");
background-size: cover;
position: relative;
}
#faq h1 {
color: #5942e9 !important;
font-weight: bold;
text-shadow: 0 0 1px rgb(248, 10, 109);
font-family: "Montserrat", sans-serif;
font-size: 40px;
}
#faq hr {
margin-bottom: 50px;
}
.faq .faq-list {
padding: 0;
list-style: none;
}
.faqs {
transition: 0.3s ease-in-out;
}
.faqs:hover {
transition: 0.3s ease-in-out;
box-shadow: rgba(137, 119, 212, 0.456) 0px 5px 15px;
}
.faq .faq-list li {
border-bottom: 1px solid #eeeeee;
margin-bottom: 20px;
padding: 20px;
}
.faq .faq-list a {
display: block;
position: relative;
font-family: #5942e9;
font-size: 18px;
line-height: 24px;
font-weight: 900;
padding-right: 25px;
cursor: pointer;
}
.faq .faq-list i {
font-size: 24px;
position: absolute;
right: 0;
top: 0;
}
.faq .faq-list p {
margin-bottom: 0;
padding: 10px 0 0 0;
color: rgb(218, 216, 221);
font-weight: 500;
font-style: italic;
}
.faq .faq-list .icon-show {
display: none;
}
.faq .faq-list a.collapsed {
color: #f3fbfb;
}
.faq .faq-list a.collapsed:hover {
color: rgb(86, 9, 230x);
}
.faq .faq-list a.collapsed .icon-show {
display: inline-block;
}
.faq .faq-list a.collapsed .icon-close {
display: none;
}