.table_center {
display: table-cell;
vertical-align: middle;
position: absolute;
right: 0px;
margin-top: -20px;
}
.drop-down {
display: inline-block;
position: relative;
}
.drop-down__button {
background: linear-gradient(to right, #6b53f4, #8FADFE);
display: inline-block;
line-height: 40px;
padding: 0 18px;
text-align: left;
border-radius: 30px;
box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.2);
cursor: pointer;
width: 200px;
}
.drop-down__name {
display: flex;
justify-content: space-between;
align-items: center;
font-size: 14px;
text-transform: normal;
color: #fff;
font-weight: normal;
font-family: 'Inter';
text-transform: uppercase;
}
.drop-down__icon {
width: 18px;
vertical-align: middle;
argin-left:m 14px;
height: 18px;
border-radius: 50%;
transition: all 0.4s;
-webkit-transition: all 0.4s;
-moz-transition: all 0.4s;
-ms-transition: all 0.4s;
-o-transition: all 0.4s;
}
.drop-down__menu-box {
position: absolute;
width: 100%;
left: 0;
background-color: #fff;
border-radius: 20px;
box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.2);
transition: all 0.3s;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-ms-transition: all 0.3s;
-o-transition: all 0.3s;
visibility: hidden;
opacity: 0;
margin-top: 5px;
}
.drop-down__menu {
margin: 0;
padding: 10px 20px;
list-style: none;
}
.drop-down__menu-box:before {
content: '';
background-color: transparent;
border-right: 8px solid transparent;
position: absolute;
border-left: 8px solid transparent;
border-bottom: 8px solid #fff;
border-top: 8px solid transparent;
top: -15px;
right: 18px;
}
.drop-down__menu-box:after {
content: '';
background-color: transparent;
}
.drop-down__item {
display: flex;
justify-content: space-between;
align-items: center;
font-size: 14px;
padding: 8px 0;
text-align: left;
font-weight: 500;
color: #909dc2;
cursor: pointer;
position: relative;
border-bottom: 1px solid #e0e2e9;
font-weight: normal;
font-family: 'Inter';
text-transform: uppercase;
}
.drop-down__item-icon {
width: 15px;
height: 15px;
position: absolute;
right: 0px;
fill: #8995b6;
}
.drop-down__item:hover .drop-down__item-icon {
fill: #6b53f4;
}
rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
class="table_center">
class="drop-down">
id="dropDown" class="drop-down__button">
class="drop-down__name">Menu class="fa-solid fa-bars">
class="drop-down__menu-box">
class="drop-down__menu">
data-name="sobre" class="drop-down__item">Sobre
data-name="cases" class="drop-down__item">Cases
data-name="contato" class="drop-down__item">Contato
data-name="conhecimento" class="drop-down__item">Base de conhecimento
jQuery(document).ready(function () {
jQuery('#dropDown').click(function () {
jQuery('.drop-down').toggleClass('drop-down--active');
});
});