-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfaq.css
81 lines (68 loc) · 1.61 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
.body1{
font-family: 'Work Sans', sans-serif;
}
.faq-heading{
border-bottom:rgb(22, 60, 172);
font-weight: bolder;
font-size: 1.3cm;
text-align: center;
font-family: Georgia, 'Times New Roman', Times, serif;
text-shadow: 2px 2px rgb(55, 212, 240);
}
.h21
{
color: rgb(11, 19, 145);
font-family: 'Times New Roman', Times, serif;
}
.faq-container{
display: flex;
justify-content: center;
flex-direction: column;
}
.hr-line{
width: 60%;
margin: auto;
}
/* Style the buttons that are used to open and close the faq-page body */
.faq-page {
/* background-color: #eee; */
color: #444;
cursor: pointer;
padding: 30px 20px;
border: none;
outline: none;
transition: 0.4s;
margin: auto;
background-color: rgb(223, 252, 252);
}
.faq-body{
margin: auto;
/* text-align: center; */
width: 50%;
padding: auto;
text-align: justify;
}
/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active,
.faq-page:hover {
background-color: #F9F9F9;
}
/* Style the faq-page panel. Note: hidden by default */
.faq-body {
padding: 0 18px;
background-color: white;
display: none;
overflow: hidden;
}
.faq-page:after {
content: '\02795';
/* Unicode character for "plus" sign (+) */
font-size: 13px;
color: rgb(100, 100, 100);
float: right;
margin-left: 5px;
}
.active:after {
content: "\2796";
/* Unicode character for "minus" sign (-) */
}