Bloque BLOG Tarjeta
Implementación del bloque BLOG Tarjeta
Nombre: BLOG-TARJETA
Estructura: Blog sin LP
Apariencia:

Datos a llenar en el HTML:
- Tag: poner etiqueta del blog que queremos que se muestre
CSS:
Escritorio
.ModuloWrap_blog{
.blogcontentnews {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.blogitem {
display: flex;
text-align: left;
align-items: flex-start;
width: calc(50% - 40px);
min-width: calc(50% - 40px);
float: none;
margin: 40px 20px;
position: relative;
pointer-events: none;
background: #fff;
box-shadow: 0 3px 13px rgb(0 0 0 / 15%);
flex-wrap: wrap;
a{
text-decoration: none;
width: 100%;
}
.blogphoto {
height: 300px;
overflow: hidden;
width: 100%;
}
.blogtitle{
display: none;
}
.blogtitle2 {
display: block;
color: #000;
font-size: 20px;
letter-spacing: 1px;
font-weight: bold;
}
.blogsubtitle {
float: left;
width: 100%;
color: #888;
margin-top: 2px;
margin-bottom: 10px;
font-style: italic;
}
.novedad {
float: left;
width: 100%;
margin: 10px 0px;
}
.blogcontent {
float: left;
width: 100%;
margin-top: 0px;
height: auto;
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: inherit;
-webkit-box-orient: vertical;
font-size: 16px;
line-height: 1.4em;
}
.blogcontainer {
float: left;
width: calc(100% - 40px);
padding: 20px;
height: 100%;
}
.blogbutton {
display: none;
}
.blogcategory{
display: none;
}
}
}