-
Notifications
You must be signed in to change notification settings - Fork 0
/
FAQ_test.css
89 lines (73 loc) · 1.91 KB
/
FAQ_test.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
84
85
86
87
88
89
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cardo&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto&family=Roboto+Slab&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400;0,700;1,400;1,700&display=swap');
h1 {
font-family: Montserrat;
text-align: center;
font-size: 46px;
}
h2 {
font-family: Montserrat;
text-align: center;
font-size: 34px;
}
h3 {
font-family: Montserrat;
}
body {
font-family: Cabin;
background-color: #0a4f58;
color: white;
font-size: 16px;
}
a:link {
color: #0a4f58;
font-weight: bold;
}
a:visited {
color: #0a4f58;
font-weight: bold;
}
.collapsible:focus-visible {
outline: 4px solid red;
background: transparent;
}
/* Style the button that is used to open and close the collapsible content */
.collapsible {
background-color: #0a4f58;
color: white;
cursor: pointer;
padding: 18px;
width: 100%;
border: none;
text-align: left;
outline: none;
font-size: 20px;
font-family: Roboto Slab;
}
/* 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, .collapsible:hover {
background-color: #03837f;
}
/* Style the collapsible content. Note: hidden by default */
.content {
padding: 0 18px;
background-color: #d7dedf;
color: #3d3135;
max-height: 0;
overflow: hidden;
transition: max-height 0.2s ease-out;
}
.collapsible::after {
font-family: "FontAwesome";
font-weight: 400;
color: white;
content: '\f067'; /* Unicode character for "plus" sign (+) */
float: right;
margin-left: 5px;
}
.active:after {
content: '\f068'; /* Unicode character for "minus" sign (-) */
}