JSFiddle - React, Tailwind, and code Playground
by Intesar Haider
CSS
body{
background:#EEEEEE;
padding: 50px;
}
figure.effect-bubba {
background: #8339AD;
}
figure {
position: relative;
float: left;
overflow: hidden;
margin: 10px 1%;
background: #3085a3;
text-align: center;
cursor: pointer;
-webkit-box-shadow: 0 16px 48px #E2E8ED;
-moz-box-shadow: 0 16px 48px #E2E8ED;
box-shadow: 0 16px 48px #E2E8ED;
}
figure.effect-bubba:hover img {
opacity: 0.4;
}
figure.effect-bubba img {
opacity: 0.7;
-webkit-transition: opacity 0.35s;
transition: opacity 0.35s;
}
.grid figure img {
position: relative;
display: block;
min-height: 100%;
max-width: 100%;
opacity: 0.8;
}
.grid figure figcaption, .grid figure figcaption > a {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.grid figure figcaption {
padding: 2em;
color: #fff;
text-transform: uppercase;
font-size: 1.25em;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
figure.effect-bubba:hover figcaption::before, figure.effect-bubba:hover figcaption::after {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1);
}
figure.effect-bubba figcaption::before {
border-top: 1px solid #fff;
border-bottom: 1px solid #fff;
-webkit-transform: scale(0,1);
transform: scale(0,1);
}
figure.effect-bubba figcaption::before, figure.effect-bubba figcaption::after {
position: absolute;
top: 30px;
right: 30px;
...