JSFiddle - React, Tailwind, and code Playground
by gcarames
HTML
<!DOCTYPE html>
<html lang="en">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<head>
<style>
a.aside-link,
a.aside-outline-tag,
a.aside-solid-tag {
font-size: 14px;
line-height: 14px;
text-transform: uppercase
}
.brand-wrapper {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
margin: 5px 0 15px;
border-bottom: 1px solid #ddd;
padding-bottom: 15px
}
.flex-wrapper {
display: flex;
justify-content: space-around
}
.img-flex {
height: auto
}
.img-flex.programa {
max-width: 130px;
}
.img-flex.marca {
max-width: 145px;
max-height: 80px;
}
.flex-wrapper .ul-aside {
display: none;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
padding: 10px 0;
list-style: none;
width: 100%
}
.flex-wrapper .ul-aside li {
font-family: Arial, Helvetica, sans-serif;
font-weight: 600;
display: flow-root;
margin: 5px 3px
}
a.aside-link {
color: #000 !important;
text-decoration: none;
padding: 0 8px
}
a.aside-link:focus,
a.aside-link:hover {
text-decoration: underline
}
a.aside-outline-tag,
a.aside-solid-tag {
text-decoration: none;
padding: 6px 8px 3px;
vertical-align: middle;
display: flow-root
}
a.aside-outline-tag {
color: #8c8c8c !important;
border: 1px solid #8c8c8c;
border-radius: 12px
}
a.aside-outline-tag:focus,
a.aside-outline-tag:hover {
color: #000 !important;
border: 1px solid #000
}
a.aside-solid-tag {
color: #000 !important;
...