forked from manvi0107/equibond-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfaq.css
70 lines (62 loc) · 1.18 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
/* General Styles */
body {
font-family: Arial, sans-serif;
background-color: #1e1e2f;
color: #d3d4d9;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
margin: 0;
padding: 0;
}
/* FAQ Container */
.faq-container {
width: 90%;
max-width: 700px;
background-color: #2a2d3b;
padding: 2rem;
border-radius: 12px;
box-shadow: 0px 0px 20px rgba(50, 50, 70, 0.6);
text-align: center;
}
/* Header */
header h1 {
color: #e6e6fa;
font-size: 2.5rem;
margin-bottom: 0.5rem;
}
header p {
color: #a6a8b4;
font-size: 1.2rem;
margin-bottom: 1.5rem;
}
/* FAQ Section */
.faq-section {
text-align: left;
}
.faq-item {
background-color: #3a3d4f;
margin: 15px 0;
padding: 15px;
border-radius: 10px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.faq-item:hover {
background-color: #4a4d5f;
}
.faq-question {
font-size: 1.2rem;
font-weight: bold;
color: #ffffff;
}
.faq-answer {
color: #b1b3c1;
font-size: 1rem;
margin-top: 10px;
display: none;
line-height: 1.5;
border-top: 1px solid #7b59c4;
padding-top: 10px;
}