Abrir menú principal

Cambios

1223 bytes añadidos ,  14:14 11 ene 2021
sin resumen de edición
right: 0;
}
}
 
/*Actualidad*/
 
.contenedorImg{
width: 100%;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.contenedorImg figure{
position:relative;
height: 250px;
cursor: pointer;
width: 350px;
overflow: hidden;
border-radius: 6px;
box-shadow: 0px 15px 25px rgba(0,0,0,0.50);
}
.contenedorImg figure img{
width: 100%;
height: 100%;
transition: all 500ms ease-out;
}
.contenedorImg figure .capa{
position: absolute;
top: 0;
width: 100%;
height: 100%;
background: rgba(0,103,123,0.7);
transition: all 500ms ease-out;
opacity: 0;
visibility: hidden;
text-align: center;
}
.contenedorImg figure:hover > .capa {
opacity: 1;
visibility: visible;
}
.contenedorImg figure:hover > .capa h3{
margin-top: 70px;
margin-bottom: 15px;
}
.contenedorImg figure:hover > img{
transform: scale(1.3);
}
.contenedorImg figure .capa h3{
color: #fff;
font-weight: 400;
margin-bottom: 120px;
transition: all 500ms ease-out;
margin-top: 30px;
}
.contenedorImg figure .capa p{
color: #fff;
font-size: 15px;
line-height: 1.5;
width: 100%;
max-width: 220px;
margin: auto;
}