Hi,
What are you trying to do exactly?
The styles are dynamically generated for some of it, such as overlay colors:
Overlay:
figure.animated-overlay figcaption {
background: -webkit-gradient(linear,left top,left bottom,color-stop(25%,rgba(126,206,213,0.60)),to(rgba(126,206,213,1.0)));
background: -webkit-linear-gradient(top,rgba(126,206,213,0.60) 25%,rgba(126,206,213,1.0) 100%);
background: linear-gradient(to bottom,rgba(126,206,213,0.60) 25%,rgba(126,206,213,1.0) 100%);
}
Title:
figcaption .thumb-info h4 {
margin-top: 0;
margin-bottom: 5px;
transform: translate(0,20px);
}
Portfolio Tag:
figcaption .thumb-info h5 {
margin-bottom: 0;
margin-top: 4px;
transform: translate(0,30px);
}
Thanks.