body{
font-size:14px;
font-family: "Open Sans", "Ebrima";
margin: 100px 10px;
}
.accordion {
background: #FF8C00;
padding: 5px;
width: 400px;
margin: 0px auto;
border-radius: 10px;
box-shadow: 0 0px 1px 1px #8a8a8a;
}
.accordion .sub {
padding: 10px;
background: #fff;
margin:5px;
}
.accordion ul {
list-style:square;
}
.accordion li a {
text-decoration: none;
color:red;
font-weight: normal;
}
.accordion li a:hover {
text-decoration: none;
color:red;
font-weight: normal;
}
.accordion h1 {
margin:0px ;
font-size:17px;
}
.accordion h1 a {
display: block;
font-weight: italic;
color: #DC143C;
text-decoration: none;
font-size: 17px;
margin:0px ;
}
.accordion h1 a:hover {
text-decoration: none;
}
.accordion h1 + div {
height: 0;
overflow: hidden;
-webkit-transition: height 0.5s ease-in;
}
.accordion :target h1 a {
text-decoration: none;
font-weight: bold;
}
.accordion :target h1 + div {
height: 25%;
}