.accordion {
background-color: #0a3d0a;
color: white;
cursor: pointer;
padding: 10px 16px;
width: 100%;
text-align: left;
font-size: 18px;
position: relative;
transition: background-color 0.3s;
}
.accordion:hover {
background-color: #145214;
}
.arrow {
position: absolute;
right: 16px;
top: 50%;
transform: translateY(-50%);
font-size: 14px;
color: #00ff7f;
transition: transform 0.3s;
}
.accordion.active .arrow {
transform: translateY(-50%) rotate(180deg);
}
.panel {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease-out;
background-color: #111;
}
.panel a {
display: block;
color: #ccc;
padding: 8px 16px;
text-decoration: none;
}
.panel a:hover {
background-color: #222;
color: #00ff7f;
}
/* Custom header image centering */
.header-inner img {
width: 100%;
max-width: 1200px;
height: auto;
display: block;
margin: 0 auto;
}
.accordion {
background-color: #0a3d0a;
color: white;
cursor: pointer;
padding: 10px 16px;
width: 100%;
border: none;
text-align: left;
outline: none;
font-size: 18px;
transition: background-color 0.3s;
}
.accordion:hover {
background-color: #145214;
}
.panel {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease-out;
background-color: #111;
}
.panel a {
display: block;
color: #ccc;
padding: 8px 16px;
text-decoration: none;
}
.panel a:hover {
background-color: #222;
color: #00ff7f;
}
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.