JSFiddle - React, Tailwind, and code Playground
by Alexander
HTML
<div class="wine-flower pairing-details">
<table>
<tr>
<td>
<div class="go-tex-logo">
<a href="/ExperienceGOTEXAN/TexasWine.aspx">
<img src="//www.gotexan.org/Portals/1/images/wine/wine%20website/Wine%20Flower%20Pairings/GOTEXAN-logo.jpg" alt="GO TEXAN (logo)" width="136" height="65" title="Return to GO TEXAN Wine homepage" />
</a>
</div>
<div class="wine-flower-pairings-logo">
<a href="/ExperienceGOTEXAN/TexasWine/WineFlowers.aspx">
<img src="//www.gotexan.org/Portals/1/images/wine/wine%20website/Wine%20Flower%20Pairings/flower-logo.jpg" alt="Flower & Wine Pairings" width="136" height="46" border="0" title="Return to the Flower & Wine Pairings homepage" />
</a>
</div>
</td>
<td>
<div class="prev-next">
<< prev
|
<a href="#">next >></a>
</div>
</td>
</tr>
<tr>
<td>
<div class="navigation">
<h2 class="nav-header">Selections</h2>
<ul class="nav-items">
<li>
<a href="/ExperienceGOTEXAN/TexasWine/WineFlowers/Merlot.aspx" title="Amaryllis - Merlot">
Amaryllis/<br/>Merlot
</a>
</li>
<li>
<a href="/ExperienceGOTEXAN/TexasWine/WineFlowers/Malbec.aspx" title="Azaleas - Malbec">
Azaleas/<br/>Malbec
</a>
</li>
<li>
<a href="/ExperienceGOTEXAN/TexasWine/WineFlowers/Tempranillo.aspx" title="Cactus - Tempranillo">
...
CSS
@import '//www.gotexan.org/Portals/1/images/wine/wine%20website/Wine%20Flower%20Pairings/WineFlowerParingStyles.css';
.wine-flower.pairing-details {
text-align: center;
background-color: #efecd6;
color: #6c131f;
font-size: 16px;
font-family: Georgia, "Times New Roman", Times, serif;
font-variant: small-caps;
}
.wine-flower.pairing-details table {
border-spacing: 0;
border-collapse: separate;
border: 0;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
width: 792px;
height: 695px;
background-image: url('http://www.gotexan.org/Portals/1/images/wine/wine%20website/Wine%20Flower%20Pairings/interior-bg.jpg');
}
.wine-flower.pairing-details td { vertical-align: top; }
.wine-flower.pairing-details tr:first-of-type td {
padding-top: 26px;
height: 115px;
}
.wine-flower.pairing-details tr td:first-of-type {
width: 166px;
padding-left: 53px;
text-align: left;
vertical-align: top;
}
.wine-flower.pairing-details .go-tex-logo {
width: 136px;
height: 65px;
}
.wine-flower.pairing-details .wine-flower-pairings-logo {
width: 136px;
height: 46px;
}
.wine-flower.pairing-details .prev-next {
display: none;
margin-bottom: -16px;
color: #c7bfb5;
font-weight: bold;
z-index: 10;
position: relative;
font-size: 14px;
}
.wine-flower.pairing-details .prev-next a:link,
.wine-flower.pairing-details .prev-next a:visited { color: #000000; }
.wine-flower.pairing-details .prev-next a:hover,
.wine-flower.pairing-details .prev-next a:active { color: #6c131f; }
.wine-flower.pairing-details tr td:last-of-type { padding-right: 53px; }
.wine-flower.pairing-details tr:first-of-type td:last-of-type {
text-align: right;
vertical-align: bottom;
}
.wine-flower.pairing-details .navigation { padding-right: 20px; }
.wine-flower.pairing-details .navigation h2.nav-header {
text-transform: uppercase;
font-size: 14px;
margin:...