/* To change this license header, choose License Headers in Project Properties. To change this template file, choose Tools | Templates and open the template in the editor. */ /* Created on : 10/06/2020, 06:35:41 PM Author : Ale */ /***** DROPDOWN *****/ .dropdown > button{ border: 1px solid #DBDCDD; color: #DBDCDD; font-size: 14px; } .dropdown > button:hover, .dropdown > button:focus{ border: 1px solid #001D68; color: #001D68; } .dropdown > button { padding: 10px 34px 10px 20px; text-align: left; position: relative; } .dropdown > input:after { position: absolute; top: 13px; right: 13px; font-family: 'ingfont'; font-size: 12px; content: '\e90b'; } .dropdown.show > input:after { -webkit-transform: rotate(-180deg); -o-transform:rotate(-180deg); transform: rotate(-180deg); } .dropdown > .dropdown-menu > .dropdown-item{ color: #001D68; } .dropdown > .dropdown-menu > .dropdown-item:hover{ color: #FFFFFF; } /***** BUSCADOR *****/ .input-buscar{ position: absolute; top: 15px; right: 12px; color: #DBDCDD; z-index: 10; } /***** ICONOS *****/ .iconBorder{ border: 15px solid; } .bigIcon{ font-size: 2rem; } .bigIcon:hover{ opacity: 0.75; } /***** NAVS *****/ .nav-item{ border: 0; } .nav-tabs .nav-link{ border-top-left-radius: 15px; border-top-right-radius: 15px; font-size: 16px; } .nav-tabs .nav-item > a{ padding: 15px; } /***** DATALIST *****/ .datalist ul { position: absolute; margin: 0; padding: 0; width: 100%; max-height: 200px; top: 100%; left: 0; list-style: none; border-radius: 2px; background: #FFFFFF; border: 1px solid #dbdcdd; overflow: hidden; overflow-y: auto; z-index: 100; } .datalist ul li { display: flex; align-items: center; justify-content: start; padding: 0.8em 1em 0.8em 1em; color: #969696; cursor: pointer; } .datalist ul li:hover{ background: #D21034; color: #FFFFFF; }