39 lines
596 B
CSS
39 lines
596 B
CSS
.faq-section {
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.faq-element {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
|
|
.faq-question-btn {
|
|
background-color: #FFB039;
|
|
color: white;
|
|
padding: 10px;
|
|
border: none;
|
|
border-radius: 5px;
|
|
cursor: pointer;
|
|
width: 100%;
|
|
text-align: left;
|
|
font-size: large;
|
|
}
|
|
|
|
.faq-reponse {
|
|
display: none;
|
|
padding: 10px;
|
|
border: 1px solid #ccc;
|
|
border-radius: 5px;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.faq-reponse p {
|
|
margin: 0;
|
|
}
|
|
|
|
.faq-element.active .faq-question-btn {
|
|
background-color: #4A305A;
|
|
}
|
|
|