autocomplete-trie/style.css

42 lines
561 B
CSS
Raw Normal View History

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