<div>
<article class="card">
<header class="card__thumb">
<a href="#"><img src="https://images.unsplash.com/photo-1501443762994-82bd5dace89a?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1350&q=80"/></a>
</header>
<date class="card__date">
<span class="card__date__day">11</span>
<br/>
<span class="card__date__month">Jan</span>
</date>
<div class="card__body">
<div class="card__category"><a href="#">pet</a></div>
<h2 class="card__title"><a href="#">an ice cream sundae party!</a></h2>
<div class="card__subtitle">an ice cream sundae party!</div>
<p class="card__description">5. Pour the mixture into a non-stick container and then freeze overnight. Take treating your dog a step further by turning it into an ice cream sundae party!</p>
</div>
<footer class="card__footer">
<span class="icon ion-clock"></span> 10 mins ago
<span class="icon ion-chatbox"></span><a href="#"> 145 comments</a>
</footer>
</article>
</div>
/**
* VARIABLES
**/
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,700);
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: "Open Sans";
font-size: 16px;
background-color: #eee;
}
/**
* CARD
**/
.card {
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0);
transform: translateX(-50%) translateY(-50%) translateZ(0);
width: 370px;
background-color: #fff;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
overflow: hidden;
-webkit-transition: box-shadow 0.5s;
transition: box-shadow 0.5s;
}
.card a {
color: inherit;
text-decoration: none;
}
.card:hover {
box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
}
/**
* DATE
**/
.card__date {
position: absolute;
top: 20px;
right: 20px;
width: 45px;
height: 45px;
padding-top: 10px;
background-color: coral;
border-radius: 50%;
color: #fff;
text-align: center;
font-weight: 700;
line-height: 13px;
}
.card__date__day {
font-size: 14px;
}
.card__date__month {
text-transform: uppercase;
font-size: 10px;
}
/**
* THUMB
**/
.card__thumb {
height: 245px;
overflow: hidden;
background-color: #000;
-webkit-transition: height 0.5s;
transition: height 0.5s;
}
.card__thumb img {
width: 100%;
display: block;
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1);
-webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
transition: opacity 0.5s, -webkit-transform 0.5s;
transition: opacity 0.5s, transform 0.5s;
transition: opacity 0.5s, transform 0.5s, -webkit-transform 0.5s;
}
.card:hover .card__thumb {
height: 130px;
}
.card:hover .card__thumb img {
opacity: 0.6;
-webkit-transform: scale(1.2);
transform: scale(1.2);
}
/**
* card_BODY
**/
.card__body {
position: relative;
height: 185px;
padding: 20px;
-webkit-transition: height 0.5s;
transition: height 0.5s;
}
.card:hover .card__body {
height: 300px;
}
.card__category {
position: absolute;
top: -25px;
left: 0;
height: 25px;
padding: 0 15px;
background-color: coral;
color: #fff;
text-transform: uppercase;
font-size: 11px;
line-height: 25px;
}
.card__title {
margin: 0;
padding: 0 0 10px 0;
color: #000;
font-size: 22px;
font-weight: bold;
text-transform: uppercase;
}
.card__subtitle {
margin: 0;
padding: 0 0 10px 0;
font-size: 19px;
color: coral;
}
.card__description {
position: absolute;
left: 20px;
right: 20px;
bottom: 56px;
margin: 0;
padding: 0;
color: #666C74;
line-height: 27px;
opacity: 0;
-webkit-transform: translateY(45px);
transform: translateY(45px);
-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
transition: opacity 0.3s, -webkit-transform 0.3s;
transition: opacity 0.3s, transform 0.3s;
transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
-webkit-transition-delay: 0s;
transition-delay: 0s;
}
.card:hover .card__description {
opacity: 1;
-webkit-transform: translateY(0px);
transform: translateY(0px);
-webkit-transition-delay: 0.2s;
transition-delay: 0.2s;
}
.card__footer {
position: absolute;
bottom: 12px;
left: 20px;
right: 20px;
font-size: 11px;
color: #A3A9A2;
}
.icon {
display: inline-block;
vertical-align: middle;
margin: -2px 0 0 2px;
font-size: 18px;
}
.icon+.icon {
padding-left: 10px;
}
This Pen doesn't use any external JavaScript resources.