-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfaq.css
More file actions
107 lines (94 loc) · 1.92 KB
/
faq.css
File metadata and controls
107 lines (94 loc) · 1.92 KB
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
.FAQ {
display: flex;
flex-direction: column;
padding: 116px 8vw 40px 6vw;
/* margin-bottom: 240px; */
}
#Faqs {
margin-bottom: 24px;
}
#bullets{
font-family: 'Montserrat';
}
.FAQ ul {
padding-left: 1vw;
}
.FAQ ul li {
font-family: 'Montserrat';
font-style: normal;
font-weight: 400;
font-size: 1rem;
/* line-height: 20px; */
white-space: pre-wrap;
white-space: -moz-pre-wrap;
white-space: -pre-wrap;
white-space: -o-pre-wrap;
word-wrap: break-word;
color: rgba(0, 0, 0, 0.8);
margin-bottom: 8px;
list-style-position: inside;
}
.question {
font-family: 'Montserrat';
font-style: normal;
font-weight: 500;
font-size: 1.1rem;
/* line-height: 20px; */
color: rgba(0, 0, 0, 0.9);
margin-bottom: 12px;
white-space: pre-wrap;
white-space: -moz-pre-wrap;
white-space: -pre-wrap;
white-space: -o-pre-wrap;
word-wrap: break-word;
}
.answer {
font-family: 'Montserrat';
font-style: normal;
font-weight: 400;
font-size: 1rem;
width: 99%;
/* line-height: 20px; */
white-space: pre-wrap;
white-space: -moz-pre-wrap;
white-space: -pre-wrap;
white-space: -o-pre-wrap;
word-wrap: break-word;
color: rgba(0, 0, 0, 0.8);
margin-bottom: 16px;
}
.faqLine {
background: #D9D9D9;
border-radius: 2px;
border-bottom-width: 2px;
margin-bottom: 16px;
margin-top: 0;
}
@media(max-width:2500px) and (min-width:1500px) {
.question {
font-size: 1.6rem;
}
.answer {
font-size: 1.4rem;
}
.snoo{
font-size: 1.4rem;
}
.FAQ {
/* margin-bottom: 280px; */
}
}
@media(max-width:800px) {
.FAQ {
padding-left: 8vw;
padding-right: 7vw;
}
}
@media(max-width:600px) {
.FAQ {
padding-left: 6vw;
padding-right: 5vw;
padding-top: 6rem;
/* padding-bottom: 360px; */
}
}