show hide div pure css checkbox

by Emmanuel Garcia

HTML

<label for="reveal-email" class="btn" style="width: 300px">Ver más detalles</label>
<input type="checkbox" id="reveal-email" role="button"><article id="email">
   
       
       dddddd
</article>

CSS

input[type=checkbox]{
    display: none;
}
input[type=checkbox]:checked ~ .remove-check{
    display: none;
}
input[type=checkbox]:checked ~ #email{
    display: block;
}
#email{
    display: none;
}


.btn{
    width: 100%;
    background: #2ba6cb;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    line-height: 1;
    margin: 0;
    padding: 10px 20px 11px;
    position: relative;
    text-align: center;
    text-decoration: none;
    -webkit-transition: background-color 0.15s ease-in-out;
    -moz-transition: background-color 0.15s ease-in-out;
    -o-transition: background-color 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out;
}
.btn:hover{
    background: #006582;
}