I've been inspired by the CSS styles on the website, specifically the tiles that showcase the picture, title, author, link to the author's page, and link to the article for each post.
Below is the HTML structure for a single tile:
<div class="block-module">
<a href="http://flink.to/stories/54b6e61de3039db33f00000b" class="article-link">
<span class="button">View Story</span>
</a>
<img src="https://cdn01.flink.to/api/image/54f492ec30323921c9000000/300/300/fill">
<div class="block-about">
<h2 class="block-title">Arch Enemy’s Perpetual Revolution</h2>
<span class="block-stats">
by <a href="http://flink.to/Andrew.Epstein" class="author-link">Andrew Epstein</a>
</span>
</div>
</div>
And here is the corresponding CSS style for the tile:
.block-module { width: 283px; height: 283px; font-size: 0.9622em; display: block; cursor:pointer; border-radius:0.3125em; overflow:hidden; z-index:4; position:relative; }
.block-about { position:absolute; bottom:0; left:0; right:0; padding:4em 1em 1em 1em; background-image:-webkit-linear-gradient(transparent, rgba(0,0,0,0.55), rgba(0,0,0,0.8)); background-image:linear-gradient(transparent, rgba(0,0,0,0.55), rgba(0,0,0,0.8)); }
.block-about a { position:relative; z-index:5; }
.block-title { max-width:100%; margin:0 0 0; color: white !important;font-size:1.625em; }
.block-stats { width:100%; margin-top:0.35714em; font-size:0.875em; color:rgba(255,255,255,0.55) !important; }
.button { color:#ffffff; background-color:#337d94; }
.author-link { color:#659dae; }
Everything seems to be working fine except for the hover effect on the image to reveal the article access and the "view story" link in the center. Here is a demo of the issue: http://jsfiddle.net/5qwejk20/
The CSS sheet on Flink.to's website is quite complex, so I'm having trouble figuring out how to fix this. Any help would be greatly appreciated!