Update src/style.css
All checks were successful
On_Push / build (push) Successful in 31s

This commit is contained in:
flamez 2025-02-13 20:54:10 +00:00
parent dc473a8289
commit cec5b247cf

View file

@ -33,3 +33,27 @@
border: 1px solid #ccc;
border-top: none;
}
<style>
.accordion {
background-color: #eee;
color: #444;
cursor: pointer;
padding: 18px;
width: 100%;
border: none;
text-align: left;
outline: none;
font-size: 15px;
transition: 0.4s;
}
.active, .accordion:hover {
background-color: #ccc;
}
.panel {
padding: 0 18px;
display: none;
background-color: white;
overflow: hidden;
}