You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

60 lines
913 B

body {
background-color: rgba(0, 0, 0, 0.0);
padding: 0;
margin: 0;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
input[type=text] {
display: block;
font-size: 16px;
text-align: left;
padding: 8px;
width: 100%;
}
#wrapper {
width: 80%;
margin: auto;
padding: 0px;
}
#search-wrapper {
position: relative;
padding-right: 16px;
display: inline-block;
font-size: 12px;
width: 100%;
}
#addrlist {
margin: 0;
position: absolute;
z-index: 99;
top: 100%;
left: 0;
width: 100%;
background-color: white;
}
#addrlist li {
margin-left: 0px;
}
#addrlist li:nth-child(odd) {
background-color: #ddd;
}
#addrlist li:nth-child(even) {
background-color: lightblue;
}
#addrlist li:hover,
#addrlist li.fake-hover {
background-color: #FFF337;
}
input {
border-radius: 10px;
}
input[type=submit] {
border: none;
}
form {
width: 100%;
}