JSFiddle - React, Tailwind, and code Playground
by Mawel Don
HTML
<div class="container">
<div id="topDest" class="destRight">
<h2>DESTINATIONS PREFEREES</h2>
<ul>
<li><a href="/voyage/asie/chine/">Circuit Chine</a></li>
<li><a href="/voyage/asie/birmanie/">Circuit Birmanie</a></li>
<li><a href="/voyage/europe/corse/">Circuit Corse</a></li>
<li><a href="/voyage/europe/italie/">Circuit Italie</a></li>
<li><a href="/voyage/oceanie/australie/">Circuit Australie</a></li>
<li><a href="/voyage/ameriques/etats-unis/miami/">Circuit Floride</a></li>
<li><a href="/voyage/ameriques/argentine/">Circuit Argentine</a></li>
<li><a href="/voyage/ameriques/bresil/">Circuit Brésil</a></li>
<li><a href="/voyage/asie/cambodge/">Circuit Cambodge</a></li>
<li><a href="/voyage/europe/norvège/">Circuit Norvège</a></li>
<li><a href="/voyage/europe/espagne/seville/">Circuit Andalousie</a></li>
</ul>
<a href="/dernieres-minutes.html">DERNIERES MINUTES</a>
</div>
</div>
CSS
/* Reset CSS*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
.container{
width:30%;
}
#topDest{
display:table;
width: 100%;
border:3px #39a9dc solid;
}
#topDest *{
text-decoration:none;
font-family: 'Helvetica Neue'
}
#topDest ul{
margin:5px 0px;
}
#topDest > a{
color: #ffffff;
display: block;
line-height: 30px;
margin: 0 -3px -3px;
padding: 0 3px;
text-align: center;
width: 100%;
background: #ff9c00;
background: -moz-linear-gradient(-45deg, #ff9c00 0%, #ef7f09 35%);
background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#ff9c00), color-stop(35%,#ef7f09));
background: -webkit-linear-gradient(-45deg, #ff9c00 0%,#ef7f09 35%);
background: -o-linear-gradient(-45deg, #ff9c00 0%,#ef7f09 35%);
background: -ms-linear-gradient(-45deg, #ff9c00 0%,#ef7f09 35%);
background: linear-gradient(135deg, #ff9c00 0%,#ef7f09 35%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff9c00',...