<link href="https://fonts.googleapis.com/css?family=Inconsolata" rel="stylesheet">
<div class="box-wrap">
<div class="box">
<p>box</p>
</div>
<div class="box">
<p>box</p>
</div>
<div class="box">
<p>box</p>
</div>
</div>
body{
background:#f1f1f1;
font-family: 'Inconsolata', monospace;
font-weight:bold;
color:gray;
text-align:center;
font-smoothing: antialiased;
}
.box-wrap{
display:flex;
align-items:center;
justify-content:center;
margin:10%;
}
.box{
padding:30px;
margin:2%;
background:white;
width:30%;
border:1px solid #d6d6d6;
box-shadow:0 2px 3px 0px rgba(0,0,0,0.25);
border-radius:3px;
transition:.2s all;
}
.box-wrap:hover .box{
filter:blur(3px);
opacity:.5;
transform: scale(.98);
box-shadow:none;
}
.box-wrap:hover .box:hover{
transform:scale(1);
filter:blur(0px);
opacity:1;
box-shadow:0 8px 20px 0px rgba(0,0,0,0.125);
}
This Pen doesn't use any external CSS resources.