File size: 870 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
.searchResults{
position: relative;
}
.searchResults ul {
list-style-type: none;
margin: 29px 1px;
padding: 0;
position: absolute;
max-width: 445px;
box-sizing: border-box;
border-color: rgba(0, 0, 0, .15);
border-radius: 2px;
box-shadow: 0 4px 6px 2px rgba(0, 0, 0, .10);
background-color: white;
display:list-item;
left:-445px;
}
.searchResults ul li{
height:50px;
min-width: 445px;
list-style: none;
}
.searchResults ul li:hover{
background-color: #e9ebee;
}
.search-div{
display:flex;
max-width: 445px;
position: relative;
}
.name-search{
font-weight: 600;
padding:0 40px 40px 40px;
color:#1d2129;
}
.right-greeting{
flex: 0 0 auto;
justify-content: flex-end;
}
.search-div img{
height: 28px;
width: 28px;
position:absolute;
margin-top: 15px;
border-radius: 100%;
}
.nobut{
width:0px;
height:0px;
}
|