Ajout de la FAQ
This commit is contained in:
51
assets/css/faq.css
Normal file
51
assets/css/faq.css
Normal file
@@ -0,0 +1,51 @@
|
||||
h1 {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
h2 {
|
||||
text-align: center;
|
||||
font-size: medium;
|
||||
}
|
||||
|
||||
.faq {
|
||||
margin: 0 auto;
|
||||
width: 500px;
|
||||
}
|
||||
|
||||
.faq ul {
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
.faq ul li {
|
||||
background: #f1f1f1;
|
||||
padding: 10px 0;
|
||||
margin-bottom: 10px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.question {
|
||||
font-size: 18px;
|
||||
color: #47a3da;
|
||||
text-decoration: none;
|
||||
display: block;
|
||||
padding: 0 0 0 20px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.question:hover {
|
||||
color: #000;
|
||||
}
|
||||
|
||||
|
||||
.question.active {
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.faq ul li p {
|
||||
display: none;
|
||||
font-size: 14px;
|
||||
color: #2f2f2f;
|
||||
line-height: 24px;
|
||||
padding: 10px 20px;
|
||||
}
|
15
assets/js/faq.js
Normal file
15
assets/js/faq.js
Normal file
@@ -0,0 +1,15 @@
|
||||
let faqLink = document.querySelectorAll('.question');
|
||||
|
||||
faqLink.forEach(function(link) {
|
||||
link.addEventListener('click', function() {
|
||||
let faqCont = this.nextElementSibling;
|
||||
|
||||
if (faqCont.style.display === 'block') {
|
||||
faqCont.style.display = 'none';
|
||||
this.classList.remove('active');
|
||||
} else {
|
||||
faqCont.style.display = 'block';
|
||||
this.classList.add('active');
|
||||
}
|
||||
});
|
||||
});
|
Reference in New Issue
Block a user