autocomplete-trie/style.css
Mahdi Dibaiee 10fd1038fc 1 - 2
2015-07-26 14:07:07 +04:30

42 lines
561 B
CSS

html {
font-family: monospace;
background: rgb(236, 236, 236);
color: rgb(33, 33, 33);
}
input {
display: block;
margin: 30px auto 0;
width: 60%;
height: 30px;
padding: 5px 20px;
border: 1px solid rgb(139, 173, 255);
border-radius: 4px;
}
div {
display: block;
box-sizing: border-box;
width: 60%;
height: auto;
background: white;
border: 1px solid rgb(139, 173, 255);
border-top: 0;
margin: 0 auto;
padding: 20px 30px;
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
list-style: none;
}