@import url(https://fonts.googleapis.com/css?family=Alegreya+Sans:400,700,800,400italic,500,300); @import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css); *{ margin:0; padding:0; } .card{ background: #fff; display: block; margin:50px auto; width:320px; cursor: pointer; border-right: 2px solid #A0B0BA; border-bottom: 2px solid #264C67; border-radius:5px; &:hover{ img{ transform:scale(1.1); opacity: 0.5; } .content-holder{ padding-left: 25px; } .img-holder .overlay{ opacity:1; } } .img-holder{ overflow: hidden; background: #000; position: relative; img{ width:100%; display:block; transition: transform 0.3s ease, opacity 0.3s ease; } .overlay{ position: absolute; top:0; right:0; bottom:0; left:0; opacity:0; display: flex; justify-content: center; align-items: center; transition: opacity 0.3s ease-in-out; i{ font-size: 3em; color:#fff; } } } .content-holder{ padding:20px; transition: padding 0.3s ease; .category{ font-family: 'Alegreya Sans', sans-serif; text-transform: uppercase; font-weight: 700; color:#2A516A; margin-bottom: 10px; } .separator{ width:100%; height: 2px; background: #DCE2EE; margin-bottom: 10px; .separator-sub{ width:15%; height: 100%; background: #214662; display: block } } h1{ font-family: 'Alegreya Sans', sans-serif; font-size: 1.1em; font-weight: 600; color: #1D1D1D; } h2{ color: grey; font-family: 'Alegreya Sans', sans-serif; font-size: 0.9em; margin-bottom: 5px; } .author{ font-family: 'Alegreya Sans', sans-serif; color: #1D1D1D; font-weight: 600; font-style: italic; span{ color: grey; font-weight: 400; } } } }