.view {
   //width: 300px;
   //height: 200px;
   float: left;
   border: 5px solid #fff;
   overflow: hidden;
   position: relative;
   text-align: center;
   box-shadow: 0px 0px 5px #aaa;
   cursor: default;
}

.view .mask , .view .content {
   //width: 300px;
   //height: 200px;
   position: absolute;
   overflow: hidden;
   top: 0;
   left: 0;
}
.panel-effect .mask {
   //opacity: 0;
   overflow:visible;
   //border:10px solid rgba(0,0,0,0.7);
   background-color:rgba(0,0,0,0.7);
   box-sizing:border-box;
   transition: all 0.4s ease-in-out;
  display:none;
}

.panel-effect a.info{
   position:relative;
   top:20%; /* Center the link */
   //top:-10px; /* Center the link */
   //opacity: 0;
   transition: opacity 0.5s 0s ease-in-out;
}

.panel-effect:hover .mask {
   opacity: 1;
   //border:10px solid rgba(0,0,0,0.7);
   width: 100%;
   height: 100%;
   background-color:rgba(0,0,0,0.7);
   display:block;
}

.panel-effect:hover a.info{
   opacity:1;
   transition-delay: 0.3s;
   left:37%;
}