forked from arghadipmanna101/Flipkart_Clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
faq.css
48 lines (41 loc) · 768 Bytes
/
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
/* Custom CSS for FAQ section */
.container {
background-color: #ffe24f;
border-radius: 10px;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.card {
border: none;
border-radius: 10px;
margin-bottom: 20px;
}
.card-header {
background-color: #fff;
border: none;
border-radius: 10px;
padding: 15px 20px;
}
.card-body {
background-color: #f9f9f9;
border-radius: 0 0 10px 10px;
padding: 20px;
font-size: 16px;
}
.card-body p {
margin-bottom: 0;
}
.btn-link {
text-decoration: none;
color: #000;
font-weight: bold;
font-size: 18px;
}
.btn-link:hover {
text-decoration: none;
color: #007bff;
}
/* Reduced font weight for answers */
.card-body {
font-weight: 400;
}